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

/* Prevenir overflow horizontal */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    /* Garantir que não interfira com elementos fixed */
    transform: none !important;
    will-change: auto !important;
    isolation: auto !important;
    contain: none !important;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    transform: none !important;
    will-change: auto !important;
    isolation: auto !important;
    contain: none !important;
    
}

/* Otimizações de performance */
* {
    will-change: auto;
}

/* IMPORTANTE: Remover qualquer transform ou will-change que possa criar novo contexto de stacking */
.container,
.hero,
.about,
.benefits,
.schedule,
.footer {
    transform: none !important;
    will-change: auto !important;
}

/* Garantir que elementos fixed funcionem corretamente */
.whatsapp-float,
.whatsapp-mini-chat {
    position: fixed !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
}



/* Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Elementos com animações específicas */
.hero::before,
.hero::after,
.hero-content::before,
.hero-content::after,
.hero-photo-container,
.about-photo-container,
.schedule-photo-container,
.benefit-card {
    will-change: transform, opacity;
}

/* Otimização de GPU para animações */
.hero-title,
.section-title,
.section-title-center,
.schedule-title,
.footer-section-title {
    will-change: background-position;
}

/* Variables - Paleta Branco Quente/Creme/Bege Terroso harmonizada com #F4E6D3 */
:root {
    /* Cores Principais */
    --primary-color: #E6D5C7;       /* Bege Terroso - cor principal */
    --primary-hover: #D4C3B5;       /* Bege terroso escuro - hover */
    --primary-light: #F4E6D3;       /* Light Peach - cor base fornecida */
    
    /* Paleta Principal - Branco Quente/Creme/Bege */
    --main-darkest: #3A3A3A;        /* Cinza escuro - títulos principais */
    --main-dark: #4A4A4A;           /* Cinza médio escuro - cor de destaque */
    --main-primary: #E6D5C7;        /* Bege Terroso - principal */
    --main-medium: #F0EBE3;         /* Creme Suave - médio */
    --main-warm: #F7F5F3;           /* Branco Quente */
    --main-golden: #E6D5C7;         /* Bege Terroso */
    --main-golden-light: #F0EBE3;   /* Creme Suave */
    --main-golden-soft: #F7F5F3;    /* Branco Quente */
    --main-golden-pale: #F9F8F7;    /* Branco muito suave */
    --main-cream: #F0EBE3;          /* Creme Suave */
    --main-whisper: #F7F5F3;        /* Branco Quente */
    
    /* Cores de Texto - tons escuros para contraste */
    --text-primary: #2A2A2A;        /* Texto principal - muito escuro */
    --text-secondary: #3A3A3A;      /* Texto secundário */
    --text-accent: #4A4A4A;         /* Texto de destaque */
    --text-muted: #6A6A6A;          /* Texto suave */
    --text-light: #8A8A8A;          /* Texto claro */
    --text-white: #FFFFFF;
    
    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-light: #F7F5F3;    /* Branco Quente */
    --background-soft: #F0EBE3;     /* Creme Suave */
    --background-accent: #F4E6D3;   /* Light Peach - cor base */
    --background-hero: #E6D5C7;     /* Bege Terroso - cor de destaque */
    
    /* Cores de Apoio - mantendo harmonia */
    --accent-warm: #E6D5C7;         /* Bege Terroso - para elementos especiais */
    --accent-cool: #F0EBE3;         /* Creme Suave - para hover states */
    --accent-subtle: #F7F5F3;       /* Branco Quente - para elementos sutis */
    --neutral-border: #E6D5C7;      /* Bege Terroso - para bordas */
    --neutral-shadow: #F0EBE3;      /* Creme Suave - para sombras */
    
    /* Sombras harmoniosas */
    --shadow-light: 0 2px 15px rgba(42, 42, 42, 0.08);
    --shadow-medium: 0 4px 25px rgba(42, 42, 42, 0.12);
    
    /* Outros */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    overflow-x: hidden;
    font-weight: 400;
    padding-top: var(--header-height);
    opacity: 0;
    transition: opacity 0.5s ease-out;
    width: 100%;
    max-width: 100vw;
    /* Otimização de performance */
    transform: translateZ(0);
    backface-visibility: hidden;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { 
    font-size: clamp(2.2rem, 5vw, 3.8rem); 
    font-weight: 700;
}
h2 { 
    font-size: clamp(1.6rem, 4vw, 2.8rem); 
    font-weight: 600;
}
h3 { 
    font-size: clamp(1.3rem, 3vw, 1.9rem); 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}


/* Header Styles */

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





/* Para o mobile */
@media (max-width: 768px) {
    .header-content {
        margin-top: 10px !important;
    }


    
    .logo-text {
        margin-left: 8px;
        align-items: flex-start;
    }
    
    .logo-name {
        font-size: 14px;
        text-align: left;
    }
    
    .logo-crp {
        font-size: 11px;
        text-align: left;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: var(--header-height);
    background: var(--background-hero);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
    z-index: 1000;
    transition: var(--transition);
    box-sizing: border-box;
}

.header-content {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 10px;
}

.logo-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    text-align: left;
}

.logo-crp {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
    text-align: left;
}



/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(42, 42, 42, 0.1);
}



