/* ==========================================================================
   1. DEFINIÇÕES GLOBAIS E TEMA PADRÃO (MODO CLARO)
   ========================================================================== */
:root {
    --azul-zapy: #1A73E8;
    --laranja-zapy: #FF6D00;
    --cor-fundo: #F0F2F5;
    --cor-fundo-footer: #e4e9f0;
    --cor-texto-principal: #212529;
    --cor-texto-secundario: #495057;
    --sombra-clara: #ffffff;
    --sombra-escura: #d2d8de;
    --borda-geral: #e0e5ea;
}

/* ==========================================================================
   2. TEMA MODO ESCURO (SOBRESREVE AS VARIÁVEIS)
   ========================================================================== */
body.dark-mode {
    --cor-fundo: #2a2f35;
    --cor-fundo-footer: #202327;
    --cor-texto-principal: #e4e6eb;
    --cor-texto-secundario: #b0b3b8;
    --sombra-clara: #343a40;
    --sombra-escura: #202327;
    --borda-geral: #343a40;
}

/* ==========================================================================
   3. ESTILOS DE BASE (HTML, BODY)
   ========================================================================== */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--cor-fundo); color: var(--cor-texto-principal); margin: 0; padding: 0; line-height: 1.6; transition: background-color 0.3s, color 0.3s; }
.container { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; text-align: center; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 4rem; }
section:not(.hero-section) { border-top: 1px solid var(--borda-geral); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   4. CABEÇALHO E NAVEGAÇÃO (ESTRUTURA ROBUSTA)
   ========================================================================== */
.site-header {
    background-color: var(--cor-fundo);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--borda-geral);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-nav {
    display: none; /* Escondido em mobile por padrão */
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex; /* Visível em desktop */
    }
    .mobile-nav-toggle {
        display: none; /* Esconde o botão hamburguer em desktop */
    }
}

.main-nav.is-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75px; /* Altura do header */
    left: 0;
    width: 100%;
    background-color: var(--cor-fundo);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    align-items: center;
    z-index: 99;
}

/* Estilos Neumórficos para os links do menu */
.main-nav a {
    text-decoration: none;
    color: var(--cor-texto-secundario);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 4px 4px 8px var(--sombra-escura), 
                -4px -4px 8px var(--sombra-clara);
}

.main-nav a:hover {
    color: var(--azul-zapy);
    box-shadow: 2px 2px 5px var(--sombra-escura), 
                -2px -2px 5px var(--sombra-clara);
}

.main-nav a:active {
    color: var(--azul-zapy);
    box-shadow: inset 4px 4px 8px var(--sombra-escura), 
                inset -4px -4px 8px var(--sombra-clara);
}

.theme-toggle-button {
    background-color: var(--cor-fundo);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 6px var(--sombra-escura), -3px -3px 6px var(--sombra-clara);
    transition: all 0.2s ease;
}

.mobile-nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cor-texto-principal);
}
/* ==========================================================================
   5. SEÇÕES (PÁGINA PRINCIPAL)
   ========================================================================== */
