/* =========================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================= */
:root {
    /* Cores Institucionais */
    --cor-azul-escuro: #003366;
    --cor-azul-primario: #1e40af;
    --cor-azul-claro: #e6f0ff;
    --cor-azul-tabela: #E3F2FD;
    
    /* Cores de Ação e Destaque */
    --cor-verde: #28a745;
    --cor-verde-hover: #218838;
    --cor-verde-satlerland: #4CAF50;
    --cor-vermelho: #D32F2F;
    --cor-vermelho-hover: #B71C1C;
    
    /* Cores Neutras */
    --cor-laranja-tradicional: #FF9800;
    --cor-texto: #333;
    --cor-branco: #ffffff;
    --cor-fundo-suave: #f8fafc;
    --cor-fundo-principal: #f3f4f6; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--cor-texto);
    line-height: 1.6;
    background-color: var(--cor-fundo-principal);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Utilitários de Fundo e Espaçamento */
.margin-top-20 { margin-top: 20px; }
.margin-top-30 { margin-top: 30px; }

/* CORREÇÃO AQUI: Garante a cor branca real! */
.bg-white { background-color: #ffffff !important; } 
.bg-suave { background-color: var(--cor-fundo-suave) !important; } 
.bg-azul-claro { background-color: var(--cor-azul-tabela) !important; }

.titulo-metodologia { color: var(--cor-azul-escuro); }
.titulo-centralizado { text-align: center; margin-bottom: 40px; color: var(--cor-azul-escuro); }

/* Correção da Altura do Menu - Reduzido de 100 para 70 */
section {
    scroll-margin-top: 0px;
}

/* =========================================
   CABEÇALHO
   ========================================= */
header {
    background-color: var(--cor-branco);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--cor-azul-escuro);
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--cor-azul-primario);
}

