/* 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,
.partners,
.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,
.partner-card,
.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 Azul Profissional e Moderna */
:root {
    /* Cores Principais */
    --primary-color: #25D366;
    --primary-hover: #20BA5A;
    --primary-light: #E8F5E8;
    
    /* Paleta Principal - Azul Profissional */
    --main-darkest: #0a1a2e;        /* Azul muito escuro - títulos principais */
    --main-dark: #132e4b;           /* Azul escuro - cor de destaque */
    --main-primary: #1e4a6b;        /* Azul principal */
    --main-medium: #2a5a7a;         /* Azul médio */
    --main-warm: #3a6b8a;           /* Azul aquecido */
    --main-golden: #4a7c9a;         /* Azul dourado */
    --main-golden-light: #5a8daa;   /* Azul dourado claro */
    --main-golden-soft: #6a9eba;    /* Azul dourado suave */
    --main-golden-pale: #7aafca;    /* Azul dourado pálido */
    --main-cream: #e8f2f8;          /* Azul creme */
    --main-whisper: #f5f9fc;        /* Tom sussurro azulado */
    
    /* Cores de Texto baseadas na paleta principal */
    --text-primary: #0a1a2e;        /* Texto principal - azul muito escuro */
    --text-secondary: #132e4b;      /* Texto secundário */
    --text-accent: #1e4a6b;         /* Texto de destaque */
    --text-muted: #2a5a7a;          /* Texto suave */
    --text-light: #3a6b8a;          /* Texto claro */
    --text-white: #FFFFFF;
    
    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-light: #f5f9fc;    /* Whisper azulado */
    --background-soft: #e8f2f8;     /* Creme azulado */
    --background-accent: #d4e6f2;   /* Azul pálido */
    --background-hero: #132e4b;     /* Azul escuro - cor de destaque */
    
    /* Cores de Apoio - mantendo harmonia */
    --accent-warm: #4a7c9a;         /* Azul dourado - para elementos especiais */
    --accent-cool: #5a8daa;         /* Azul dourado claro - para hover states */
    --accent-subtle: #6a9eba;       /* Azul dourado suave - para elementos sutis */
    --neutral-border: #b8d4e6;      /* Azul pálido - para bordas */
    --neutral-shadow: #e8f2f8;      /* Creme azulado - para sombras suaves */
    
    /* Sombras harmoniosas */
    --shadow-light: 0 2px 15px rgba(19, 46, 75, 0.08);
    --shadow-medium: 0 4px 25px rgba(19, 46, 75, 0.12);
    --shadow-strong: 0 8px 35px rgba(19, 46, 75, 0.15);
    
    /* 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;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    align-self: center;
}



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

    .logo-img {
        height: 45px;
    }
    
    .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(--main-primary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 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: #dec1b9;
    line-height: 1.2;
    text-align: left;
}

.logo-crp {
    font-size: 16px;
    font-weight: 500;
    color: #dec1b9;
    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-white);
    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-white);
    background: rgba(255, 255, 255, 0.15);
}



/* 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(255, 255, 255, 0.15);
}

.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(68, 39, 20, 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(68, 39, 20, 0.2);
    z-index: 999;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.mobile-menu-header {
    background: #1e4a6b;
    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-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    align-self: center;
}

.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(--background-white);
}

.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(--main-primary);
    background: var(--background-soft);
    border-left-color: var(--main-primary);
}

.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-white);
    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(37, 211, 102, 0.3);
}

.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(245, 249, 252, 0.98) 25%,
            rgba(232, 242, 248, 0.95) 50%,
            rgba(245, 249, 252, 0.98) 75%,
            rgba(255, 255, 255, 1) 100%
        ),
        /* Overlay com formas geométricas azuis */
        radial-gradient(ellipse 1200px 800px at 20% 40%, rgba(19, 46, 75, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 800px 600px at 80% 60%, rgba(30, 74, 107, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 400px at 60% 80%, rgba(74, 124, 154, 0.05) 0%, transparent 60%),
        /* Padrão de profundidade azul */
        conic-gradient(from 45deg at 30% 20%, rgba(19, 46, 75, 0.03) 0deg, transparent 90deg, rgba(30, 74, 107, 0.02) 180deg, transparent 270deg),
        /* Grid profissional sutil azul */
        linear-gradient(90deg, rgba(19, 46, 75, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(19, 46, 75, 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(19, 46, 75, 0.08), rgba(30, 74, 107, 0.05), rgba(19, 46, 75, 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, 124, 154, 0.06) 0%, 
            rgba(19, 46, 75, 0.08) 50%, 
            rgba(30, 74, 107, 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(19, 46, 75, 0.1) 0%, 
            rgba(19, 46, 75, 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(30, 74, 107, 0.08) 0%, 
            rgba(74, 124, 154, 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: 3rem;
    line-height: 1.1;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    position: relative;
    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: 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(19, 46, 75, 0.3),
        0 0 60px rgba(30, 74, 107, 0.2);
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
    /* Otimização de performance */
    transform: translateZ(0);
    will-change: background-position;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(74, 124, 154, 0.1) 50%, 
        transparent 70%);
    background-size: 200% 200%;
    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, 124, 154, 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(90, 141, 170, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(74, 124, 154, 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(19, 46, 75, 0.15),
        0 5px 15px rgba(19, 46, 75, 0.1),
        inset 0 0 80px rgba(74, 124, 154, 0.1);
    border: 2px solid rgba(19, 46, 75, 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(90, 141, 170, 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(19, 46, 75, 0.2),
        0 10px 25px rgba(19, 46, 75, 0.15),
        inset 0 0 100px rgba(74, 124, 154, 0.15);
}



/* Overlay com gradiente animado */
.hero-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(30, 74, 107, 0.3) 0%, 
        transparent 40%,
        transparent 60%,
        rgba(74, 124, 154, 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 3s 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(90, 141, 170, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(122, 175, 202, 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(19, 46, 75, 0.05);
    border: 2px solid rgba(19, 46, 75, 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(19, 46, 75, 0.2),
        inset 0 0 70px rgba(19, 46, 75, 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(19, 46, 75, 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(--main-darkest) 0%, 
        var(--main-dark) 25%, 
        var(--main-primary) 50%, 
        var(--accent-warm) 75%, 
        var(--main-golden) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 
        0 0 25px rgba(19, 46, 75, 0.3),
        0 0 50px rgba(30, 74, 107, 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, 124, 154, 0.08) 50%, 
        transparent 70%);
    background-size: 200% 200%;
    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, 124, 154, 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: var(--background-white);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-border);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-primary), var(--accent-warm));
    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(19, 46, 75, 0.15);
    border-color: var(--accent-warm);
}

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

.benefit-icon i {
    font-size: 3rem;
    color: var(--main-primary);
    background: var(--main-whisper);
    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;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: var(--accent-cool);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 1;
}

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

.benefit-card:hover .benefit-icon i {
    color: var(--main-dark);
    background: var(--accent-cool);
    transform: rotateY(360deg);
}

.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(--main-darkest) 0%, 
        var(--main-dark) 25%, 
        var(--main-primary) 50%, 
        var(--accent-warm) 75%, 
        var(--main-golden) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 
        0 0 25px rgba(19, 46, 75, 0.3),
        0 0 50px rgba(30, 74, 107, 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, 124, 154, 0.08) 50%, 
        transparent 70%);
    background-size: 200% 200%;
    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, 124, 154, 0.08) 0%, 
        transparent 70%);
    animation: lightPulse 6s ease-in-out infinite;
    z-index: -2;
    border-radius: 50%;
}

/* Partners Section com Hover Effects */
.partners {
    padding: 80px 0;
    background-color: var(--background-white);
    position: relative;
    transform: none !important;
}

.partners-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 20px 0 40px 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Partners Scroll Container */
.partners-scroll-container {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    position: relative;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(19, 46, 75, 0.05) 10%, 
        rgba(19, 46, 75, 0.05) 90%, 
        transparent 100%
    );
    border-radius: var(--border-radius);
    padding: 20px 0;
}

.partners-scroll-container::before,
.partners-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll-container::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 100%
    );
}

.partners-scroll-container::after {
    right: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 1) 100%
    );
}

.partners-scroll-track {
    display: flex;
    gap: 30px;
    animation: scrollPartners 40s linear infinite;
    width: max-content;
    /* Otimização de performance */
    transform: translateZ(0);
    will-change: transform;
}

.partners-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    background: transparent;
    padding: 40px 30px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    min-height: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.partner-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.partner-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
    padding: 0;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.partner-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    white-space: pre-line;
}

/* 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(--main-darkest) 0%, 
        var(--main-dark) 25%, 
        var(--main-primary) 50%, 
        var(--accent-warm) 75%, 
        var(--main-golden) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 
        0 0 25px rgba(19, 46, 75, 0.3),
        0 0 50px rgba(30, 74, 107, 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, 124, 154, 0.08) 50%, 
        transparent 70%);
    background-size: 200% 200%;
    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, 124, 154, 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(90, 141, 170, 0.2) 0deg,
            transparent 60deg,
            transparent 120deg,
            rgba(122, 175, 202, 0.2) 180deg,
            transparent 240deg,
            transparent 300deg,
            rgba(90, 141, 170, 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(90, 141, 170, 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(19, 46, 75, 0.2),
        0 0 60px rgba(90, 141, 170, 0.15);
}

/* Overlay com gradiente suave */
.schedule-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(19, 46, 75, 0.1) 0%, 
        transparent 50%,
        rgba(74, 124, 154, 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-white);
    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-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #e8f2f8 25%, 
        #d4e6f2 50%, 
        #b8d4e6 75%, 
        #9bc2da 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 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: 200% 200%;
    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-soft);
    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-white);
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 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(--accent-soft);
    min-width: 20px;
    opacity: 0.9;
}

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