/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(42, 42, 42, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100vh;
    background: var(--main-whisper);
    box-shadow: -10px 0 30px rgba(42, 42, 42, 0.2);
    z-index: 999;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.nav-mobile.active {
    right: 0;
}

.mobile-menu-header {
    background: var(--main-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--neutral-border);
}

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



.mobile-logo .logo-text {
    margin-left: 8px;
    align-items: flex-start;
}

.mobile-logo .logo-name {
    font-size: 12px;
    text-align: left;
}

.mobile-logo .logo-crp {
    font-size: 9px;
    text-align: left;
}



.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--text-primary);
}

.mobile-nav-list {
    list-style: none;
    padding: 30px 0;
    flex: 1;
}

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-link {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 25px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--text-primary);
    background: var(--background-soft);
    border-left-color: var(--primary-color);
}

.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid var(--neutral-border);
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 20px;
}

/* Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 18px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(42, 42, 42, 0.2);
}

.btn-center {
    display: flex;
    justify-content: center;
    margin: 3rem auto 0;
    width: fit-content;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hero Section com Animações Avançadas */
.hero {
    background: 
        /* Gradiente base azul suave */
        linear-gradient(135deg, 
            rgba(255, 255, 255, 1) 0%,
            rgba(247, 245, 243, 0.98) 25%,
            rgba(240, 235, 227, 0.95) 50%,
            rgba(247, 245, 243, 0.98) 75%,
            rgba(255, 255, 255, 1) 100%
        ),
        /* Overlay com formas geométricas azuis */
        radial-gradient(ellipse 1200px 800px at 20% 40%, rgba(42, 42, 42, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 800px 600px at 80% 60%, rgba(58, 58, 58, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 400px at 60% 80%, rgba(74, 74, 74, 0.05) 0%, transparent 60%),
        /* Padrão de profundidade azul */
        conic-gradient(from 45deg at 30% 20%, rgba(42, 42, 42, 0.03) 0deg, transparent 90deg, rgba(58, 58, 58, 0.02) 180deg, transparent 270deg),
        /* Grid profissional sutil azul */
        linear-gradient(90deg, rgba(42, 42, 42, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(42, 42, 42, 0.02) 1px, transparent 1px);
    background-size: 
        100% 100%,
        1200px 800px,
        800px 600px, 
        1000px 400px,
        400px 400px,
        100px 100px,
        100px 100px;
    background-position: 
        center,
        20% 40%,
        80% 60%,
        60% 80%,
        30% 20%,
        0 0,
        0 0;
    background-attachment: fixed;
    color: var(--text-primary);
    padding: 40px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transform: none !important;
}

/* Elementos geométricos flutuantes azuis modernos */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: 
        conic-gradient(from 0deg, rgba(42, 42, 42, 0.08), rgba(58, 58, 58, 0.05), rgba(42, 42, 42, 0.08));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphFloat 30s infinite ease-in-out;
    z-index: 1;
    filter: blur(1px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: 
        linear-gradient(135deg, 
            rgba(74, 74, 74, 0.06) 0%, 
            rgba(42, 42, 42, 0.08) 50%, 
            rgba(58, 58, 58, 0.04) 100%
        );
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphFloat 35s infinite ease-in-out reverse;
    z-index: 1;
    filter: blur(0.5px);
    pointer-events: none;
}

/* Elementos decorativos adicionais azuis */
.hero-content::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: 
        radial-gradient(circle, 
            rgba(42, 42, 42, 0.1) 0%, 
            rgba(42, 42, 42, 0.05) 40%, 
            transparent 70%
        );
    border-radius: 50%;
    animation: pulse 8s infinite;
    z-index: 1;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: 
        linear-gradient(45deg, 
            rgba(58, 58, 58, 0.08) 0%, 
            rgba(74, 74, 74, 0.06) 100%
        );
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 20s infinite linear;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 1rem; /* Ajustado para dar mais espaço vertical */
    line-height: 1.3; /* Mantido */
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    position: relative;
    background: linear-gradient(135deg, 
        #2A2A2A 0%, 
        #4A4A4A 25%, 
        #6A6A6A 50%, 
        #8A8A8A 75%, 
        #A0A0A0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    /* text-shadow: */
    /*     0 0 30px rgba(42, 42, 42, 0.3), */
    /*     0 0 60px rgba(58, 58, 58, 0.2); */
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
    /* Otimização de performance */
    transform: translateZ(0);
    will-change: background-position;
    padding-bottom: 40px; /* Aumentado significativamente */
    overflow: visible;   /* Mantido */
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(74, 74, 74, 0.1) 50%, 
        transparent 70%);
    background-size: 150% 150%;
    animation: shimmerSlide 3s ease-in-out infinite;
    border-radius: 15px;
    z-index: -1;
    filter: blur(20px);
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, 
        rgba(74, 74, 74, 0.1) 0%, 
        transparent 70%);
    animation: lightPulse 6s ease-in-out infinite;
    z-index: -2;
    border-radius: 50%;
}

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

.hero-text {
    max-width: 600px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: none;
}

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

/* Hero Photo Container com Efeitos Avançados */
.hero-photo-container {
    position: relative;
    display: inline-block;
    animation: floatImage 8s ease-in-out infinite;
    /* Otimização de performance */
    transform: translateZ(0);
    will-change: transform;
}

.hero-photo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%
    );
    animation: lightSweep 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 4;
}

