body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #FFF8E7;
  color: #222;
  overflow-x: hidden; /* Impede rolagem horizontal */
    
}

/* Botão padrão unificado */
.botao-padrao {
  display: inline-block;
  background-color: #e8194f;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.botao-padrao:hover {
  background-color: #d01042;
  transform: scale(1.05);
}

/* Banner Oferta */
.topo-oferta {
  background-color: #e8194f;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
}

.oferta-texto {
  font-size: 1rem;
}

.oferta-timer {
  text-align: right;
}

.contador {
  font-size: 1.6rem;
  color: #ffc107;
}

.contador-labels {
  font-size: 0.7rem;
  color: #ffc107;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* Menu Superior */
.menu-principal {
  background-color: #e4f1e1;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #b37500;
}

.menu-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.menu-links a {
  padding: 6px 14px;
  border: 2px solid #d4a500;
  border-radius: 6px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: 0.3s ease;
}

.menu-links a:hover {
  background-color: #d4a500;
  color: white;
}
section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 1100px;
  box-sizing: border-box;
}
.sobre-container,
.beneficios-grid,
.produtos-vendidos-grid {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.espacada {
  margin-top: 60px;
  margin-bottom: 60px;
}


/* Continue os demais estilos do seu CSS original aqui... */

  
  .produtos {
    background-color: #DFF6F0;
    padding: 40px 20px;
    text-align: center;
  }
  
  .produtos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .produto {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    max-width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .produto img {
    width: 100%;
    border-radius: 8px;
  }
  
  .produto button {
    background: #FADADD;
    color: #5A3E4D;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .sobre {
    background-color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
  }
  
  .depoimentos {
    background-color: #FFF8E7;
    padding: 40px 20px;
    text-align: center;
  }
  
  .depoimentos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .depoimentos blockquote {
    max-width: 300px;
    font-style: italic;
    text-align: left;
  }
  .top-banner {
    background-color: #e8194f;
    color: white;
    padding: 20px 10px;
  }
  
  .top-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .timer-box {
    text-align: left;
  }
  
  .brand-name h1 {
    font-size: 2rem;
    color: #FFF;
    margin: 0;
    text-align: right;
  }
  
  .countdown {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffebee;
  }
  
  .countdown-labels {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    font-weight: bold;
    margin-top: -10px;
  }
  .mais-vendidos {
    background-color: #FFF8E7;
    padding: 40px 20px;
    text-align: center;
  }
  
  .mais-vendidos h2 {
    color: #D97E9B;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .mais-vendidos .subtitulo {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .mais-vendidos .destaque {
    color: #e8194f;
    font-weight: bold;
  }
  
  .produtos-vendidos-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center;
  }
  
  .produto-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .produto-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .produto-card h3,
  .produto-card .preco-novo,
  .produto-card .preco-parcelado,
  .produto-card .descricao-produto,
  .produto-card ul li {
    font-weight: bold;
  }
  
  
  .produto-card .preco-novo {
    font-size: 1.2rem;
    color: #2e7d32;
    font-weight: bold;
    margin: 5px 0;
  }
  
  .produto-card .preco-parcelado {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  
  .produto-card .descricao-produto {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
  }
  
  .produto-card .detalhes-produto {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .produto-card .detalhes-produto li {
    margin: 4px 0;
  }
  
  
  .produto-card button {
    background-color: #e8194f;
    color: white;
    border: none;
    padding: 10px 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
  }
  .receba-curso {
    background-color: #dff6f0;
    padding: 50px 20px;
    text-align: center;
  }
  
  .receba-curso h2 {
    font-size: 2rem;
    color: #4c2b2b;
    margin-bottom: 30px;
  }
  
  .beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
  }
  
  .beneficio {
    background-color: #fefefe;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .beneficio img {
    width: 50px;
    margin-bottom: 15px;
    filter: invert(20%) sepia(10%) saturate(500%) hue-rotate(330deg);
  }
  
  .beneficio p {
    font-size: 0.95rem;
    color: #4c2b2b;
    margin: 0;
  }
  
  .receba-curso .nota {
    font-size: 0.9rem;
    margin-top: 30px;
    color: #555;
  }
  .secao-economia {
    background-color: #e4f1e1;
    text-align: center;
    padding: 60px 20px;
  }
  
  .secao-economia h2 {
    font-size: 1.8rem;
    color: #d4a500;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .secao-economia p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 30px;
  }
  
  .secao-economia .destaque {
    color: #cc9b00;
    font-weight: bold;
  }
  
  .secao-economia .preco-destaque {
    color: #e8194f;
    font-weight: bold;
  }
  
  .botao-economizar {
    display: inline-block;
    background-color: #e8194f;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
  }
  
  .botao-economizar:hover {
    background-color: #d01042;
    transform: scale(1.05);
  }
  .secao-sobre {
    background-color: #e4f1e1;
    padding: 60px 20px;
  }
  
  .sobre-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    gap: 30px;
  }
  
  .sobre-imagem {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .sobre-imagem img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .sobre-texto {
    flex: 2;
    min-width: 280px;
  }
  
  .sobre-texto h2 {
    color: #d4a500;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .sobre-texto p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .sobre-texto .sobre-lista {
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
    color: #2a2a2a;
    font-size: 0.95rem;
  }
  
  .sobre-texto .sobre-lista li {
    margin: 6px 0;
  }
  
  .botao-dois-cartoes {
    display: inline-block;
    margin-top: 20px;
    background-color: #e8194f;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
  }
  
  .botao-dois-cartoes:hover {
    background-color: #d01042;
    transform: scale(1.05);
  }
  .secao-garantia {
    background-color: #fcf7f0;
    padding: 60px 20px;
  }
  
  .garantia-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
  }
  
  .garantia-selo {
    flex: 1;
    text-align: center;
    min-width: 220px;
  }
  
  .garantia-selo img {
    width: 120px;
  }
  
  .garantia-texto {
    flex: 2;
    min-width: 280px;
  }
  
  .garantia-texto h2 {
    font-size: 1.8rem;
    color: #d4a500;
    margin-bottom: 20px;
  }
  
  .garantia-texto h2 span {
    font-weight: bold;
  }
  
  .garantia-texto p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
  }
  .secao-faq {
    background-color: #e4f1e1;
    padding: 60px 20px;
    text-align: center;
  }
  
  .secao-faq h2 {
    font-size: 1.8rem;
    color: #d4a500;
    margin-bottom: 30px;
  }
  
  .faq-item {
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: left;
    font-size: 1rem;
    color: #333;
  }
  
  .faq-icon {
    font-weight: bold;
    margin-right: 8px;
    color: red;
  }
  
  .faq-icon.green {
    color: green;
  }
  
  .botao-instagram {
    margin-top: 30px;
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: 0.3s ease;
  }
  
  .botao-instagram:hover {
    background-color: #e85500;
    transform: scale(1.05);
  }
  
  .rodape {
    background-color: #fcf7f0;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
  }
