/* --- Reset e Variáveis (Paleta Bege + Verde-Água) --- */
:root {
    --primary-purple: #76c7b7; /* Verde-água pastel (cor principal) */
    --hover-purple: #55b1a0; /* Verde-água mais escuro (hover) */
    --pastel-purple-bg: #eef1f1; /* Cinza claro pastel (fundos secundários) */
    --text-dark-purple: #2f3a36; /* Texto principal (escuro neutro) */
    --text-light-purple: #6b7c76; /* Texto secundário */
    --brown-box: #c9b8a6; /* Bege mais fechado (caixas de destaque) */
    --bg-light: #fbf8f2; /* Bege pastel (fundo principal) */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Rolagem suave nativa */
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark-purple);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden; /* Evita rolagem horizontal indesejada nas animações */
}

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

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

/* --- Botões Modernos --- */
.btn-purple {
    background-color: var(--primary-purple);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: lowercase;
    box-shadow: 0 4px 15px rgba(118, 199, 183, 0.3); /* Sombra suave roxa */
}

.btn-purple:hover {
    background-color: var(--hover-purple);
    transform: translateY(-3px); /* Leve subida ao passar o mouse */
    box-shadow: 0 6px 20px rgba(118, 199, 183, 0.4);
}

/* --- WhatsApp Float Moderno --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #25d366, #128c7e); /* Degradê moderno */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg); /* Animação ao passar o mouse */
}

/* --- Header Moderno (Sticky & Transição) --- */
header {
    position: fixed; /* Fixo no topo */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent; /* Começa transparente */
    padding: 20px 0;
    transition: all 0.4s ease; /* Transição suave para a mudança de cor */
}

/* Classe adicionada pelo JavaScript quando rola para baixo */
header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.98); /* Branco quase sólido */
    padding: 10px 0; /* Fica um pouco mais compacto */
    box-shadow: 0 2px 20px rgba(47, 58, 54, 0.08); /* Sombra roxa suave */
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img { height: 60px; transition: 0.4s; }
header.header-scrolled .logo-img { height: 50px; /* Logo diminui um pouco no scroll */ }

.logo-text h1 {
    font-family: var(--font-serif);
    color: var(--primary-purple); /* Roxo */
    font-size: 1.8rem;
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary-purple);
    text-transform: uppercase;
}

.logo-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light-purple);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-dark-purple);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

/* Efeito de sublinhado animado no menu */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-purple);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}


/* --- Hero Section (Ajustes para o header fixo) --- */
.hero {
    /* Degradê sutil pastel */
    background: linear-gradient(to right, var(--bg-light) 50%, #ffffff 50%);
    padding: 140px 0 80px; /* Padding superior maior por causa do header fixo */
    position: relative;
    overflow: hidden;
}

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

.hero-text { flex: 1; max-width: 500px; }

.hero-text h2 {
    font-family: var(--font-serif);
    color: var(--text-dark-purple);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-light-purple);
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

/* Círculo pastel atrás da foto */
.image-bg-shape {
    position: absolute;
    top: -20px;
    right: -50px;
    width: 400px;
    height: 400px;
    background-color: var(--pastel-purple-bg); /* Roxo pastel */
    border-radius: 50%;
    z-index: 1;
}

.hero-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Forma orgânica moderna */
    height: auto;
    box-shadow: 20px 20px 0 rgba(118, 199, 183, 0.1); /* Sombra deslocada moderna */
}

/* --- Faixa de Números (Stats) --- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-purple), var(--hover-purple));
    padding: 55px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    color: #ffffff;
}

.stat-icon i {
    font-size: 34px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
}

.stat-plus {
    font-size: 1.6rem;
    font-weight: 800;
    margin-left: 4px;
    vertical-align: top;
}

.stat-label {
    margin-top: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* --- Como te ajudo --- */
.pain-section {
    padding: 100px 0;
    text-align: center;
    background-color: white;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-dark-purple);
    margin-bottom: 25px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light-purple);
    font-size: 1.1rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--brown-box), #aca199); /* Degradê sutil */
    color: white;
    padding: 40px;
    border-radius: 30px 0 30px 0; /* Bordas assimétricas modernas */
    max-width: 900px;
    margin: 0 auto 80px;
    box-shadow: 0 10px 30px rgba(155, 140, 131, 0.3);
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 10px 30px rgba(118, 199, 183, 0.15); /* Sombra roxa ao passar o mouse */
    transform: translateY(-5px);
}