.hero-photo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 213, 199, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(74, 74, 74, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    mix-blend-mode: overlay;
    animation: lightPulse 6s ease-in-out infinite;
    border-radius: var(--border-radius-large);
    pointer-events: none;
    z-index: 3;
}

.hero-photo {
    width: auto;
    height: auto;
    max-width: 450px;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    box-shadow: 
        0 20px 40px rgba(42, 42, 42, 0.15),
        0 5px 15px rgba(42, 42, 42, 0.1),
        inset 0 0 80px rgba(74, 74, 74, 0.1);
    border: 2px solid rgba(42, 42, 42, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-photo::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.15) 45deg,
        transparent 90deg,
        transparent 180deg,
        rgba(230, 213, 199, 0.15) 225deg,
        transparent 270deg
    );
    animation: lightRotate 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-photo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(42, 42, 42, 0.2),
        0 10px 25px rgba(42, 42, 42, 0.15),
        inset 0 0 100px rgba(74, 74, 74, 0.15);
}



/* Overlay com gradiente animado */
.hero-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(58, 58, 58, 0.3) 0%, 
        transparent 40%,
        transparent 60%,
        rgba(74, 74, 74, 0.3) 100%
    );
    border-radius: var(--border-radius-large);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.hero-photo-container:hover .hero-photo-overlay {
    opacity: 1;
    animation: gradientShift 5s ease-in-out infinite;
}

/* Frame decorativo animado */
.hero-photo-frame {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--main-golden-light);
    border-radius: var(--border-radius-large);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
    z-index: 1;
}

.hero-photo-container:hover .hero-photo-frame {
    opacity: 0.5;
    transform: scale(1);
    animation: framePulse 2s ease-in-out infinite;
}

/* About Section com Imagens Animadas */
.about {
    padding: 120px 0;
    background: var(--background-white);
    position: relative;
    transform: none !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About Photo Container com Efeitos */
.about-photo-container {
    position: relative;
    display: inline-block;
    animation: floatImageSoft 10s ease-in-out infinite;
    /* Otimização de performance */
    transform: translateZ(0);
    will-change: transform;
}

.about-photo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.2) 50%, 
            transparent 100%
        );
    animation: lightWave 3s ease-in-out infinite;
    border-radius: var(--border-radius-large);
    pointer-events: none;
    z-index: 4;
}

.about-photo-container::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(circle at 30% 20%, rgba(230, 213, 199, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(240, 235, 227, 0.2) 0%, transparent 50%);
    filter: blur(20px);
    animation: glowShift 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.about-photo {
    width: 100%;
    max-width: 380px;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: 
        var(--shadow-medium),
        inset 0 0 50px rgba(42, 42, 42, 0.05);
    border: 2px solid rgba(42, 42, 42, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.about-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmerSlide 4s ease-in-out infinite;
    pointer-events: none;
}

.about-photo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(42, 42, 42, 0.2),
        inset 0 0 70px rgba(42, 42, 42, 0.08);
}

/* Overlay com padrão de pontos */
.about-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, 
            rgba(42, 42, 42, 0.2) 0%, 
            transparent 70%
        );
    mix-blend-mode: multiply;
    border-radius: var(--border-radius-large);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.about-photo-container:hover .about-photo-overlay {
    opacity: 1;
}

/* Padrão de pontos decorativos */
.about-photo-dots {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--main-golden-light) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    animation: dotsFade 4s ease-in-out infinite;
    z-index: 1;
}

.about-text {
    max-width: 600px;
    text-align: left;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        var(--text-secondary) 25%, 
        var(--text-accent) 50%, 
        var(--text-secondary) 75%, 
        var(--text-primary) 100%);
    background-size: 150% 150%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: 
        0 0 25px rgba(42, 42, 42, 0.3),
        0 0 50px rgba(58, 58, 58, 0.2);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(74, 74, 74, 0.08) 50%, 
        transparent 70%);
    background-size: 150% 150%;
    animation: shimmerSlide 3s ease-in-out infinite;
    border-radius: 12px;
    z-index: -1;
    filter: blur(15px);
}

.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse at center, 
        rgba(74, 74, 74, 0.08) 0%, 
        transparent 70%);
    animation: lightPulse 6s ease-in-out infinite;
    z-index: -2;
    border-radius: 50%;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--main-primary), var(--accent-warm));
    margin: 2rem auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 3s infinite;
}