/* BANNER DE OFERTA */
.topo-oferta {
    background-color: #e8194f;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .oferta-texto {
    font-size: 1rem;
  }
  
  .oferta-timer {
    text-align: right;
  }
  
  .contador {
    font-size: 1.6rem;
    color: #ffc107;
  }
  
  .contador-labels {
    font-size: 0.7rem;
    color: #ffc107;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }
  
  /* MENU SUPERIOR */
  .menu-principal {
    background-color: #e4f1e1;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #b37500;
  }
  
  .menu-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .menu-links a {
    padding: 6px 14px;
    border: 2px solid #d4a500;
    border-radius: 6px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .menu-links a:hover {
    background-color: #d4a500;
    color: white;
  }

/* === Atualizações para .secao-economia === */
.secao-economia {
  background-color: #FADADD;
  text-align: center;
  padding: 60px 20px;
}

.secao-economia h2 {
  font-size: 1.8rem;
  color: #d94a84;
  font-weight: bold;
  margin-bottom: 15px;
}

.secao-economia p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}

.secao-economia .destaque {
  display: inline;
  background: none;
  padding: 0;
  position: static;
  color: #b03060;
  font-weight: bold;
  vertical-align: baseline;
}

.secao-economia .preco-destaque {
  color: #c2185b;
  font-weight: bold;
}

.botao-economizar {
  display: inline-block;
  background-color: #e8194f;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.botao-economizar:hover {
  background-color: #d01042;
  transform: scale(1.05);
}


/* === Atualizações para .secao-sobre === */
.secao-sobre {
  background-color: #FFF8E7;
  padding: 60px 20px;
}

.sobre-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  gap: 30px;
}

