/* CSS Original Restaurado e Ajustado */

/**** Configurações Globais e Reset Básico ****/
body, h1, h2, h3, p, ul, li, a, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

body {
    line-height: 1.6;
    background-color: #FFF8F0; /* Tom de fundo principal da página */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #5D4037; /* Marrom escuro para títulos */
    margin-bottom: 25px;
    line-height: 1.3;
}

h1 {
    font-size: 2.8em;
    text-align: center;
}

h2 {
    font-size: 2.4em;
    text-align: center;
    margin-bottom: 35px;
    color: #8D6E63; /* Marrom médio para subtítulos de seção */
}

.titulo-secao-linha1 {
    display: block;
    margin-bottom: 5px;
}

.titulo-secao-linha2 {
    display: block;
    font-size: 0.8em;
    color: #A1887F;
    font-weight: normal;
}

#apresentando-solucao h2 .titulo-secao-linha2.destaque-cardapio {
    font-weight: bold;
    font-style: italic;
    color: #880E4F;
    font-size: 0.9em;
    border-bottom: 2px solid #FFB74D;
    padding-bottom: 3px;
    display: inline-block;
}

.texto-explicativo-guia {
    text-align: center;
    margin: 25px auto 35px auto;
    max-width: 700px;
    font-size: 1.1em;
    color: #4E342E;
    line-height: 1.65;
}

.texto-explicativo-guia p {
    margin-bottom: 15px;
}

.texto-explicativo-guia strong {
    color: #880E4F;
    font-weight: 700;
}

h3 {
    font-size: 1.8em;
    color: #A1887F;
}

p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #4E342E;
}

a {
    text-decoration: none;
    color: #880E4F;
}

.cta-button {
    display: inline-block;
    background-color: #880E4F; /* Cor Vinho Principal */
    color: #FFFFFF; /* Texto branco por padrão */
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 1em;
    line-height: 1.4;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #AD1457;
    transform: translateY(-4px);
}

/* Primeiro CTA da Hero Section com texto amarelo */
#promessa-principal .cta-button.hero-cta {
    background-color: #880E4F;
    color: #FFEB3B; /* Amarelo para o texto do primeiro CTA */
    font-size: 1em; /* Ajustado para mobile */
    padding: 12px 20px; /* Ajustado para mobile */
    width: auto;
    max-width: 90%;
    display: inline-block; /* Garantir que seja inline-block */
    margin-top: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.3;
}

#promessa-principal .cta-button.hero-cta .emoji-dedo {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Texto adicional abaixo do primeiro CTA */
.texto-adicional {
    font-size: 0.9em;
    color: #F0F0F0; /* Cor clara para contraste com fundo escuro */
    margin-top: 10px; /* Espaçamento acima do texto */
    font-style: italic;
    text-align: center; /* Centralizado abaixo do botão */
    display: block; /* Garantir que seja visível */
}

/* CTA Final com fundo amarelo e texto escuro */
#cta-final .cta-button.cta-grande {
    background-color: #FFEB3B; /* Fundo amarelo para o botão grande final */
    color: #4A0E2E; /* Texto escuro para contraste */
    font-size: 1.4em;
    padding: 22px 45px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

ul {
    list-style-position: inside;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/**** Seção 1: Promessa Principal (Hero Section) - Layout Restaurado e Ajustado para Mobile ****/
#promessa-principal {
    background-color: #4A0E2E; /* Vinho bem escuro */
    color: #FFFFFF;
    padding: 40px 0; /* Reduzido padding para mobile */
    text-align: center;
    position: relative;
    overflow: hidden; /* Evitar barras de rolagem desnecessárias */
}

#promessa-principal .container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 20px; /* Reduzido gap para mobile */
}

#promessa-principal .texto-promessa {
    flex: 1;
    max-width: 100%;
    text-align: center;
    order: 2; /* Texto depois da imagem no mobile, como estava */
    padding: 0 15px;
    display: flex; /* Adicionado para permitir que os filhos se alinhem */
    flex-direction: column; /* Alinhar filhos verticalmente */
    align-items: center; /* Centralizar filhos horizontalmente */
}