.about-description {
    text-align: left;
    max-width: 100%;
    margin: 0 0 3rem 0;
}

.about-description p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Centralizar o botão WhatsApp */
.about-text .btn-whatsapp {
    margin: 2rem auto 0;
    display: flex;
    width: fit-content;
}

/* Controle de exibição das versões desktop e mobile */
.about-desktop {
    display: grid;
}

.about-mobile {
    display: none;
}

/* Layout específico para mobile */
.about-mobile .about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.about-mobile .about-text {
    order: 1;
    max-width: 100%;
}

.about-mobile .about-image {
    order: 2;
    margin: 20px 0;
}

.about-mobile .about-text:last-child {
    order: 3;
}

/* Benefits Section com Cards Animados */
.benefits {
    padding: 80px 0;
    background: var(--background-light);
    position: relative;
    transform: none !important;
}

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

.benefit-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E9ECEF;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #495057, #6C757D);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #495057;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F3F4 100%);
}

.benefit-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.benefit-icon i {
    font-size: 3rem;
    color: #1976D2;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 2px solid #90CAF9;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 1;
}

/* Efeitos de fundo específicos para cada card */
.benefit-card:nth-child(1) .benefit-icon::after {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.benefit-card:nth-child(2) .benefit-icon::after {
    background: linear-gradient(135deg, #388E3C 0%, #2E7D32 100%);
}

.benefit-card:nth-child(3) .benefit-icon::after {
    background: linear-gradient(135deg, #F57C00 0%, #E65100 100%);
}

.benefit-card:nth-child(4) .benefit-icon::after {
    background: linear-gradient(135deg, #7B1FA2 0%, #6A1B9A 100%);
}

.benefit-card:nth-child(5) .benefit-icon::after {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
}

.benefit-card:nth-child(6) .benefit-icon::after {
    background: linear-gradient(135deg, #FF6F00 0%, #E65100 100%);
}

.benefit-card:hover .benefit-icon::after {
    opacity: 0.15;
    transform: scale(1.2);
}

.benefit-card:hover .benefit-icon i {
    color: #0D47A1;
    background: linear-gradient(135deg, #FFFFFF 0%, #E3F2FD 100%);
    border-color: #1976D2;
    transform: rotateY(360deg);
}

/* Cores específicas para cada card de especialidade */
.benefit-card:nth-child(1) .benefit-icon i {
    color: #1976D2;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-color: #90CAF9;
}

.benefit-card:nth-child(1):hover .benefit-icon i {
    color: #0D47A1;
    background: linear-gradient(135deg, #FFFFFF 0%, #E3F2FD 100%);
    border-color: #1976D2;
}

.benefit-card:nth-child(2) .benefit-icon i {
    color: #388E3C;
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    border-color: #81C784;
}

.benefit-card:nth-child(2):hover .benefit-icon i {
    color: #1B5E20;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F5E8 100%);
    border-color: #388E3C;
}

.benefit-card:nth-child(3) .benefit-icon i {
    color: #F57C00;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-color: #FFB74D;
}

.benefit-card:nth-child(3):hover .benefit-icon i {
    color: #E65100;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF3E0 100%);
    border-color: #F57C00;
}

.benefit-card:nth-child(4) .benefit-icon i {
    color: #7B1FA2;
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    border-color: #CE93D8;
}

.benefit-card:nth-child(4):hover .benefit-icon i {
    color: #6A1B9A;
    background: linear-gradient(135deg, #FFFFFF 0%, #F3E5F5 100%);
    border-color: #7B1FA2;
}

.benefit-card:nth-child(5) .benefit-icon i {
    color: #D32F2F;
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    border-color: #EF9A9A;
}

.benefit-card:nth-child(5):hover .benefit-icon i {
    color: #B71C1C;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFEBEE 100%);
    border-color: #D32F2F;
}

.benefit-card:nth-child(6) .benefit-icon i {
    color: #FF6F00;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border-color: #FFCC02;
}

.benefit-card:nth-child(6):hover .benefit-icon i {
    color: #E65100;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 100%);
    border-color: #FF6F00;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--main-darkest);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.section-title-center {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        var(--text-secondary) 25%, 
        var(--text-accent) 50%, 
        var(--text-secondary) 75%, 
        var(--text-primary) 100%);
    background-size: 150% 150%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: 
        0 0 25px rgba(42, 42, 42, 0.3),
        0 0 50px rgba(58, 58, 58, 0.2);
    letter-spacing: -0.02em;
}

.section-title-center::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(74, 74, 74, 0.08) 50%, 
        transparent 70%);
    background-size: 150% 150%;
    animation: shimmerSlide 3s ease-in-out infinite;
    border-radius: 12px;
    z-index: -1;
    filter: blur(15px);
}

.section-title-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse at center, 
        rgba(74, 74, 74, 0.08) 0%, 
        transparent 70%);
    animation: lightPulse 6s ease-in-out infinite;
    z-index: -2;
    border-radius: 50%;
}

/* Neuropsychological Assessment Section */
.neuro-assessment {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 50%, #F8F9FA 100%);
    position: relative;
    transform: none !important;
    overflow: hidden;
}

.neuro-assessment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.neuro-assessment::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.neuro-assessment-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}



.neuro-assessment-icon-large {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.neuro-assessment-icon-large i {
    font-size: 5rem;
    color: #2E7D32;
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border: 4px solid #81C784;
    box-shadow: 
        0 20px 50px rgba(46, 125, 50, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: floatImageSoft 10s ease-in-out infinite;
}

.neuro-assessment-icon-large::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.neuro-assessment-icon-large::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
    z-index: 0;
}

.neuro-assessment-content:hover .neuro-assessment-icon-large::after {
    opacity: 0.15;
    transform: scale(1.3);
}

.neuro-assessment-content:hover .neuro-assessment-icon-large i,
.neuro-assessment-icon-large i.icon-active {
    color: #1B5E20;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F5E8 100%);
    border-color: #2E7D32;
    transform: rotateY(360deg) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(46, 125, 50, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.neuro-assessment-content:hover .neuro-assessment-icon-large::after,
.neuro-assessment-icon-large.icon-active::after {
    opacity: 0.15;
    transform: scale(1.3);
}

.neuro-assessment-text {
    flex: 1;
    max-width: 600px;
}

.neuro-assessment-text h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2E7D32;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 0 2px 4px rgba(46, 125, 50, 0.1);
}



.neuro-assessment-text h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
    border-radius: 2px;
}

.neuro-assessment-text p {
    color: #495057;
    line-height: 2;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Cor específica para o card de avaliação neuropsicológica */
.neuro-assessment-card .neuro-assessment-icon i {
    color: #2E7D32;
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    border-color: #81C784;
}

.neuro-assessment-card:hover .neuro-assessment-icon i {
    color: #1B5E20;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F5E8 100%);
    border-color: #2E7D32;
}

/* Schedule Section com Imagem Animada */
.schedule {
    padding: 40px 0;
    background: var(--background-white);
    position: relative;
    transform: none !important;
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.schedule-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    font-weight: 700;
    position: relative;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        var(--text-secondary) 25%, 
        var(--text-accent) 50%, 
        var(--text-secondary) 75%, 
        var(--text-primary) 100%);
    background-size: 150% 150%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: 
        0 0 25px rgba(42, 42, 42, 0.3),
        0 0 50px rgba(58, 58, 58, 0.2);
    letter-spacing: -0.02em;
}

.schedule-title::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(74, 74, 74, 0.08) 50%, 
        transparent 70%);
    background-size: 150% 150%;
    animation: shimmerSlide 3s ease-in-out infinite;
    border-radius: 12px;
    z-index: -1;
    filter: blur(15px);
}

.schedule-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse at center, 
        rgba(74, 74, 74, 0.08) 0%, 
        transparent 70%);
    animation: lightPulse 6s ease-in-out infinite;
    z-index: -2;
    border-radius: 50%;
}