.btn-menu {
    border: 2px solid var(--cor-azul-escuro);
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-menu:hover {
    background-color: var(--cor-azul-escuro);
    color: var(--cor-branco) !important;
}

/* =========================================
   HERO SECTION (INÍCIO)
   ========================================= */
.hero-section {
    padding-top: 120px; 
    padding-bottom: 60px;
}

.section-azul {
    background-color: var(--cor-azul-claro);
    text-align: center;
}

.flex-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

.texto-lateral {
    flex: 1;
    text-align: left;
    color: var(--cor-azul-escuro);
}

.texto-lateral h1 {
    font-size: 2.2rem;
    line-height: 1.2;
}

.h1-headline {
    color: var(--cor-verde);
}

.subtitulo-hero {
    font-size: 1.1rem;
    color: #555;
    font-weight: bold;
}

.lista-vantagens {
    list-style: none;
    margin: 20px 0;
}

.lista-vantagens li {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 25px;
}

/* Card Flutuante (Formulário) */
.card-formulario {
    flex: 1;
    background-color: var(--cor-branco);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin-top: 0; 
}

.card-formulario h3 {
    text-align: center;
    color: var(--cor-azul-escuro);
    margin-bottom: 20px;
}

/* =========================================
   SEÇÃO SOBRE
   ========================================= */
.section-padrao {
    padding: 70px 0;
    text-align: center;
    /* Fundo removido para aceitar as classes utilitárias (bg-white, bg-suave) */
}

.sobre-layout {
    align-items: center;
    text-align: left;
    gap: 60px;
}

.sobre-texto {
    flex: 1; 
}

.sobre-foto { 
    flex: 1;
    display: flex;
    justify-content: center;
}

.sobre-texto h2 {
    color: var(--cor-azul-escuro);
    margin-bottom: 20px;
    font-size: 2rem;
}

.foto-redonda-borda {
    width: 100%;
    max-width: 450px; 
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    border-radius: 25px; 
    box-shadow: 15px 15px 0px var(--cor-azul-escuro); 
    display: block;
}

/* =========================================
   METODOLOGIA DETALHADA
   ========================================= */
.metodologia-layout {
    align-items: center;
    gap: 100px;
    text-align: left;
}

.metodologia-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.metodologia-texto p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.img-ilustracao {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* =========================================
   TABELA COMPARATIVA
   ========================================= */
.tabela-container {
    max-width: 900px;
    margin: 0 auto 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tabela-comparativa {
    width: 100%;
    border-collapse: collapse;
}

.tabela-comparativa th,
.tabela-comparativa td {
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
}

.tabela-comparativa th {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.th-tradicional { background-color: var(--cor-laranja-tradicional); width: 50%; }
.th-satlerland { background-color: var(--cor-verde-satlerland); width: 50%; }

.tabela-comparativa td { border-bottom: 1px solid #eee; color: #555; }
.td-tradicional { background-color: #FFF3E0; }
.td-satlerland { background-color: #E8F5E9; }

.sem-borda { border-bottom: none; }

.icone-x { color: var(--cor-laranja-tradicional); font-weight: bold; margin-right: 10px; font-size: 1.2rem; }
.icone-check { color: var(--cor-verde-satlerland); font-weight: bold; margin-right: 10px; font-size: 1.2rem; }

.rodape-tabela {
    text-align: center;
    margin-top: 20px;
}
.logo-tabela {
    max-height: 80px;
    width: auto;
}

/* =========================================
   CARDS E GRID
   ========================================= */
.cards-grid {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background: var(--cor-branco);
    padding: 30px 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card h3 {
    color: var(--cor-azul-escuro);
    margin-bottom: 10px;
}

/* =========================================
   DEPOIMENTOS (SWIPER)
   ========================================= */


#depoimentos h2 { color: var(--cor-azul-escuro); margin-bottom: 40px; }

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-5px); }

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--cor-azul-escuro);
}

.quote-icon { font-size: 40px; color: #ddd; line-height: 1; margin-bottom: 10px; }
.client-text { font-style: italic; color: #555; margin-bottom: 20px; font-size: 0.95rem; flex-grow: 1; }
.client-name { font-weight: bold; color: var(--cor-azul-escuro); margin-bottom: 5px; }
.client-role { font-size: 0.85rem; color: #888; }

.swiper { width: 100%; padding-bottom: 50px !important; }
.swiper-pagination-bullet-active { background-color: var(--cor-azul-escuro) !important; }

/* =========================================
   FAQ
   ========================================= */
.faq-grid {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: left;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    cursor: pointer;
}

.faq-item summary { font-weight: bold; color: var(--cor-azul-escuro); list-style: none; padding-right: 20px; position: relative; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; font-weight: bold; }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { margin-top: 10px; color: #555; }


/* =========================================
   CHAMADA FINAL (CONTATO WHATSAPP)
   ========================================= */
.btn-whatsapp-grande {
    background-color: #25d366; 
    color: #ffffff;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* =========================================
   LAYOUT DA CHAMADA FINAL (FOTO + TEXTO)
   ========================================= */
.contato-layout {
    align-items: center;
    gap: 40px;
}

.contato-texto {
    flex: 1;
}

.contato-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-aluna-cta {
    max-width: 100%;
    max-height: 400px; /* Evita que a foto fique absurdamente gigante no PC */
    object-fit: contain;
    
     
}

/* Responsividade do bloco final */
@media (max-width: 768px) {
    .contato-layout {
        flex-direction: column-reverse; /* No celular, a foto aparece por cima do botão */
    }
    .contato-texto {
        text-align: center !important;
    }
    .img-aluna-cta {
        max-height: 300px; /* Foto menor no celular */
    }
}


.btn-whatsapp-grande:hover {
    background-color: #20ba5a;
    transform: translateY(-3px); 
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.whatsapp-icon-grande {
    width: 30px;
    height: 30px;
    fill: white;
}

@media (max-width: 768px) {
    .btn-whatsapp-grande {
        width: 100%;
        font-size: 1.1rem;
        padding: 15px 20px;
    }
}

/* =========================================
   BOTÕES GERAIS E WHATSAPP FLUTUANTE
   ========================================= */
.btn-destaque {
    background-color: var(--cor-verde);
    color: var(--cor-branco);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s;
}

.btn-destaque:hover { background-color: var(--cor-verde-hover); }

.btn-vermelho { background-color: var(--cor-azul-escuro); }
.btn-vermelho:hover { background-color: var(--cor-azul-primario); }

footer {
    background-color: var(--cor-azul-escuro);
    color: var(--cor-branco);
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s;
}

.btn-whatsapp:hover { transform: scale(1.1); background-color: #20ba5a; }
.whatsapp-icon { width: 35px; height: 35px; fill: white; }

/* =========================================
   BOTÕES WHATSAPP DO HERO (CARD INICIAL)
   ========================================= */
.botoes-whatsapp-hero {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-hero-zap {
    display: block;
    background-color: var(--cor-fundo-principal); 
    color: var(--cor-azul-escuro);
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: left;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.btn-hero-zap:hover {
    background-color: #25d366; 
    color: var(--cor-branco);
    border-color: #25d366;
    transform: translateY(-2px); 
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* =========================================
   RESPONSIVIDADE (MOBILE)
   ========================================= */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: var(--cor-azul-escuro);
    border-radius: 2px;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .mobile-menu-icon { display: flex; z-index: 1001; }
    
    .nav-menu {
        position: fixed;
        top: 80px; 
        right: -100%;
        background-color: #fff;
        width: 100%;
        height: auto;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        transition: 0.4s;
        text-align: center;
        flex-direction: column;
    }
    .nav-menu.open { right: 0; }
    .nav-menu ul { flex-direction: column; gap: 20px; }

    .mobile-menu-icon.open .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .mobile-menu-icon.open .bar:nth-child(2) { opacity: 0; }
    .mobile-menu-icon.open .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

    .flex-layout, .sobre-layout, .metodologia-layout {
        flex-direction: column;
    }

    .sobre-layout { flex-direction: column-reverse; } 
    
    .texto-lateral, .metodologia-texto, .sobre-texto {
        text-align: center;
    }

    .texto-lateral .lista-vantagens {
        text-align: left;       
        display: inline-block;  
        margin: 0 auto;         
    }

    .texto-lateral {
        padding: 0 15px;
    }

    .card-formulario { width: 100%; }

    .tabela-comparativa th, .tabela-comparativa td { padding: 15px 10px; font-size: 0.95rem; }
}