.titulo-hero-principal {
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    font-size: 2.2em; /* Ajustado para mobile */
}

.titulo-hero-linha1 {
    display: block;
    font-size: 0.7em; /* Ajustado para mobile */
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}

.titulo-hero-linha2 {
    display: block;
    font-size: 0.5em; /* Ajustado para mobile */
    color: #FFF5E1;
    font-weight: 400;
    line-height: 1.3;
}

.emoji-fogo {
    font-size: 0.8em;
    margin-right: 4px;
    vertical-align: baseline;
}

.subtitulo-hero {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em; /* Ajustado para mobile */
    color: #F0F0F0;
    margin-bottom: 18px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 95%; /* Ajustado para mobile */
    margin-left: auto;
    margin-right: auto;
}

.prova-social-hero,
.autoridade-hero {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em; /* Ajustado para mobile */
    color: #EAEAEA;
    margin-bottom: 15px;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    text-align: left;
    max-width: 95%; /* Ajustado para mobile */
    margin-left: auto;
    margin-right: auto;
}

.prova-social-hero .emoji-livro,
.autoridade-hero .emoji-alvo {
    font-size: 1em;
    margin-right: 8px;
    color: #FFD700;
    line-height: 1.45;
    padding-top: 1px;
}

.dor-solucao-container {
    margin: 18px auto;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    max-width: 95%; /* Ajustado para mobile */
}

.dor-solucao-hero {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em; /* Ajustado para mobile */
    color: #F5F5F5;
    margin-bottom: 8px !important;
    line-height: 1.4;
    display: flex;
    align-items: center;
    text-align: left;
}

.hero-image-container {
    flex: 1;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    order: 1; /* Imagem antes do texto no mobile, como estava */
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 280px; /* Ajustado para mobile */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    margin: 0;
}

/* Ajustes para Desktop na Hero Section */
@media (min-width: 768px) {
    #promessa-principal {
        padding: 50px 0;
    }
    #promessa-principal .container {
        flex-direction: row; /* Desktop: texto à esquerda, imagem à direita */
        align-items: center;
        text-align: left;
        gap: 40px;
    }

    #promessa-principal .texto-promessa {
        order: 1; /* Texto primeiro no desktop */
        text-align: left;
        padding: 0;
        align-items: flex-start; /* Alinhar filhos à esquerda no desktop */
    }

    .titulo-hero-principal {
        font-size: 2.6em;
        text-align: left;
    }
    .titulo-hero-linha1 {
        font-size: 0.6em;
    }
    .titulo-hero-linha2 {
        font-size: 0.45em;
    }

    .subtitulo-hero {
        font-size: 1.15em;
        max-width: 580px;
    }
    
    .prova-social-hero,
    .autoridade-hero {
        font-size: 1.05em;
        max-width: 560px;
    }

    .dor-solucao-hero {
        font-size: 1.05em;
    }
    .dor-solucao-container {
        max-width: 530px;
    }

    .subtitulo-hero,
    .prova-social-hero,
    .autoridade-hero,
    .dor-solucao-container {
        margin-left: 0;
        margin-right: 0;
    }
    
    .prova-social-hero,
    .autoridade-hero,
    .dor-solucao-hero {
         max-width: 100%;
    }

    #promessa-principal .cta-button.hero-cta {
        margin-left: 0;
        font-size: 1.15em;
        padding: 18px 35px;
    }

    .hero-image-container {
        order: 2; /* Imagem depois do texto no desktop */
        flex-basis: 45%;
        max-width: 45%;
    }

    .hero-image {
        max-height: 420px;
    }
}

@media (min-width: 1024px) {
    .titulo-hero-principal {
        font-size: 3em;
    }
    .subtitulo-hero {
        font-size: 1.2em;
    }
     #promessa-principal .texto-promessa {
        padding-right: 30px;
    }
    .hero-image {
        max-height: 450px;
    }
}