.hero-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; animation: fadeInUp .8s ease-out; border-top: none; }
.hero-section .container { padding-top: 2rem; padding-bottom: 2rem; }
.hero-section h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; background: linear-gradient(45deg, #00459e, var(--azul-zapy)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
body.dark-mode .hero-section h1 { background: linear-gradient(45deg, #8ab4f8, #4285f4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-section p.subtitle { font-size: clamp(1.1rem, 2.5vw, 1.3rem); color: var(--cor-texto-secundario); max-width: 750px; margin: 0 auto 3rem auto; }
.hero-section p.subtitle strong { color: var(--cor-texto-principal); font-weight: 700; }
.cta-button { display: inline-block; background-color: var(--laranja-zapy); color: white; padding: 1.2rem 3rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.2rem; transition: all .2s ease-in-out; border: none; cursor: pointer; box-shadow: 6px 6px 12px var(--sombra-escura), -6px -6px 12px var(--sombra-clara); }
.cta-button:hover { transform: translateY(-4px) scale(1.02); box-shadow: 9px 9px 18px var(--sombra-escura), -9px -9px 18px var(--sombra-clara); }
.cta-button:active { transform: translateY(1px); box-shadow: inset 4px 4px 8px #d95a00, inset -4px -4px 8px #ff8000; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.service-card { text-decoration: none; color: inherit; display: block; background-color: var(--cor-fundo); padding: 2.5rem 2rem; border-radius: 20px; text-align: left; transition: all .3s ease-in-out; box-shadow: 8px 8px 16px var(--sombra-escura), -8px -8px 16px var(--sombra-clara); }
.service-card:hover { transform: translateY(-5px); box-shadow: 10px 10px 20px var(--sombra-escura), -10px -10px 20px var(--sombra-clara); }
.service-card h3 { font-size: 1.4rem; color: var(--azul-zapy); margin-bottom: 1rem; }
.service-card p { color: var(--cor-texto-secundario); font-size: 1rem; }
.service-card.is-hidden { display: none; }
.toggle-services-button { background: none; border: 2px solid var(--sombra-escura); color: var(--cor-texto-secundario); padding: .8rem 2rem; border-radius: 50px; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 1rem; cursor: pointer; transition: all .2s ease; }
.toggle-services-button:hover { background-color: var(--sombra-escura); color: var(--cor-texto-principal); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; text-align: left; }
.feature-card { display: flex; align-items: flex-start; gap: 1.5rem; }
.feature-icon { flex-shrink: 0; background-color: var(--cor-fundo); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: inset 5px 5px 10px var(--sombra-escura), inset -5px -5px 10px var(--sombra-clara); }
.feature-icon svg { width: 28px; height: 28px; color: var(--azul-zapy); }
.feature-card h3 { margin-top: 0; margin-bottom: .5rem; font-size: 1.3rem; }
.feature-card p { margin: 0; color: var(--cor-texto-secundario); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.testimonial-card { background-color: var(--cor-fundo); border-radius: 20px; padding: 3rem; box-shadow: 8px 8px 16px var(--sombra-escura), -8px -8px 16px var(--sombra-clara); text-align: left; position: relative; }
.testimonial-card-icon { position: absolute; top: -10px; left: 20px; font-size: 5rem; font-weight: 800; color: var(--azul-zapy); opacity: .1; line-height: 1; }
.testimonial-card blockquote { margin: 0; font-size: 1.1rem; font-style: italic; position: relative; z-index: 1; }
.testimonial-card cite { display: block; margin-top: 1.5rem; font-style: normal; font-weight: 700; color: var(--cor-texto-principal); }
.testimonial-card cite span { display: block; font-weight: 400; font-size: .9rem; color: var(--cor-texto-secundario); }
.cta-section p { max-width: 600px; margin: 0 auto 3rem auto; font-size: 1.1rem; color: var(--cor-texto-secundario); }
.cta-form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.cta-form input, .lp-form input, .cta-form textarea { width: 100%; padding: 1rem; border: none; border-radius: 15px; font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--cor-texto-principal); background-color: var(--cor-fundo); box-shadow: inset 4px 4px 8px var(--sombra-escura), inset -4px -4px 8px var(--sombra-clara); box-sizing: border-box; }
.cta-form input:focus, .lp-form input:focus { outline: none; box-shadow: inset 6px 6px 10px var(--sombra-escura), inset -6px -6px 10px var(--sombra-clara); }
.cta-form button { width: 100%; }

/* ==========================================================================
   5.5 SEÇÃO DE AVISO (NOVAS REGRAS) - VERSÃO FINAL
   ========================================================================== */
.rules-section {
    background-color: var(--cor-fundo-footer);
}
.rules-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; /* << VOLTAMOS PARA O ALINHAMENTO CENTRAL */
    gap: 4rem; /* Aumentando o espaço */
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.rules-text {
    text-align: left;
    display: flex; /* << CHAVE DA SOLUÇÃO */
    flex-direction: column; /* << CHAVE DA SOLUÇÃO */
    justify-content: center; /* << CHAVE DA SOLUÇÃO */
    height: 100%; /* << CHAVE DA SOLUÇÃO */
}
.rules-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cor-texto-principal);
    margin-bottom: 1rem;
}
.rules-description {
    font-size: 1.2rem;
    color: var(--cor-texto-secundario);
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.rules-button {
    display: inline-block;
    background-color: #d93025;
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all .2s ease-in-out;
    border: none;
    cursor: pointer;
    box-shadow: 6px 6px 12px var(--sombra-escura), -6px -6px 12px var(--sombra-clara);
    align-self: flex-start; /* Alinha o botão à esquerda dentro do flex container */
}
.rules-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 9px 9px 18px var(--sombra-escura), -9px -9px 18px var(--sombra-clara);
}
.rules-button:active {
    transform: translateY(1px);
    box-shadow: inset 4px 4px 8px #b0261e, inset -4px -4px 8px #ff3a2c;
}
.rules-image {
    text-align: center;
}
.rules-image img {
    max-width: 480px;
    width: 100%;
    border-radius: 10px; /* Adicionando bordas arredondadas à imagem */
}

@media (max-width: 768px) {
    .rules-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .rules-text {
        order: 2;
        text-align: center;
        height: auto; /* Reseta a altura no mobile */
    }
    .rules-button {
        align-self: center; /* Centraliza o botão no mobile */
    }
    .rules-image {
        order: 1;
        margin-bottom: 2rem;
    }
    .rules-image img {
        max-width: 340px;
    }
}
/* ==========================================================================
   6. RODAPÉ E COOKIE BANNER (PÁGINA PRINCIPAL)
   ========================================================================== */
.site-footer { background-color: var(--cor-fundo-footer); border-top: 1px solid var(--sombra-escura); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: left; }
.footer-column h4 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--cor-texto-principal); }
.footer-column p, .footer-column a { color: var(--cor-texto-secundario); text-decoration: none; display: block; margin-bottom: .5rem; font-size: 0.95rem; }
.footer-column a:hover { color: var(--azul-zapy); }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { padding: .5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: var(--cor-fundo); box-shadow: 3px 3px 6px var(--sombra-escura), -3px -3px 6px var(--sombra-clara); transition: transform .2s ease; }
.footer-socials a:hover { transform: translateY(-2px); }
.footer-socials svg { width: 20px; height: 20px; color: var(--cor-texto-secundario); }
.footer-bottom { text-align: center; padding: 1.5rem 2rem; border-top: 1px solid var(--sombra-escura); font-size: .9rem; color: var(--cor-texto-secundario); }
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background-color: rgba(33, 37, 41, 0.95); color: white; padding: 1.5rem; box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2); display: flex; justify-content: center; align-items: center; gap: 1.5rem; transition: bottom .5s ease-in-out; z-index: 200; }
.cookie-banner.show { bottom: 0; }
.cookie-banner p { margin: 0; font-size: .9rem; }
.cookie-banner a { color: #8ab4f8; text-decoration: underline; }
.cookie-banner button { background-color: var(--laranja-zapy); color: white; border: none; padding: .8rem 1.5rem; border-radius: 50px; cursor: pointer; font-weight: 500; }

/* ==========================================================================
   7. ESTILOS ESPECÍFICOS PARA LANDING PAGES (LPs)
   ========================================================================== */
.lp-header { padding: 1.5rem 2rem; background-color: var(--cor-fundo); border-bottom: 1px solid var(--borda-geral); }
.lp-header-container { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.lp-logo { font-weight: 800; font-size: 1.8rem; color: var(--azul-zapy); text-decoration: none; }
.lp-footer { text-align: center; padding: 2rem; font-size: .9rem; color: var(--cor-texto-secundario); border-top: 1px solid var(--borda-geral); }
.lp-container { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.lp-section { margin-bottom: 5rem; text-align: center; }
.lp-section:last-child { margin-bottom: 0; }
.lp-hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; text-align: left; align-items: center; }
@media (min-width: 768px) { .lp-hero-grid { grid-template-columns: 1.2fr 1fr; } }
.lp-hero-text h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; }
.lp-hero-text p { font-size: 1.2rem; color: var(--cor-texto-secundario); }
.lp-form-card { background-color: var(--cor-fundo); padding: 2.5rem; border-radius: 20px; box-shadow: 8px 8px 16px var(--sombra-escura), -8px -8px 16px var(--sombra-clara); }
.lp-form-card h3 { margin-top: 0; margin-bottom: 1.5rem; text-align: center; }
.lp-form { display: flex; flex-direction: column; gap: 1rem; }
.lp-form button { font-size: 1.1rem; min-width: unset; width: 100%; background-color: var(--laranja-zapy); color: white; padding: 1.2rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all .2s ease-in-out; border: none; cursor: pointer; box-shadow: 6px 6px 12px var(--sombra-escura), -6px -6px 12px var(--sombra-clara); }
.lp-form button:hover { transform: translateY(-3px); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; text-align: left; }
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-icon { color: #34A853; font-size: 1.5rem; line-height: 1.2; }
.benefit-item h4 { margin: 0; font-size: 1.2rem; }
.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 2px solid var(--borda-geral); margin-bottom: 1rem; }
.faq-question { width: 100%; background: none; border: none; text-align: left; font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 500; padding: 1rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--cor-texto-principal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease-out; color: var(--cor-texto-secundario); }
.faq-answer p { margin-top: 0; padding-bottom: 1rem; }
.faq-toggle { font-size: 1.5rem; transition: transform .3s ease-out; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 200px; }
.final-cta-section { background-color: var(--azul-zapy); color: white; }
.final-cta-section .lp-container { padding-top: 5rem; padding-bottom: 5rem; display: flex; flex-direction: column; align-items: center; }
.final-cta-section h2 { text-align: center; margin-bottom: 1.5rem; }
.final-cta-section p { max-width: 600px; margin: 0 auto 3rem auto; text-align: center; opacity: .9; }
.final-cta-section .cta-button { box-shadow: none; }
.final-cta-section .cta-button:hover { transform: scale(1.05); background-color: #ff8000; }
/* ==========================================================================
   9. ESTILOS DO LOGO E IDENTIDADE
   ========================================================================== */
.site-logo, .lp-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Espaço entre o ícone e o texto */
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--azul-zapy);
    text-decoration: none;
}