.schedule-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.schedule-text h2 {
    display: none;
}

.schedule-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.schedule-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Schedule Photo Container com Efeitos */
.schedule-photo-container {
    position: relative;
    display: inline-block;
    animation: breathe 6s ease-in-out infinite;
    /* Otimização de performance */
    transform: translateZ(0);
    will-change: transform;
}

.schedule-photo-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: 
        conic-gradient(
            from 0deg at 50% 50%,
            rgba(230, 213, 199, 0.2) 0deg,
            transparent 60deg,
            transparent 120deg,
            rgba(240, 235, 227, 0.2) 180deg,
            transparent 240deg,
            transparent 300deg,
            rgba(230, 213, 199, 0.2) 360deg
        );
    animation: lightSpiral 15s linear infinite;
    border-radius: var(--border-radius-large);
    pointer-events: none;
    z-index: 1;
}

.schedule-photo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(
            circle at center,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%
        );
    animation: lightRipple 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

.schedule-photo-container img {
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 450px;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    box-shadow: 
        var(--shadow-medium),
        0 0 40px rgba(230, 213, 199, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.schedule-photo-container img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 70%
        );
    animation: lightOrbit 8s linear infinite;
    pointer-events: none;
}

.schedule-photo-container:hover img {
    transform: scale(1.05);
    box-shadow: 
        0 20px 50px rgba(107, 91, 71, 0.2),
        0 0 60px rgba(230, 213, 199, 0.15);
}

/* Overlay com gradiente suave */
.schedule-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(42, 42, 42, 0.1) 0%, 
        transparent 50%,
        rgba(74, 74, 74, 0.1) 100%
    );
    border-radius: var(--border-radius-large);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.schedule-photo-container:hover .schedule-photo-overlay {
    opacity: 1;
}

/* Glow effect */
.schedule-photo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, var(--main-golden-pale) 0%, transparent 70%);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.schedule-photo-container:hover .schedule-photo-glow {
    opacity: 0.5;
    animation: glowPulse 2s ease-in-out infinite;
}