/**** Seção 2: Conectando com a Dor ****/
#conectando-dor {
    background-color: #F8F5F1;
    padding: 40px 0;
    text-align: center;
}

#conectando-dor .container-dor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

#conectando-dor .texto-dor {
    flex: 1;
    text-align: center;
    order: 2;
}

#conectando-dor .imagem-dor-container {
    flex: 1;
    max-width: 320px;
    width: 100%;
    order: 1;
}

#conectando-dor .imagem-dor {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    margin: 0;
}

#conectando-dor h2 {
    color: #5D4037;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-align: center;
}

#conectando-dor .introducao-dor {
    font-size: 1em;
    color: #4E342E;
    margin-bottom: 20px;
    line-height: 1.7;
}

#conectando-dor .lista-dores {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#conectando-dor .lista-dores li {
    font-size: 1em;
    color: #795548;
    padding: 5px 0;
    border-bottom: 1px dashed #E0D8D4;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-align: left;
}

#conectando-dor .lista-dores li:last-child {
    border-bottom: none;
}

#conectando-dor .lista-dores li::before {
    content: "💔";
    color: #C62828;
    font-size: 1em;
    margin-right: 8px;
    line-height: 1;
}


/**** Seção 3: Apresentando a Solução ****/
#apresentando-solucao {
    background-color: #FFFFFF;
    padding: 40px 0;
}

.mockup-guia {
    max-width: 280px;
    margin-bottom: 25px;
    border: 5px solid #F5F5F5;
    border-radius: 10px;
    box-shadow: 0 7px 20px rgba(0,0,0,0.12);
}

.categorias-dates {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.categoria {
    background-color: #FADBE8;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    border-left: 4px solid #AD1457;
    border-top: none;
    border-right: none;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.categoria h3 {
    color: #880E4F;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.categoria p {
    margin-bottom: 10px;
    flex-grow: 1;
    font-size: 0.9em;
}

.frase-destacada {
    font-weight: bold;
    color: #880E4F;
    display: block;
    margin-top: 6px;
    font-size: 0.95em;
}

.imagem-categoria {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 7px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

#apresentando-solucao .cta-button {
    display: inline-block;
    width: auto;
    max-width: 90%;
    margin: 20px auto 0 auto;
    font-size: 0.85em;
    padding: 10px 18px;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: break-word;
}


/**** Seção 4: Transformação Detalhada ****/
#transformacao-detalhada {
    background-image: url("./assets/transformacao_detalhada_imagem.jpg");
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

#transformacao-detalhada::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

#transformacao-detalhada .container {
    position: relative;
    z-index: 2;
}

#transformacao-detalhada h2 {
    color: #FFFFFF;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    font-size: 1.8em;
}

#transformacao-detalhada h2 .titulo-secao-linha1,
#transformacao-detalhada h2 .titulo-secao-linha2 {
    color: #FFFFFF;
    font-size: 1em;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

#transformacao-detalhada .texto-transformacao-container { 
    background-color: rgba(20, 5, 5, 0.8);
    padding: 20px;
    border-radius: 12px;
    max-width: 100%;
    margin: 20px auto 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

#transformacao-detalhada .titulo-lista-beneficios {
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 12px;
    display: block;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#transformacao-detalhada .texto-transformacao-container ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

#transformacao-detalhada .texto-transformacao-container ul li {
    color: #FFFFFF;
    font-size: 1em;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#transformacao-detalhada .texto-transformacao-container ul li::before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 1.2em;
    color: #FFD700;
}


/**** Seção 5: Autoridade e Prova Social ****/
#autoridade-prova-social {
    background-color: #FDF5E6;
    padding: 40px 0;
}

#autoridade-prova-social .container-autoridade {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

#autoridade-prova-social .foto-autores-container {
    flex-basis: auto;
    max-width: 280px;
    width: 75%;
}

#autoridade-prova-social .foto-autores {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 7px 22px rgba(0,0,0,0.18);
    object-fit: cover;
    aspect-ratio: 1 / 1.1;
}