.logo-svg {
    width: 38px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    color: var(--azul-zapy);
}
/* ==========================================================================
   10. ESTILOS DA PÁGINA PILAR
   ========================================================================== */
.pillar-hero-section {
    text-align: center;
    border-top: none;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.pillar-hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.pillar-hero-section p.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--cor-texto-secundario);
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.pillar-content-section .container {
    max-width: 900px;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pillar-content-section h2 {
    text-align: left;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    border-bottom: 3px solid var(--azul-zapy);
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.feature-box {
    background-color: var(--cor-fundo);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    box-shadow: 8px 8px 16px var(--sombra-escura), -8px -8px 16px var(--sombra-clara);
    border-left: 5px solid var(--laranja-zapy);
}
.feature-box h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--cor-texto-principal);
}
.feature-box p {
    color: var(--cor-texto-secundario);
    margin-bottom: 1.5rem;
}
.feature-box a {
    color: var(--azul-zapy);
    font-weight: 700;
    text-decoration: none;
}
.feature-box a:hover {
    text-decoration: underline;
}

#contato-pilar .container {
    padding-top: 4rem;
}
/* ==========================================================================
   11. ESTILOS ESPECÍFICOS PARA LP - CHAT IA
   ========================================================================== */
.lp-header {
    border-bottom: 1px solid var(--borda-geral);
}
.lp-header .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
}