.sobre-imagem {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.sobre-imagem img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sobre-texto {
  flex: 2;
  min-width: 280px;
}

.sobre-texto h2 {
  color: #d4a500;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.sobre-texto .sobre-lista {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
  color: #2a2a2a;
  font-size: 0.95rem;
}

.sobre-texto .sobre-lista li {
  margin: 6px 0;
}

.botao-dois-cartoes {
  display: inline-block;
  margin-top: 20px;
  background-color: #e8194f;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.botao-dois-cartoes:hover {
  background-color: #d01042;
  transform: scale(1.05);
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .secao-economia h2,
  .sobre-texto h2 {
    font-size: 1.5rem;
  }

  .botao-economizar,
  .botao-dois-cartoes {
    width: 100%;
    max-width: 300px;
  }
}
.aulas-dicas { background-color: #e4f1e1; /* verde claro suave */ padding: 60px 20px; text-align: center; }

.aulas-dicas h2 { font-size: 1.8rem; color: #4b7745; /* verde escuro */ margin-bottom: 20px; }

.aulas-dicas .sobre-lista { list-style: none; padding-left: 0; font-size: 1rem; color: #333; margin: 20px auto; max-width: 700px; text-align: left; }

.aulas-dicas .sobre-lista li { margin: 10px 0; }

.aulas-dicas .botao-dois-cartoes { display: inline-block; margin-top: 20px; background-color: #e8194f; color: white; font-weight: bold; text-decoration: none; padding: 12px 30px; border-radius: 6px; box-shadow: 0 4px 6px rgba(0,0,0,0.15); transition: all 0.3s ease; }

.aulas-dicas .botao-dois-cartoes:hover { background-color: #d01042; transform: scale(1.05); }

.selo-animado { animation: piscarSelo 2.5s infinite; }

@keyframes piscarSelo { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.secao-faq { background-color: #e4f1e1; padding: 60px 20px; text-align: center; }

.secao-faq h2 { font-size: 1.8rem; color: #d4a500; margin-bottom: 40px; }

.faq-item { max-width: 800px; margin: 0 auto 30px auto; font-size: 1rem; color: #333; text-align: left; line-height: 1.6; }

.faq-item p { margin: 6px 0; display: flex; align-items: flex-start; gap: 8px; }

.faq-icon { font-weight: bold; color: red; font-size: 1.2rem; }

.faq-icon.green { color: green; }

@media (max-width: 768px) { .faq-item { padding: 0 10px; font-size: 0.95rem; }

.secao-faq h2 { font-size: 1.5rem; } }
.botao-instagram { background-color: #ff6600; color: white; padding: 10px 20px; border-radius: 6px; text-decoration: none; font-weight: bold; box-shadow: 0 2px 6px rgba(0,0,0,0.15); transition: 0.3s ease; }

.botao-instagram:hover { background-color: #e85500; transform: scale(1.05); }

.rodape { background-color: #fcf7f0; text-align: center; padding: 30px 20px; font-size: 0.9rem; color: #666; }

.destaque {
  background-color: #FFF8E7;
  padding: 40px 20px;
}

.destaque-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.destaque-texto {
  flex: 1;
  min-width: 280px;
}

.destaque-texto h1 {
  font-size: 1.8rem;
  color: #d94a84;
  margin-bottom: 10px;
}

.destaque-texto p {
  font-size: 1rem;
  color: #333;
}

.destaque-imagem {
  flex: 1;
  max-width: 350px;
  text-align: center;
}

.destaque-imagem img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
}
.mais-vendidos {
  background-color: #fff1f7; /* tom rosa claro */
  padding: 60px 20px;
  text-align: center;
}

.mais-vendidos {
  background-color: #fff1f7; /* rosa suave */
  padding: 60px 20px;
  text-align: center;
}

.mais-vendidos h2 {
  color: #4caf50; /* verde bonito */
  font-size: 2rem;
  margin-bottom: 10px;
  background: none; /* remove qualquer cor residual */
  display: block;
}

.mais-vendidos .subtitulo {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: none;
}

.mais-vendidos .destaque {
  color: #e8194f;
  font-weight: bold;
  background: none;
}
.preco-parcelado {
  font-size: 1.1rem;
  margin: 8px 0;
}

.valor-parcela {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2e7d32;
}

.preco-a-vista {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

.descricao-produto {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
}

.detalhes-produto {
  font-size: 0.9rem;
  text-align: left;
  margin-bottom: 15px;
  padding-left: 0;
  list-style: none;
}

.detalhes-produto li {
  margin: 4px 0;
}
.produto-card img {
  width: 100%;
  height: 300px; /* Altura fixa */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.beneficio img {
  width: 50px;
  margin-bottom: 15px;
  filter: invert(20%) sepia(10%) saturate(500%) hue-rotate(330deg); /* deixa ele mais suave */
}
.botao-instagram {
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.botao-instagram:hover {
  background-color: #e85500;
  transform: scale(1.05);
}

.destaque {
  background-color: #FFF8E7;
  padding: 60px 20px;
}

.destaque-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.destaque-texto {
  flex: 1;
  min-width: 280px;
}

.destaque-texto h1 {
  font-size: 1.8rem;
  color: #d94a84;
  margin-bottom: 10px;
}

.destaque-imagem {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  text-align: center;
}

.destaque-imagem img {
  width: 100%;
  height: auto;
  max-width: 320px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .destaque-container {
    flex-direction: column;
  }

  .destaque-texto,
  .destaque-imagem {
    width: 100%;
    text-align: center;
  }

  .destaque-texto h1 {
    font-size: 1.5rem;
  }

  .destaque-texto p {
    font-size: 1rem;
  }
}
.dicas-detalhadas {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a2a2a;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 20px;
}

.aulas-dicas h2 {
  font-size: 2rem;
  color: #4b7745;
  margin-bottom: 20px;
  text-align: center;
}
.destaque {
  position: relative;
  background-color: #FFF8E7;
}

.destaque-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.destaque-texto {
  flex: 1;
  z-index: 2;
  max-width: 600px;
  position: relative;
}

.destaque-imagem {
  flex: 1;
  text-align: right;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .destaque {
    background-image: url('img/hr.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 40px 20px;
  }

  .destaque-imagem.desktop-only {
    display: none;
  }

  .destaque-texto {
    background-color: transparent;
    color: #222;
    text-shadow: 0 0 4px #fff;
    padding: 20px;
    z-index: 2;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .destaque-texto h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .destaque-texto p {
    font-size: 1.05rem;
    font-weight: 600;
  }
}
/* NOVO estilo para a seção destaque */
/* Seção principal */
.destaque {
  position: relative;
  background: url('img/Hernan1.png') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 20px;
  gap: 20px;
}

/* Primeira Caixa */
.caixa-principal {
  background-color: #d0e9d0;
  padding: 20px;
  border-radius: 15px;
  max-width: 480px;
  width: 80%;
  text-align: center;
  margin-left: 0;
  margin-right: auto; /* Jogar para a esquerda */
}

/* Título */
.caixa-principal h1 {
  color: #8b0000;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}

/* Segunda Caixa */
.caixa-secundaria {
  background-color: #4caf50;
  padding: 15px;
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  margin-left: auto; /* Jogar para a direita */
  margin-right: 0;
}

/* Texto da segunda caixa */
.caixa-secundaria p {
  color: rgb(14, 12, 12);
  font-size: 20px;
  line-height: 1.4;
}

/* Responsividade para celular */
@media (max-width: 480px) {
  .destaque {
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 20px;
    gap: 10px;
    overflow-x: hidden; /* Também na seção destaque */
  }

  .caixa-principal, .caixa-secundaria {
    position: static;
    max-width: 90%;
  }

  .caixa-principal {
    margin-left: 0;
    margin-right: auto; /* Alinha para a esquerda */
    text-align: center;
  }

  .caixa-secundaria {
    margin-left: auto; /* Alinha para a direita */
    margin-right: 0;
    text-align: center;
  }

  .caixa-principal h1 {
    font-size: 20px;
  }

  .caixa-secundaria p {
    font-size: 16px;
  }
}

