/* Reset & Variáveis */
:root {
    --primary: #4D604D;
    --primary-light: #5B6B61;
    --primary-dark: #2D3A33;
    --accent: #D4AF37; /* Dourado */
    --accent-dark: #B5952F;
    --bg-main: #FCFBF9; /* Branco com toque super leve do bege original */
    --bg-alt: #FFFFFF;
    --text-main: #1A261F;
    --text-muted: #4A5A50;
    --border-color: rgba(77, 96, 77, 0.15);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(77, 96, 77, 0.1);
    --shadow-lg: 0 20px 40px rgba(77, 96, 77, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    background-image: url('fundo.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 500; }
p { margin-bottom: 1rem; }
.highlight { color: var(--accent); font-style: italic; }
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.pt-4 { padding-top: 2rem; }
.border-top { border-top: 1px solid var(--border-color); }
.bg-light { background-color: rgba(255,255,255,0.7); backdrop-filter: blur(10px); }
.bg-primary { background-color: var(--primary); color: white; }
.bg-primary h2, .bg-primary p { color: white; }

/* Layout & Utilitários */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; max-width: 700px; margin-inline: auto; }

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn i { font-size: 1.2rem; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
}
.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}
.btn-large { padding: 1.25rem 2.5rem; font-size: 1.1rem; }
.btn-huge { padding: 1.5rem 3rem; font-size: 1.2rem; }

/* Header & Nav */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background-color: rgba(77, 96, 77, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.logo-js, .logo-js-small {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
}
.logo-js-small { font-size: 1.5rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary); font-weight: 500; }
.logo-crp { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 1px; }

/* Nav Links */
.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.desktop-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}
.desktop-nav a:hover { color: var(--accent); }

/* Header Button */
.header .btn-outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}
.header .btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.mobile-menu-btn { display: none; background: none; border: none; font-size: 2rem; color: rgba(255, 255, 255, 0.9); cursor: pointer; z-index: 1001; }

.mobile-menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--bg-main);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.mobile-menu.active { transform: translateY(0); opacity: 1; }
.mobile-menu a.mobile-link { font-family: var(--font-heading); font-size: 1.8rem; color: var(--primary); text-decoration: none; }

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content p { font-size: 1.15rem; margin-bottom: 2.5rem; opacity: 0.9; }
.hero-note { font-size: 0.9rem; margin-top: 1rem; opacity: 0.8; display: flex; align-items: center; gap: 0.5rem; color: var(--primary); }

.hero-media { position: relative; }
.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
    max-width: 320px;
    margin: 0 auto;
}
.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    cursor: pointer;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--accent);
}
.video-decoration {
    position: absolute;
    top: -20px; right: -20px;
    width: 150px; height: 150px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

/* O que é o grupo */
.alert-box {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}
.alert-icon { font-size: 2.5rem; color: var(--accent); }
.alert-text h3 { margin-bottom: 0.5rem; }
.alert-text p { margin-bottom: 0; color: var(--text-muted); }

.group-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.benefit-item {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.benefit-item i { font-size: 2rem; color: var(--primary); }

/* Temas Abordados */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.topic-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 0.2rem; }
.topic-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}
.topic-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Como Funciona / Timeline */
.journey-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0; height: 100%;
    width: 2px;
    background: var(--border-color);
}
.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-icon {
    position: absolute;
    left: 20px; top: 0;
    width: 44px; height: 44px;
    background: white;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    z-index: 2;
}
.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.timeline-content.highlight-card {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}
.timeline-header { margin-bottom: 1rem; }
.duration { font-size: 0.85rem; color: var(--accent-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.timeline-list { list-style: none; }
.timeline-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.timeline-list li i { color: var(--primary); margin-top: 4px; }

/* Compromisso Social */
.social-commitment { padding: 4rem 0; }
.commitment-icon { font-size: 4rem; color: var(--accent); margin-bottom: 1.5rem; }
.social-commitment p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; line-height: 1.8; }
.social-commitment strong { color: var(--accent); }

/* Sobre a Psicóloga */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image { position: relative; }
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    margin: 0 auto;
}
.image-wrapper img { width: 100%; height: auto; display: block; }
.experience-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 140px; height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-main);
}
.crp-text { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 5px; }

/* Footer */
.footer {
    background-color: white;
    padding: 6rem 0 0;
    border-top: 1px solid var(--border-color);
}
.footer-content p { max-width: 600px; margin: 0 auto; color: var(--text-muted); }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-heading); color: var(--primary); font-size: 1.2rem; margin-bottom: 1rem; }

/* Animações Reveal */
.reveal-fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-fade-left { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-fade-right { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-active { opacity: 1; transform: translate(0); }

/* Utilitários Visibilidade */
.mobile-only { display: none !important; }

/* Responsivo */
@media (max-width: 992px) {
    .desktop-nav, .btn-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; flex-direction: column; align-items: center; margin-top: 1rem; }
    .hero-container, .about-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero { padding: 8rem 0 4rem; text-align: center; }
    .hero-actions { display: flex; flex-direction: column; align-items: center; }
    .video-decoration { display: none; }
    .about-text { text-align: center; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .group-benefits { grid-template-columns: 1fr; }
    .alert-box { flex-direction: column; border-left: none; border-top: 4px solid var(--primary); border-radius: 0 0 12px 12px; }
    .timeline::before { left: 20px; }
    .timeline-icon { left: 0; width: 40px; height: 40px; font-size: 1rem; }
    .timeline-item { padding-left: 60px; }
    .timeline-content { padding: 1.5rem; }
}