.schedule-image-mobile {
    display: none;
    text-align: center;
    margin-bottom: 40px;
}

.schedule-image-mobile img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--main-primary);
    color: var(--text-primary);
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    transform: none !important;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 769px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }
    
    .footer-copyright {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-section-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    background: linear-gradient(135deg, 
        #2A2A2A 0%, 
        #3A3A3A 25%, 
        #4A4A4A 50%, 
        #6A6A6A 75%, 
        #2A2A2A 100%);
    background-size: 150% 150%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: 
        0 0 15px rgba(42, 42, 42, 0.3),
        0 0 30px rgba(42, 42, 42, 0.2);
    letter-spacing: -0.01em;
}

.footer-section-title::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    background-size: 150% 150%;
    animation: shimmerSlide 3s ease-in-out infinite;
    border-radius: 8px;
    z-index: -1;
    filter: blur(10px);
}

.footer-section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    animation: lightPulse 6s ease-in-out infinite;
    z-index: -2;
    border-radius: 50%;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-subtle);
    border-radius: 1px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
    transition: var(--transition);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--text-secondary);
    min-width: 20px;
    opacity: 0.9;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--text-secondary);
}

.footer-social {
    margin-top: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 16px;
    border-radius: 25px;
    background: #f0e7d8;
    border: 1px solid var(--neutral-border);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-cool);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 42, 42, 0.1);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-copyright {
    border-top: 1px solid var(--neutral-border);
    padding-top: 20px;
}

.footer-copyright p {
    margin: 0;
    opacity: 0.8;
    color: var(--text-primary);
    font-size: 0.9rem;
}



/* Animações Avançadas */
@keyframes lightSweep {
    0% {
        transform: rotate(0deg) translateX(-100%);
    }
    100% {
        transform: rotate(360deg) translateX(100%);
    }
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes lightRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes lightWave {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
    }
}

@keyframes glowShift {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.8;
        transform: scale(1.1) rotate(120deg);
    }
    66% {
        opacity: 0.7;
        transform: scale(0.95) rotate(240deg);
    }
}

@keyframes shimmerSlide {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes lightSpiral {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes lightRipple {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes lightOrbit {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

/* Adicional: Efeito de luz ambiente para todas as imagens */
img {
    position: relative;
}

.hero-photo-container,
.about-photo-container,
.schedule-photo-container {
    filter: brightness(1.05) contrast(1.02);
}



@keyframes morphFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        transform: translate3d(0, -30px, 0) rotate(90deg) scale(1.05);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate3d(0, -20px, 0) rotate(180deg) scale(0.95);
        border-radius: 70% 30% 40% 60% / 50% 60% 40% 50%;
    }
    75% {
        transform: translate3d(0, -40px, 0) rotate(270deg) scale(1.02);
        border-radius: 30% 70% 60% 40% / 30% 70% 50% 60%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -20px, 0);
    }
}

@keyframes floatImageSoft {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    25% {
        transform: translate3d(0, -10px, 0) rotate(0.5deg);
    }
    75% {
        transform: translate3d(0, -10px, 0) rotate(-0.5deg);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 80% 50%;
    }
}

@keyframes framePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.02);
    }
}

@keyframes dotsFade {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes shimmerRotate {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Animation Classes */
.animate-fade-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.animate-fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.animate-fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.animate-zoom-in.animated {
    opacity: 1;
    transform: scale(1);
}



.animate-pulse {
    animation: pulse 2s infinite;
}

/* Header Scroll Effect */
.header.scrolled {
    background: rgba(230, 213, 199, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(42, 42, 42, 0.15);
}

/* Active Navigation Link Highlighting */
.nav-link.active {
    color: var(--text-primary) !important;
    background: rgba(42, 42, 42, 0.1) !important;
}

.mobile-nav-link.active {
    color: var(--text-primary);
    background: var(--main-whisper);
    border-left-color: var(--primary-color);
}



/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
    transition: all 0.3s ease;
}

.whatsapp-float.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(42, 42, 42, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    overflow: hidden;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-float-btn:hover::before {
    left: 100%;
}

.whatsapp-float-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42, 42, 42, 0.25);
}

.whatsapp-float-text {
    display: none;
    white-space: nowrap;
}

.whatsapp-float-btn:hover .whatsapp-float-text {
    display: block;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* WhatsApp Mini Chat */
.whatsapp-mini-chat {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 100000 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.whatsapp-mini-chat.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.chat-info h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-info span {
    font-size: 0.85rem;
    opacity: 0.9;
    display: block;
    margin-top: 2px;
}

.chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-body {
    padding: 20px;
}

.chat-message {
    background: var(--background-light);
    padding: 15px;
    border-radius: 18px 18px 18px 5px;
    margin-bottom: 15px;
    position: relative;
}

.chat-message::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: var(--background-light);
    border-bottom: 0;
    border-left: 0;
}

.chat-message p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.chat-message p:last-child {
    margin-bottom: 0;
}

.chat-footer {
    padding: 0 20px 20px;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.chat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.chat-btn:hover::before {
    left: 100%;
}

.chat-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(42, 42, 42, 0.2);
}

.chat-btn .whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* Animações do chat */
.whatsapp-mini-chat.chat-slide-in {
    animation: chatSlideIn 0.3s ease-out forwards;
}

.whatsapp-mini-chat.chat-slide-out {
    animation: chatSlideOut 0.3s ease-out forwards;
}

@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes chatSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
}





    

/* Efeitos de Luz Adicionais */
.hero-light-effect {
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(230, 213, 199, 0.2) 0%, transparent 50%);
    filter: blur(40px);
    mix-blend-mode: screen;
    animation: lightFloat 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 5;
}