#autoridade-prova-social .texto-autores {
    flex-basis: auto;
    text-align: center;
}

#autoridade-prova-social .texto-autores h2 {
    text-align: center;
    color: #5D4037;
    font-size: 1.8em;
    margin-bottom: 12px;
}

#autoridade-prova-social .texto-autores p {
    font-size: 1em;
    color: #4E342E;
    line-height: 1.65;
    text-align: center;
}

.depoimentos-container h3 {
    font-size: 1.7em;
    color: #8D6E63;
    margin-bottom: 25px;
}

.grid-depoimentos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.depoimento-card {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    text-align: left;
    border-top: 4px solid #AD1457;
}

.depoimento-card p.texto-depoimento {
    font-size: 0.95em;
    color: #555;
    line-height: 1.55;
}

.depoimento-card span.autor-depoimento {
    font-size: 0.9em;
}


/**** Seção 6: Detalhes da Oferta e Bônus - Restaurado ****/
#oferta-bonus {
    background-color: #4A0E2E; /* Fundo vinho/roxo escuro original */
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('./assets/bonus_background_nova.jpeg'); */
    /* Removida imagem de fundo para restaurar cor sólida */
    background-size: cover;
    background-position: center center;
    padding: 40px 0;
    color: #FFFFFF; /* Texto claro para contraste */
    text-align: center;
}

#oferta-bonus h2 {
    color: #FFFFFF;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

#oferta-bonus p, #oferta-bonus li {
    color: #F0F0F0; /* Cor clara para parágrafos e itens de lista */
}

.item-principal {
    background-color: rgba(255, 255, 255, 0.05); /* Leve transparência */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.super-bonus {
    background-color: rgba(255, 255, 255, 0.05); /* Leve transparência */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.super-bonus h3 {
    color: #FFD700; /* Amarelo para destaque */
    text-align: center;
    margin-bottom: 20px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bonus-item {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.bonus-item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.bonus-item p {
    font-size: 0.9em;
    color: #EAEAEA;
}

/**** Seção 7: CTA Final - Restaurado ****/
#cta-final {
    background-color: #4A0E2E; /* Fundo vinho/roxo escuro original */
    padding: 40px 0;
    text-align: center;
    color: #FFFFFF; /* Texto claro para contraste */
}

#cta-final .cta-button.cta-grande {
    background-color: #FFEB3B; /* Fundo amarelo para o botão grande final */
    color: #4A0E2E; /* Texto escuro para contraste */
    font-size: 1.4em;
    padding: 22px 45px;
}

.preco-principal-oferta {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.preco-antigo {
    text-decoration: line-through;
    color: #FFCDD2;
    font-size: 0.8em;
    margin-right: 5px;
}

.preco-novo {
    color: #FFEB3B;
    font-weight: bold;
    font-size: 1.2em;
}

.oferta-texto {
    font-size: 1em;
    margin-bottom: 20px;
    color: #F0F0F0;
}

.porque-preco, .parcelamento {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.porque-preco h3, .parcelamento h3 {
    color: #FFD700;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.porque-preco p, .parcelamento p {
    font-size: 0.95em;
    color: #EAEAEA;
}

.escassez-urgencia {
    font-weight: bold;
    color: #FFEB3B;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.aviso-preco {
    font-size: 0.9em;
    color: #FFCDD2;
    margin-bottom: 25px;
}


/**** Seção 8: Garantia ****/
#garantia {
    background-color: #F8F5F1;
    padding: 40px 0;
    text-align: center;
}

#garantia h2 {
    color: #5D4037;
    font-size: 1.8em;
}

#garantia p {
    font-size: 1em;
    color: #4E342E;
    max-width: 650px;
    margin: 0 auto 20px auto;
}

.selo-garantia {
    max-width: 120px;
    margin-bottom: 15px;
}


/**** Seção 9: FAQ - Ajustado ****/
#faq {
    background-color: #EDE7F6; /* Lilás claro de fundo */
    padding: 40px 0;
}

