/* Botão secundário */
.btn-secondary {
    background: transparent;
    color: #fcfaef;
    border: 2px solid #fcfaef;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: var(--bg-offwhite);
    color: var(--primary-green);
}
/* --- VARIAVEIS E RESET --- */
:root {
    /* Paleta do PDF */
    --primary-green: #465740;     /* Verde Principal */
    --secondary-green: #71866c;   /* Verde Secundário/Respiro */
    --text-dark: #545454;         /* Cinza Texto */
    --warm-grey: #c3c0bb;         /* Detalhes */
    --bg-offwhite: #fcfaef;       /* Fundo Principal */
    --highlight-yellow: #fff4b5;  /* Destaque Sutil */
    
    /* Fontes */
    --font-heading: 'Playfair Display', serif; /* Substituta da Carelia */
    --font-body: 'Raleway', sans-serif;
    --font-logo: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-offwhite);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* --- TIPOGRAFIA --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 em {
    font-style: italic;
    font-weight: 400;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* --- BOTÕES --- */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px; /* Borda arredondada suave */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #fff;
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: #fff;
}

/* --- HEADER --- */
header {
    background-color: var(--bg-offwhite);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-logo);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo img {
    max-width: 20px;
    margin-bottom: 5px;
}

.logo span {
    font-size: 0.8rem;
    color: var(--secondary-green);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-list a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--primary-green);
    transition: 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-green);
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 140px; /* Espaço para o header fixo */
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Formas orgânicas inspiradas no logo */
.organic-shape {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    box-shadow: 10px 10px 0px var(--highlight-yellow); /* Detalhe amarelo sutil */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { transform: translateY(-15px); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { transform: translateY(0px); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* --- SEÇÕES GERAIS --- */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.organic-shape-2 {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    border: 2px solid var(--warm-grey);
    padding: 10px;
}

.organic-shape-2 img {
    border-radius: 50% 50% 50% 50%;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.features-list i {
    color: var(--secondary-green);
    font-size: 1.2rem;
}

/* --- SERVIÇOS --- */
.bg-secondary {
    background-color: rgba(113, 134, 108, 0.1); /* Verde secundário bem clarinho */
}

.text-center { text-align: center; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--secondary-green);
}

.icon-large {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: block;
}

/* --- AUDIÊNCIA --- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--warm-grey);
}

.check-icon {
    background: var(--highlight-yellow);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-green);
    flex-shrink: 0;
}

/* --- HORÁRIOS --- */
.bg-primary-light {
    background-color: var(--primary-green);
    color: #fff;
}

.bg-primary-light h2, .bg-primary-light p {
    color: #fff;
}

.schedule-box {
    background: rgba(255,255,255,0.1);
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 15px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.schedule-row .dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.5);
    margin: 0 15px;
    position: relative;
    top: -5px;
}

.mt-2 { margin-top: 20px; }

/* --- FAQ ACCORDION --- */
.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--warm-grey);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-header:hover {
    background-color: var(--highlight-yellow);
}

.accordion-body {
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-body p {
    margin: 20px 0;
    font-size: 0.95rem;
}

.accordion-item.active .accordion-body {
    max-height: 200px; /* Altura suficiente para o texto */
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-green);
    color: var(--bg-offwhite);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 40px;
}

.footer-logo h3 {
    color: var(--highlight-yellow);
    margin-bottom: 5px;
}

.footer-logo p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-nav a {
    color: #fff;
    margin-left: 20px;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    
    .hero-content, .two-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero { padding-top: 100px; }

    .nav-list {
        display: none; /* Menu mobile escondido por padrão */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-offwhite);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-list.active { display: flex; }
    
    .mobile-menu-icon { display: block; }
    
    header .btn { display: none; } /* Esconde botão agendar no header mobile para não poluir */
    
    .audience-grid { grid-template-columns: 1fr; }
    
    .organic-shape { margin: 0 auto; max-width: 300px; }
}

/* --- ANIMAÇÕES DE SCROLL (CSS classes manipuladas pelo JS) --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }


/* --- BOTÃO FLUTUANTE (Foco Mobile) --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; /* Verde oficial WhatsApp para reconhecimento imediato */
    /* OU use var(--primary-green) se quiser manter 100% a marca */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- REFINAMENTO EXTRA PARA MOBILE --- */
@media (max-width: 768px) {
    /* Ajuste fino para telas pequenas */
    .section-padding {
        padding: 50px 0; /* Menos espaço entre seções no mobile */
    }

    .hero {
        text-align: center; /* Centraliza texto do banner no mobile */
        padding-top: 110px;
    }

    /* Força a imagem a aparecer DEPOIS do texto no mobile, ou antes se preferir */
    .hero-content {
        display: flex;
        flex-direction: column-reverse; /* Imagem em cima, Texto embaixo? */
        /* Eu recomendo deixar column (Texto em cima) para carregar a mensagem primeiro */
        flex-direction: column; 
        gap: 30px;
    }

    /* Aumenta a área de toque dos botões para dedos */
    .btn {
        width: 100%; /* Botão ocupa largura total no mobile */
        text-align: center;
        padding: 15px 0;
        margin-bottom: 10px;
    }
    
    .btn-outline {
        margin-left: 0; /* Remove margem lateral e empilha botões */
    }

    h1 {
        font-size: 2.2rem; /* Título menor para não quebrar feio */
    }
}