* {
	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 1px; 
}

.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: 150px;
    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;
	}
}

.produtos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.produto-card {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .produtos-container {
    flex-direction: row;
  }

  .produto-card {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }

  /* Ordem no DESKTOP */
  .produto-3 { order: 1; }
  .produto-6 { order: 2; }
  .produto-1 { order: 3; }
}

@media (max-width: 767.98px) {
  .produtos-container {
    flex-direction: column;
  }

  /* Ordem no MOBILE */
  .produto-6 { order: 1; }
  .produto-3 { order: 2; }
  .produto-1 { order: 3; }
}

/* Botão base */
.responsive-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #ffd700, #ff8c00);
  border-radius: 30px;
  padding: 5px 12px;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: black;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  gap: 10px;
  white-space: nowrap;         /* 👈 impede quebra de linha */
}

.responsive-button:hover {
  color: black;                /* 👈 mantém a cor no hover */
  text-decoration: none;      /* 👈 remove sublinhado no hover */
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  border-radius: 50%;
  width: 30px;
  height: 26px;
}

.cart-icon {
  width: 19px;
  height: 19px;
  display: block;
}

.button-text {
  line-height: 1;
  display: inline-block;
  white-space: nowrap;        /* 👈 impede quebra de linha no texto */
}

/* Estilo para celular */
@media (max-width: 768px) {
  .responsive-button {
    padding: 8px 10px;
    font-size: 34px;
    gap: 12px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .cart-icon {
    width: 35px;
    height: 28px;
  }
}