#faq h2 {
    color: #5D4037; /* Título da seção */
    margin-bottom: 30px;
    font-size: 2em;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 8px; /* Bordas arredondadas */
    background-color: #FFFFFF; /* Fundo branco para cada item */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* Sombra suave */
    overflow: hidden; /* Para o arredondamento funcionar com o botão */
}

.faq-pergunta {
    background-color: #FFFFFF; /* Fundo branco */
    color: #4A0E2E; /* Cor do texto da pergunta (vinho) */
    cursor: pointer;
    padding: 18px 25px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.05em;
    font-weight: 500; /* Peso da fonte */
    transition: background-color 0.3s ease;
    display: flex; /* Para alinhar texto e ícone */
    justify-content: space-between; /* Espaço entre texto e ícone */
    align-items: center;
}

.faq-pergunta:hover {
    background-color: #F9F9F9; /* Leve destaque ao passar o mouse */
}

.faq-pergunta::after {
    content: '\25BC'; /* Ícone de seta para baixo (Unicode) */
    font-size: 0.8em;
    color: #4A0E2E; /* Cor do ícone */
    transition: transform 0.3s ease;
}

.faq-item.active .faq-pergunta::after {
    transform: rotate(180deg); /* Gira a seta quando ativo */
}

.faq-resposta {
    padding: 0 25px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-resposta p {
    padding: 20px 0;
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-item.active .faq-resposta {
    max-height: 300px; /* Altura máxima para a resposta aparecer */
    padding-top: 0;
    padding-bottom: 10px;
}


/**** Footer ****/
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer p {
    color: #ccc;
    margin-bottom: 0;
}

/* Media Queries Adicionais para Refinamento */
@media (min-width: 600px) {
    .categorias-dates {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-depoimentos {
        grid-template-columns: repeat(2, 1fr);
    }
    #promessa-principal .cta-button.hero-cta {
        font-size: 1.1em; /* Leve aumento no mobile maior */
        padding: 15px 25px;
    }
}

@media (min-width: 768px) {
    /* Estilos de desktop já definidos acima, aqui apenas ajustes finos se necessário */
    #conectando-dor .container-dor {
        flex-direction: row;
        align-items: center;
        gap: 35px;
    }
    #conectando-dor .texto-dor {
        order: 1;
        text-align: left;
    }
    #conectando-dor .imagem-dor-container {
        order: 2;
        max-width: 350px;
    }
    #conectando-dor h2 {
        text-align: left;
        font-size: 2em;
    }
    #conectando-dor .introducao-dor {
        font-size: 1.05em;
    }
    #conectando-dor .lista-dores li {
        font-size: 1.05em;
    }

    #apresentando-solucao .cta-button {
        font-size: 1em;
        padding: 12px 22px;
    }

    #transformacao-detalhada h2 {
        font-size: 2.2em;
    }
    #transformacao-detalhada .texto-transformacao-container ul li {
        font-size: 1.05em;
    }

    #autoridade-prova-social .container-autoridade {
        flex-direction: row;
        align-items: flex-start;
        gap: 35px;
    }
    #autoridade-prova-social .foto-autores-container {
        flex-basis: 35%;
        max-width: 320px;
    }
    #autoridade-prova-social .texto-autores {
        flex-basis: 65%;
        text-align: left;
    }
    #autoridade-prova-social .texto-autores h2 {
        text-align: left;
        font-size: 2em;
    }
    #autoridade-prova-social .texto-autores p {
        font-size: 1.05em;
        text-align: left;
    }

    .depoimentos-container h3 {
        font-size: 1.9em;
    }

    #oferta-bonus h2 {
        font-size: 2.2em;
    }
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #garantia h2 {
        font-size: 2em;
    }
    #garantia p {
        font-size: 1.05em;
    }

    #faq h2 {
        font-size: 2.2em;
    }
    .faq-pergunta {
        font-size: 1.1em;
    }
    .faq-resposta p {
        font-size: 1em;
    }
}

@media (min-width: 992px) {
    .categorias-dates {
        grid-template-columns: repeat(4, 1fr);
    }
    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