.hero-light-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 6;
}

.hero-light-particles::before,
.hero-light-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-light-particles::before {
    top: 20%;
    left: 10%;
    animation: particleFloat1 15s linear infinite;
}

.hero-light-particles::after {
    top: 80%;
    right: 10%;
    animation: particleFloat2 20s linear infinite;
}

.about-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.about-light-rays::before,
.about-light-rays::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        transparent 100%
    );
    animation: lightRay 5s ease-in-out infinite;
}

.about-light-rays::before {
    top: 30%;
    left: -100%;
    transform: rotate(-45deg);
}

.about-light-rays::after {
    bottom: 30%;
    right: -100%;
    transform: rotate(45deg);
    animation-delay: 2.5s;
}

.schedule-light-ambient {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: 
        conic-gradient(
            from 0deg at 50% 50%,
            transparent,
            rgba(230, 213, 199, 0.1),
            transparent,
            rgba(240, 235, 227, 0.1),
            transparent
        );
    animation: ambientRotate 20s linear infinite;
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

/* Animações dos efeitos de luz */
@keyframes lightFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes particleFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(300px, -100px) scale(0.5);
        opacity: 0;
    }
}

@keyframes particleFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-200px, -200px) scale(0.3);
        opacity: 0;
    }
}

@keyframes lightRay {
    0%, 100% {
        transform: translateX(0) scaleX(0);
        opacity: 0;
    }
    50% {
        transform: translateX(50%) scaleX(1);
        opacity: 1;
    }
}

@keyframes ambientRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Efeito de brilho suave em todas as imagens */
.hero-photo-container:after,
.about-photo-container:after,
.schedule-photo-container:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--main-golden-light), 
        var(--main-golden-pale), 
        var(--main-golden-light)
    );
    border-radius: var(--border-radius-large);
    opacity: 0;
    z-index: -1;
    animation: glowBorder 4s ease-in-out infinite;
}