.contact-item a:hover {
    color: var(--accent-soft);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-copyright p {
    margin: 0;
    opacity: 0.8;
    color: var(--text-white);
    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);
}

/* Efeito de luz nos logos dos parceiros */
.partner-logo {
    position: relative;
    overflow: hidden;
}

.partner-logo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%
    );
    animation: lightSweepSlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightSweepSlow {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%);
    }
    50% {
        transform: translateX(100%) translateY(100%);
    }
}

@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: 100% 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-fade-in {
    animation: fadeInDown 0.8s ease-out;
}

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

/* Header Scroll Effect */
.header.scrolled {
    background: rgba(30, 74, 107, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(19, 46, 75, 0.15);
}

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

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



/* 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-white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    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(37, 211, 102, 0.4);
}

.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: white;
    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: white;
    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: white;
    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: white;
    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(37, 211, 102, 0.3);
}

.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);
    }
}

/* Partners CTA Button */
.partners-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-partnerships {
    background: transparent;
    color: var(--main-primary);
    border: 2px solid var(--main-primary);
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-partnerships::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--main-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-partnerships:hover::before {
    left: 0;
}

.btn-partnerships:hover {
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(19, 46, 75, 0.15);
}

    .btn-partnerships i {
        font-size: 1rem;
    }

    /* Reviews Section */
    .reviews {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 50%, #f0f4ff 100%);
        position: relative;
        overflow: hidden;
    }

    .reviews::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="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e8f0ff" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
        opacity: 0.5;
        pointer-events: none;
    }

    .reviews-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--text-secondary);
        margin-bottom: 50px;
        font-weight: 400;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .review-card {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .review-card:hover::before {
        transform: scaleX(1);
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .reviewer-info h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 8px;
        font-family: 'Source Sans Pro', sans-serif;
    }

    .stars {
        display: flex;
        gap: 2px;
    }

    .stars i {
        color: #FFD700;
        font-size: 1.1rem;
        filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.3));
    }

    .review-content {
        position: relative;
    }

    .review-content::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: -5px;
        font-size: 4rem;
        color: var(--primary-color);
        opacity: 0.2;
        font-family: 'Playfair Display', serif;
        line-height: 1;
    }

    .review-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-secondary);
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .review-content p:last-child {
        margin-bottom: 0;
    }

    .reviews-cta {
        text-align: center;
        margin-top: 40px;
    }

    .btn-reviews {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #ffffff;
        color: #5f6368;
        padding: 12px 24px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        font-family: 'Roboto', 'Arial', sans-serif;
        transition: all 0.2s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        border: 1px solid #dadce0;
        position: relative;
        overflow: hidden;
        letter-spacing: 0.25px;
    }

    .btn-reviews::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.04);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .btn-reviews:hover::before {
        opacity: 1;
    }

    .btn-reviews:hover {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.32);
        border-color: #c6c6c6;
    }

    .btn-reviews:active {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        transform: translateY(1px);
    }

    .btn-reviews i {
        font-size: 18px;
        color: #4285f4;
    }

    /* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: var(--background-white);
    border-radius: var(--border-radius-large);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-large);
    position: relative;
    animation: slideInUp 0.3s ease-out;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.popup-header h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--background-light);
    color: var(--text-dark);
}

.popup-body {
    padding: 30px;
}

.popup-body .partnerships-text {
    margin-bottom: 30px;
}

.popup-body .partnerships-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.popup-body .partnerships-text p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* 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(90, 141, 170, 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(90, 141, 170, 0.1),
            transparent,
            rgba(122, 175, 202, 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;
    }
    
    .partners-scroll-track {
        animation-duration: 50s;
    }
    
    .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,
    .partners-scroll-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .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: 80px 0 60px;
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 2.5rem;
        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: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        text-shadow: 
            0 0 20px rgba(19, 46, 75, 0.3),
            0 0 40px rgba(30, 74, 107, 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: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        text-shadow: 
            0 0 20px rgba(19, 46, 75, 0.3),
            0 0 40px rgba(30, 74, 107, 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;
    }
    
    .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: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        text-shadow: 
            0 0 20px rgba(19, 46, 75, 0.3),
            0 0 40px rgba(30, 74, 107, 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: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        text-shadow: 
            0 0 20px rgba(19, 46, 75, 0.3),
            0 0 40px rgba(30, 74, 107, 0.2);
    }
    
    .partners-scroll-container {
        margin-top: 40px;
        padding: 15px 0;
    }
    
    .partners-scroll-track {
        gap: 20px;
        animation: scrollPartners 25s linear infinite;
    }
    
    .partner-card {
        min-width: 180px;
        min-height: 180px;
        padding: 30px 25px;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 12px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .partners-subtitle {
        font-size: 1rem;
        margin: 15px 0 30px 0;
        padding: 0 20px;
    }

    .reviews {
        padding: 60px 0;
    }

    .reviews-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .review-card {
        padding: 25px;
    }

    .reviewer-info h3 {
        font-size: 1.2rem;
    }

    .stars i {
        font-size: 1rem;
    }

    .review-content::before {
        font-size: 3rem;
        top: -8px;
        left: -3px;
    }

    .review-content p {
        font-size: 0.95rem;
    }

    .btn-reviews {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-reviews i {
        font-size: 16px;
    }
    
    .partners-scroll-container {
        margin-top: 30px;
        padding: 10px 0;
    }
    
    .partners-scroll-track {
        gap: 15px;
        animation: scrollPartners 20s linear infinite;
    }
    
    .partner-card {
        min-width: 160px;
        min-height: 160px;
        padding: 25px 20px;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .partner-card h3 {
        font-size: 0.85rem;
    }
    
    .partner-card h3 {
        font-size: 1rem;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
    }
    
    .business-partnerships {
        padding: 60px 0;
    }
    
    .partnerships-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .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, 
            #ffffff 0%, 
            #e8f2f8 25%, 
            #d4e6f2 50%, 
            #b8d4e6 75%, 
            #9bc2da 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 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;
    }
    

    
    /* Responsive Popup */
    .popup-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .popup-header {
        padding: 20px 20px 15px;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .popup-body .partnerships-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .btn-partnerships {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-partnerships i {
        font-size: 0.95rem;
    }
    
    /* 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, 
            var(--main-darkest) 0%, 
            var(--main-dark) 25%, 
            var(--main-primary) 50%, 
            var(--accent-warm) 75%, 
            var(--main-golden) 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        text-shadow: 
            0 0 15px rgba(19, 46, 75, 0.3),
            0 0 30px rgba(30, 74, 107, 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: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        text-shadow: 
            0 0 15px rgba(19, 46, 75, 0.3),
            0 0 30px rgba(30, 74, 107, 0.2);
    }
    
    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .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;
    }

    .reviews {
        padding: 50px 0;
    }

    .reviews-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .review-card {
        padding: 20px;
    }

    .reviewer-info h3 {
        font-size: 1.1rem;
    }

    .stars i {
        font-size: 0.9rem;
    }

    .review-content::before {
        font-size: 2.5rem;
        top: -5px;
        left: -2px;
    }

    .review-content p {
        font-size: 0.9rem;
    }

    .btn-reviews {
        padding: 8px 16px;
        font-size: 12px;
    }

    .btn-reviews i {
        font-size: 14px;
    }

    .partner-logo {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        overflow: hidden;
    }

    .partner-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
}
