* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}

main#container {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.red-header {
  background-color: #a70c0c; /* Vermelho - você pode ajustar a cor conforme necessário */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: auto;
}

header h1 {
	font-weight: 400;
  color: #fff;
  margin: 0;
  flex-grow: 1;
  text-align: center;
  font-size: 2rem;
}

header img {
	width: 23px;
}

marquee {
	background-color: #810505;
	color: white;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 4px 0;
	font-weight: 400;
	font-size: 11px;
}

.principal {
	max-width: 1200px;
	margin: 0 auto;
	padding: 5px 12px 15px;
	text-align: center;
}

.principal h1 {
	font-size: 30px;
	text-align: left;
}

.txt_info_noticia {
	text-align: left;
	color: #54595F;
	font-size: 12px;
	padding-top: 10px;
}

.txt_info_noticia b {
	color: black;
	font-size: 13px;
	font-weight: 700;
}

.img_adv {
	width: 80%;
	max-width: 500px;
}

.video_vturb {
	padding-top: 15px;
	margin: 0 auto;
	max-width: 800px;
}

.cta {
	font-family: 'Roboto', sans-serif;
	width: 95%;
	margin: 15px auto 0;
    font-weight: 700;
    background-image: linear-gradient(180deg,#01b319 0,#04960d 100%);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
    text-decoration: none;
    color: white;
    font-size: 27px;
    line-height: 1.1em;
    border-radius: 7px;
    border: none;
    padding: 10px 5px;
    animation: 1s ease-in-out infinite alternate pulsar;
    cursor: pointer;
}

@keyframes pulsar {
	0% {
	    transform: scale(1);
	}
	100% {
	    transform: scale(1.1);
	}
}

.desconto {
	padding-top: 15px;
	font-size: 17px;
    line-height: 1.3em;
    color: #1d1d1d;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

footer {
	background-color: #A70C0C;
	padding: 15px 0 0;
}

footer a {
	color: white;
	text-decoration: none;
	padding: 25px;
	font-weight: 500;
}

footer h3 {
	background-color: black;
	color: white;
	font-size: 17px;
	padding: 10px 25px;
}

.img_adv {
	margin-top: 20px;
}

@media (max-width: 996px) {
	.img_adv {
		width: 100%;
	}
	.principal h1 {
		font-size: 23px;
	}
	header h1 {
		font-size: 1.7rem !important;
	}
}