.lp-section .lp-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .lp-hero-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.lp-hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--cor-texto-principal);
    text-align: left;
}

.lp-hero-text p {
    font-size: 1.2rem;
    color: var(--cor-texto-secundario);
    margin-bottom: 2rem;
    text-align: left;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefits-list li {
    font-size: 1.1rem;
    color: var(--cor-texto-principal);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    color: #34A853; /* Verde para sucesso */
    font-weight: bold;
    margin-right: 0.75rem;
    line-height: 1.5;
}

.lp-form-card {
    background-color: var(--cor-fundo);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 8px 8px 16px var(--sombra-escura), -8px -8px 16px var(--sombra-clara);
}

.lp-form-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.lp-form-card .form-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--cor-texto-secundario);
    margin-bottom: 2rem;
}

.faq-section .container {
    max-width: 800px;
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.faq-item {
    border-bottom: 1px solid var(--borda-geral);
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1.5rem 0;
    cursor: pointer;
    list-style: none; /* Remove o marcador padrão */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 2rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    margin-top: 0;
    color: var(--cor-texto-secundario);
}

.lp-footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: var(--cor-texto-secundario);
    background-color: var(--cor-fundo-footer);
}
/* ==========================================================================
   12. AJUSTE FINO - CENTRALIZAR LOGO NAS LPs
   ========================================================================== */
.lp-header-container {
    justify-content: center; /* Centraliza o conteúdo do header */
    position: relative; /* Necessário para posicionar o botão de tema */
}

.lp-header-container .theme-toggle-button {
    position: absolute; /* Tira o botão do fluxo normal */
    right: 2rem; /* Alinha o botão à direita */
}
/* ==========================================================================
   13. PÁGINA DE OBRIGADO
   ========================================================================== */
.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.thank-you-content .thank-you-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 3rem;
    background-color: #34A853;
    color: white;
    border-radius: 50%;
    margin-bottom: 2rem;
}
.thank-you-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--cor-texto-principal);
    margin-bottom: 1rem;
}
.thank-you-content p {
    font-size: 1.2rem;
    color: var(--cor-texto-secundario);
    max-width: 600px;
    margin: 0 auto 3rem auto;
<<<<<<< HEAD
}
/* ==========================================================================
   14. BOTÃO FLUTUANTE WHATSAPP
   ========================================================================== */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 35px; /* Ajuste o tamanho conforme necessário */
  height: 35px;
=======
>>>>>>> 8dc39e1f1ea4a132f1c33457321bb445951f5b78
}