.feature-item img {
    height: 80px;
    margin-bottom: 25px;
    /* Filtro para deixar ícones (se forem pretos) com tom roxo */
    filter: brightness(0) saturate(100%) invert(78%) sepia(14%) saturate(620%) hue-rotate(120deg) brightness(92%) contrast(88%);
}

.feature-item h3 {
    font-size: 1rem;
    color: var(--text-dark-purple);
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Sobre Mim --- */
.about-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(118, 199, 183, 0.2);
}

.about-text { flex: 1; text-align: justify; color: var(--text-light-purple); }
.about-text ul { margin: 25px 0 35px 20px; list-style: disc; color: var(--text-dark-purple); }
.about-text li { margin-bottom: 10px; }

/* --- Dúvidas (FAQ) Pastel --- */
.faq-section {
    background: rgba(118, 199, 183, 0.4); /* Fundo Roxo Pastel */
    padding: 100px 0;
}

.section-title-purple {
    text-align: center;
    font-family: var(--font-serif);
    color: var(--text-dark-purple);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.accordion { max-width: 900px; margin: 0 auto; }

details {
    background-color: rgba(255, 255, 255, 0.9); /* Branco semitransparente */
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

details:hover {
    border-color: var(--primary-purple);
    background-color: white;
}

details[open] {
    box-shadow: 0 5px 20px rgba(118, 199, 183, 0.15);
    background-color: white;
}

summary {
    font-weight: 600;
    color: var(--text-dark-purple);
    list-style: none;
    position: relative;
    padding-right: 30px; /* Espaço para o ícone */
}

summary::-webkit-details-marker { display: none; } /* Remove seta padrão */

/* Ícone de + e - moderno animado */
summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg); /* Gira o ícone */
}

details p {
    margin-top: 20px;
    color: var(--text-light-purple);
    border-top: 1px solid #eee;
    padding-top: 20px;
    animation: fadeIn 0.5s ease; /* Animação suave ao abrir */
}

/* --- Footer --- */
footer {
    background-color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-profile { display: flex; align-items: center; gap: 20px; }
.footer-profile img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.footer-profile h3 { color: var(--text-dark-purple); font-family: var(--font-serif); font-size: 1.5rem; }

.contact-title { color: var(--primary-purple); margin-bottom: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;}
.footer-contact p, .footer-address p { color: var(--text-light-purple); margin-bottom: 10px; display: flex; align-items: center; gap: 12px; transition: transform 0.2s;}
.footer-contact p:hover, .footer-address p:hover { transform: translateX(5px); color: var(--primary-purple); }
.footer-contact i, .footer-address i { color: var(--primary-purple); font-size: 1.2rem; }

.map-icons { margin-top: 15px; font-size: 1.8rem; color: var(--primary-purple); display: flex; gap: 20px; }

.disclaimer {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light-purple);
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #eee;
}

.copyright {
    text-align: center;
    color: var(--text-light-purple);
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

/* --- ANIMAÇÕES DE SCROLL (Classes utilitárias) --- */

/* Estado inicial (invisível e deslocado para baixo) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Estado final (visível e na posição correta) - Adicionado pelo JS */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animação escalonada para os itens do grid */
.staggered-animation.visible .feature-item:nth-child(1) { transition-delay: 0.1s; }
.staggered-animation.visible .feature-item:nth-child(2) { transition-delay: 0.3s; }
.staggered-animation.visible .feature-item:nth-child(3) { transition-delay: 0.5s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade Básica */
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 15px; padding: 10px 0; }
    nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .hero { padding-top: 180px; text-align: center; } /* Mais espaço no topo mobile */
    .hero-content, .about-content, .footer-content { flex-direction: column; text-align: center; }
    .hero-image { justify-content: center; margin-top: 40px; }
    .image-bg-shape { top: -10%; right: auto; left: 50%; transform: translateX(-50%); width: 300px; height: 300px;}
    .hero-text h2 { font-size: 2.2rem; }
    .about-image img { width: 280px; height: 280px; margin-bottom: 30px; }
    .stats-grid { justify-content: center; }
    .stat-item { min-width: 150px; }
    .features-grid { gap: 30px; }
    .feature-item { width: 100%; max-width: none; }
}