/* --- CONFIGURAÇÕES VISUAIS PREMIUM --- */
:root {
    --cor-primaria: #00bfb2; 
    --cor-escura: #004d47;   
    --cor-fundo: #f8fbfb;    
    --cor-texto: #475569;
    --cor-titulos: #1e293b;
    --cor-whatsapp: #25d366;
    --sombra-suave: 0 10px 40px rgba(0, 77, 71, 0.06);
    --sombra-hover: 0 20px 40px rgba(0, 191, 178, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    line-height: 1.7; 
    color: var(--cor-texto); 
    background-color: #fff; 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .nav-links a { font-family: 'Poppins', sans-serif; }
a { text-decoration: none; }
.container { max-width: 1150px; margin: 0 auto; padding: 0 24px; }

/* --- ANIMAÇÃO DE ENTRADA (SCROLL REVEAL) --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- CABEÇALHO --- */
header { 
    background: #ffffff; 
    box-shadow: 0 4px 30px rgba(0,0,0,0.04); 
    position: fixed; width: 100%; top: 0; z-index: 1000; 
    transition: 0.3s;
}
nav { display: flex; justify-content: space-between; align-items: center; height: 90px; position: relative;}
.logo-container img { height: 75px; width: auto; display: block; }

.menu-toggle { display: none; font-size: 2.2rem; color: var(--cor-titulos); cursor: pointer; transition: 0.3s;}
.menu-toggle:hover { color: var(--cor-primaria); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--cor-titulos); font-weight: 500; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: var(--cor-primaria); }

.btn-header { 
    background: var(--cor-primaria); color: white !important; padding: 12px 28px; 
    border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 191, 178, 0.3); transition: all 0.3s ease;
}
.btn-header:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 191, 178, 0.4); }

/* --- HERO SECTION --- */
.hero { 
    background: linear-gradient(to right, rgba(0, 77, 71, 0.9), rgba(0, 191, 178, 0.7)), url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&w=1200&q=80');
    background-size: cover; background-position: center; background-attachment: fixed;
    min-height: 100vh; display: flex; align-items: center; text-align: center; color: white; padding-top: 90px; 
}
.hero-content { animation: fadeInUp 1s ease-out forwards; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 { font-size: 3.2rem; margin-bottom: 24px; font-weight: 700; line-height: 1.2; letter-spacing: -1px; }
.hero p { font-size: 1.25rem; margin-bottom: 48px; max-width: 750px; margin-left: auto; margin-right: auto; font-weight: 300; opacity: 0.9; }

.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-whatsapp-hero { 
    background: var(--cor-whatsapp); color: white; padding: 18px 40px; font-size: 1.1rem; 
    border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; 
    display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp-hero i { font-size: 1.4rem; }
.btn-whatsapp-hero:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); }