@keyframes glowBorder {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Reduzir animações em dispositivos móveis para melhor performance */
    .hero::before,
    .hero::after {
        animation-duration: 45s;
    }
    
    .hero-photo-container {
        animation-duration: 12s;
    }
    
    .about-photo-container {
        animation-duration: 15s;
    }
    
    .schedule-photo-container {
        animation-duration: 8s;
    }
    

    
    .hero-title,
    .section-title,
    .section-title-center,
    .schedule-title,
    .footer-section-title {
        animation-duration: 8s;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Prevenir overflow em elementos específicos */
    .hero-content,
    .about-content,
    .schedule-content,
    .benefits-grid,

    
    .hero-main-content,
    .schedule-main-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Header Mobile */
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 40px 0 60px;
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
        text-align: center;
        width: 100%;
        font-weight: 700;
        letter-spacing: 0;
        background: linear-gradient(135deg, 
            #2A2A2A 0%, 
            #4A4A4A 25%, 
            #6A6A6A 50%, 
            #8A8A8A 75%, 
            #A0A0A0 100%);
        background-size: 150% 150%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 6s ease-in-out infinite;
        text-shadow: 
            0 0 20px rgba(42, 42, 42, 0.3),
            0 0 40px rgba(58, 58, 58, 0.2);
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-photo {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 420px;
    }
    

    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    /* Controle de exibição das versões desktop e mobile */
    .about-desktop {
        display: none;
    }
    
    .about-mobile {
        display: block;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .schedule-title {
        font-size: 2.4rem;
        margin-bottom: 0.8rem;
        text-align: center;
        width: 100%;
        font-weight: 700;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, 
            var(--main-darkest) 0%, 
            var(--main-dark) 25%, 
            var(--main-primary) 50%, 
            var(--accent-warm) 75%, 
            var(--main-golden) 100%);
        background-size: 150% 150%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 6s ease-in-out infinite;
        text-shadow: 
            0 0 20px rgba(42, 42, 42, 0.3),
            0 0 40px rgba(58, 58, 58, 0.2);
    }
    
    .schedule-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .schedule-image {
        display: none;
    }
    
    .schedule-image-mobile {
        display: block;
    }
    
    .schedule-image img {
        max-width: 75%;
        max-height: 250px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }

    .neuro-assessment {
        padding: 80px 0;
    }
    
    .neuro-assessment-single {
        margin-top: 60px;
    }
    
    .neuro-assessment-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .neuro-assessment-icon-large i {
        font-size: 4rem;
        width: 140px;
        height: 140px;
    }
    
    .neuro-assessment-text h3 {
        font-size: 2rem;
    }
    
    .neuro-assessment-text p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, 
            var(--main-darkest) 0%, 
            var(--main-dark) 25%, 
            var(--main-primary) 50%, 
            var(--accent-warm) 75%, 
            var(--main-golden) 100%);
        background-size: 150% 150%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 6s ease-in-out infinite;
        text-shadow: 
            0 0 20px rgba(42, 42, 42, 0.3),
            0 0 40px rgba(58, 58, 58, 0.2);
    }
    
    .section-title-center {
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, 
            var(--main-darkest) 0%, 
            var(--main-dark) 25%, 
            var(--main-primary) 50%, 
            var(--accent-warm) 75%, 
            var(--main-golden) 100%);
        background-size: 150% 150%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 6s ease-in-out infinite;
        text-shadow: 
            0 0 20px rgba(42, 42, 42, 0.3),
            0 0 40px rgba(58, 58, 58, 0.2);
    }
    

    



    

    
    .about, .schedule {
        padding: 80px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        gap: 15px;
    }
    
    .footer-section-title {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        background: linear-gradient(135deg, 
            #2A2A2A 0%, 
            #3A3A3A 25%, 
            #4A4A4A 50%, 
            #6A6A6A 75%, 
            #2A2A2A 100%);
        background-size: 150% 150%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 6s ease-in-out infinite;
        text-shadow: 
            0 0 10px rgba(42, 42, 42, 0.3),
            0 0 20px rgba(42, 42, 42, 0.2);
    }
    
    .footer-contact {
        gap: 12px;
        margin: 20px 0;
    }
    
    .contact-item {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
    
    .social-link {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
    /* WhatsApp Responsivo */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float-text {
        display: none !important;
    }
    
    .whatsapp-mini-chat {
        width: 280px;
        right: 20px;
        bottom: 20px;
    }
    
    .chat-header {
        padding: 15px;
    }
    
    .chat-avatar {
        width: 40px;
        height: 40px;
    }
    
    .chat-info h4 {
        font-size: 1rem;
    }
    
    .chat-body {
        padding: 15px;
    }
    
    .chat-footer {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    :root {
        --header-height: 70px;
    }
    
    body {
        padding-top: var(--header-height);
    }
    
    .header {
        height: var(--header-height);
    }
    
    .nav-mobile {
        width: 80%;
        right: -80%;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 2rem;
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, 
            #2A2A2A 0%, 
            #4A4A4A 25%, 
            #6A6A6A 50%, 
            #8A8A8A 75%, 
            #A0A0A0 100%);
        background-size: 150% 150%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 6s ease-in-out infinite;
        text-shadow: 
            0 0 15px rgba(42, 42, 42, 0.3),
            0 0 30px rgba(58, 58, 58, 0.2);
    }
    
    .schedule-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, 
            var(--main-darkest) 0%, 
            var(--main-dark) 25%, 
            var(--main-primary) 50%, 
            var(--accent-warm) 75%, 
            var(--main-golden) 100%);
        background-size: 150% 150%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 6s ease-in-out infinite;
        text-shadow: 
            0 0 15px rgba(42, 42, 42, 0.3),
            0 0 30px rgba(58, 58, 58, 0.2);
    }
    
    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }

    .neuro-assessment {
        padding: 60px 0;
    }
    
    .neuro-assessment-content {
        gap: 40px;
    }
    
    .neuro-assessment-icon-large i {
        font-size: 3rem;
        width: 120px;
        height: 120px;
    }
    
    .neuro-assessment-text h3 {
        font-size: 1.8rem;
    }
    
    .neuro-assessment-text p {
        font-size: 1rem;
    }
    
    .section-divider {
        width: 60px;
        height: 3px;
    }
    
    .schedule-image img {
        max-width: 100%;
        max-height: 400px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .about-photo {
        max-width: 85%;
        min-height: 350px;
    }
    
    /* Ajustes específicos para versão mobile da seção about */
    .about-mobile .about-photo {
        max-width: 90%;
        min-height: 300px;
        margin: 20px auto;
    }
    
    /* WhatsApp Mobile 480px */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .whatsapp-mini-chat {
        width: 260px;
        right: 15px;
        bottom: 15px;
    }
    
    .chat-header {
        padding: 12px;
    }
    
    .chat-avatar {
        width: 35px;
        height: 35px;
    }
    
    .chat-info h4 {
        font-size: 0.9rem;
    }
    
    .chat-info span {
        font-size: 0.8rem;
    }
    
    .chat-body {
        padding: 12px;
    }
    
    .chat-footer {
        padding: 0 12px 12px;
    }
    
    .chat-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}