/* --- FRASE DE POSICIONAMENTO --- */
.frase-posicionamento {
    background: var(--cor-primaria);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.frase-posicionamento h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

/* --- DOR DA FAMÍLIA --- */
.dor-familia {
    background: var(--cor-fundo);
    padding: 100px 0;
    text-align: center;
}
.dor-content {
    max-width: 800px;
    margin: 0 auto;
}
.dor-content h2 {
    color: var(--cor-escura);
    font-size: 2.2rem;
    margin-bottom: 25px;
}
.dor-content p {
    font-size: 1.15rem;
    color: var(--cor-texto);
    line-height: 1.8;
}

/* --- TÍTULOS DE SEÇÃO --- */
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { color: var(--cor-titulos); font-size: 2.5rem; margin-bottom: 15px; font-weight: 700; letter-spacing: -0.5px; }
.section-title span { color: var(--cor-primaria); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.section-title p { color: var(--cor-texto); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* --- SERVIÇOS E PRODUTOS --- */
.servicos { padding: 100px 0; background: white; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }

.card { 
    background: var(--cor-fundo); padding: 50px 40px; border-radius: 20px; 
    box-shadow: var(--sombra-suave); text-align: left; 
    transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.02);
    position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--cor-primaria); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.card:hover { transform: translateY(-10px); box-shadow: var(--sombra-hover); }
.card:hover::before { transform: scaleX(1); }

.card-icon { 
    font-size: 3rem; color: var(--cor-primaria); margin-bottom: 25px; 
    background: rgba(0, 191, 178, 0.1); width: 80px; height: 80px; 
    display: flex; align-items: center; justify-content: center; border-radius: 20px;
}
.card h3 { color: var(--cor-titulos); font-size: 1.4rem; margin-bottom: 20px; }
.card ul { list-style: none; }
.card ul li { margin-bottom: 15px; font-size: 1rem; color: var(--cor-texto); display: flex; align-items: flex-start; gap: 10px; }
.card ul li i { color: var(--cor-primaria); font-weight: bold; font-size: 1.2rem; margin-top: 3px;}

/* --- PLANOS --- */
.planos { padding: 100px 0; background: var(--cor-fundo); }
.grid-planos { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 50px;}
.card-plano {
    background: white; border-radius: 24px; padding: 50px 40px;
    text-align: left; transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.03);
    display: flex; flex-direction: column; position: relative;
}
.card-plano:hover { transform: translateY(-10px); box-shadow: var(--sombra-suave); }

.card-plano.destaque { 
    background: var(--cor-escura); color: white; box-shadow: var(--sombra-hover); transform: scale(1.03); 
}
.card-plano.destaque:hover { transform: scale(1.03) translateY(-10px); }
.card-plano.destaque h3, .card-plano.destaque p, .card-plano.destaque ul li { color: white; }

.badge-popular { position: absolute; top: 20px; right: 20px; background: var(--cor-primaria); color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; font-family: 'Poppins', sans-serif; letter-spacing: 1px; text-transform: uppercase; }

.card-plano h3 { font-size: 1.8rem; color: var(--cor-titulos); margin-bottom: 20px;}
.card-plano .perfil { font-size: 0.95rem; color: #64748b; line-height: 1.5; min-height: 85px; margin-bottom: 30px;}
.card-plano.destaque .perfil { color: rgba(255,255,255,0.8); }

.card-plano ul { list-style: none; flex-grow: 1; }
.card-plano ul li { margin-bottom: 15px; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 12px; }
.card-plano ul li i { color: var(--cor-primaria); font-size: 1.2rem; margin-top: 2px;}

.btn-plano {
    display: block; width: 100%; padding: 18px; border-radius: 12px;
    background: white; color: var(--cor-titulos); font-weight: 600; font-family: 'Poppins', sans-serif;
    border: 1px solid #e2e8f0; transition: all 0.3s; margin-top: 30px; cursor: pointer; text-align: center; font-size: 1rem;
}
.btn-plano:hover { background: var(--cor-fundo); border-color: #cbd5e1; color: var(--cor-titulos); }
.card-plano.destaque .btn-plano { background: var(--cor-primaria); color: white !important; border: none; }
.card-plano.destaque .btn-plano:hover { background: #00a89d; box-shadow: 0 5px 15px rgba(0,0,0,0.2); color: white !important; }

/* --- COMO FUNCIONA --- */
.como-funciona {
    padding: 100px 0;
    background: white;
}
.grid-passos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}
.passo {
    padding: 30px 20px;
}
.passo-numero {
    width: 60px;
    height: 60px;
    background: var(--cor-primaria);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 20px rgba(0, 191, 178, 0.3);
}
.passo h4 {
    color: var(--cor-titulos);
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.passo p {
    font-size: 0.95rem;
    color: var(--cor-texto);
}

/* --- DEPOIMENTOS --- */
.depoimentos { padding: 100px 0; background: var(--cor-fundo); }
.grid-depoimentos { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.card-depoimento { 
    background: white; padding: 40px; border-radius: 20px; 
    display: flex; flex-direction: column; justify-content: space-between;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: var(--sombra-suave);
}
.quote-icon { font-size: 2rem; color: rgba(0, 191, 178, 0.2); margin-bottom: 15px; }
.card-depoimento p { font-style: italic; color: var(--cor-texto); margin-bottom: 30px; font-size: 1rem; line-height: 1.7; }

.autor { display: flex; align-items: center; gap: 15px; }
.autor img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 2px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.info-autor { display: flex; flex-direction: column; }
.nome-autor { font-weight: 600; color: var(--cor-titulos); font-size: 1rem; font-family: 'Poppins', sans-serif;}
.estrelas { color: #f59e0b; font-size: 0.9rem; margin-top: 2px; }

/* --- SOBRE --- */
.sobre { padding: 100px 0; background: white; }
.sobre-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sobre-text { margin-bottom: 50px;}
.sobre-text h2 { color: var(--cor-titulos); font-size: 2.2rem; margin-bottom: 20px; }
.sobre-text p { max-width: 800px; margin: 0 auto 15px; font-size: 1.1rem; color: var(--cor-texto); }

.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; width: 100%; }
.mvv-card { 
    background: var(--cor-fundo); padding: 40px; border-radius: 20px; 
    box-shadow: var(--sombra-suave); text-align: left;
    border-top: 4px solid transparent; transition: 0.3s;
}
.mvv-card:hover { border-top-color: var(--cor-primaria); transform: translateY(-5px); }
.mvv-card-icon { width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--cor-primaria); margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.mvv-card h4 { color: var(--cor-titulos); margin-bottom: 15px; font-size: 1.3rem; }
.mvv-card p, .mvv-card ul { font-size: 0.95rem; color: var(--cor-texto); }
.mvv-card ul { list-style: none; padding-left: 0; }
.mvv-card ul li { margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.mvv-card ul li i { color: var(--cor-primaria); margin-top: 4px;}

/* --- CHAMADA FINAL --- */
.chamada-final {
    background: var(--cor-escura);
    color: white;
    text-align: center;
    padding: 100px 0;
}
.chamada-final h3 {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--cor-primaria);
    margin-bottom: 30px;
    font-weight: 500;
}
.chamada-final h2 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.3;
}
.chamada-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-whatsapp-final {
    background: var(--cor-whatsapp);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp-final:hover { background: #1ebd57; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); }

/* --- WHATSAPP FLUTUANTE --- */
.float-whatsapp {
    position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px;
    background-color: var(--cor-whatsapp); color: #FFF; border-radius: 50%;
    text-align: center; font-size: 32px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 100; display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.float-whatsapp:hover { transform: scale(1.1); }

/* --- RODAPÉ --- */
footer { background: #003632; color: white; padding: 60px 0 30px; }
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-content h3 { color: var(--cor-primaria); font-size: 1.8rem; margin-bottom: 10px; }
.footer-content p { color: rgba(255,255,255,0.7); margin-bottom: 5px; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); width: 100%; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* --- RESPONSIVO (MOBILE) --- */
@media (max-width: 768px) {
    header { padding: 0; }
    .logo-container img { height: 60px; }
    
    .menu-toggle { display: block; }
    
    .nav-links { 
        position: absolute; top: 90px; left: 0; width: 100%; 
        background: #ffffff; flex-direction: column; 
        padding: 0; gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }
    
    .nav-links.active {
        padding: 20px 0 30px; gap: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a { font-size: 1.1rem; padding: 10px; display: block; text-align: center; width: 100%;}
    .btn-header { width: 80%; text-align: center; margin-top: 10px; }

    .hero { padding-top: 140px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px; }
    .btn-whatsapp-hero { justify-content: center; width: 100%; }

    .frase-posicionamento h2 { font-size: 1.4rem; padding: 0 15px; }
    .chamada-final h2 { font-size: 1.8rem; }
    .chamada-buttons { flex-direction: column; padding: 0 20px; }
    .btn-whatsapp-final { justify-content: center; width: 100%; }
}