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

/* 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: 'Inter', -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.3s ease-in;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
    padding: 0 20px;
}

/* 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;
    gap: 15px;
}

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

.logo-img-queli {
    height: 25px;
    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-img-queli {
        height: 25px;
    }
    
    /* Header Logo/Title Section - Mobile */
    .header-title {
        font-size: 1.2rem;
    }
    
    .header-subtitle {
        font-size: 0.75rem;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    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);
}

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

/* Header Logo/Title Section */
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    line-height: 1.2;
}

.header-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-white);
    margin: 0;
    opacity: 0.9;
    line-height: 1.2;
}

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



/* 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-img-queli {
    height: 25px;
    width: auto;
    object-fit: contain;
    align-self: center;
}



.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: 'Inter', sans-serif;
}

.btn-whatsapp:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

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

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Hero Section - Fundo azul profissional e moderno com técnicas 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;
}

/* 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 25s infinite ease-in-out;
    z-index: 1;
    filter: blur(1px);
}

.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 30s infinite ease-in-out reverse;
    z-index: 1;
    filter: blur(0.5px);
}

/* 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.2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: var(--main-darkest);
    text-shadow: none;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--main-darkest) 0%, var(--main-dark) 50%, var(--main-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.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 {
    position: relative;
    display: inline-block;
}

.hero-photo {
    width: auto;
    height: auto;
    max-width: 400px;
    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);
    border: 2px solid rgba(19, 46, 75, 0.2);
    transition: var(--transition);
}

.hero-photo:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(19, 46, 75, 0.2),
        0 10px 25px rgba(19, 46, 75, 0.15);
}

.hero-photo-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: 
        conic-gradient(from 45deg, 
            var(--accent-warm), 
            var(--main-golden-light), 
            var(--accent-warm)
        );
    border-radius: 50%;
    opacity: 0.7;
    z-index: -1;
    animation: rotate 15s infinite linear;
}

.hero-photo-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle, 
            var(--main-golden-pale) 0%, 
            var(--accent-cool) 70%, 
            transparent 100%
        );
    border-radius: 50%;
    opacity: 0.8;
}

/* About Section - Com imagem e texto lado a lado */
.about {
    padding: 120px 0;
    background: var(--background-white);
}

.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 {
    width: 60%;
    max-width: 380px;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(19, 46, 75, 0.1);
    transition: var(--transition);
}

.about-photo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

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

.section-title {
    font-size: 2.6rem;
    color: var(--main-darkest);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

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

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

/* Responsive para mobile */
@media (max-width: 768px) {
    /* Esconder versão desktop e mostrar versão mobile */
    .about-desktop {
        display: none;
    }
    
    .about-mobile {
        display: block;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 0 15px;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-text {
        order: 2;
        max-width: 100%;
        text-align: center;
    }
    
    .about-photo {
        max-width: 85%;
        min-height: 400px;
    }
    
    .about-description {
        text-align: center;
        max-width: 100%;
    }
    
    .section-divider {
        margin: 1.5rem auto;
        width: 60px;
        height: 3px;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--background-light);
}

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

.benefits-description {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: var(--background-soft);
    border-radius: var(--border-radius);
    border: 1px solid var(--neutral-border);
}

.benefits-description p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

.benefit-card {
    background: var(--background-white);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--neutral-border);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-warm);
}

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

.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: var(--transition);
}

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

.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;
    color: var(--main-darkest);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}



/* Stories Section */
.stories {
    padding: 80px 0;
    background: var(--background-light);
}

.stories-slider {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    overflow: hidden;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-strong);
}

.stories-slide {
    display: none;
    width: 100%;
    height: auto;
    position: relative;
}

.stories-slide.active {
    display: block;
}

.story-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    max-height: 500px;
}

.stories-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.stories-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--main-primary);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.stories-nav-btn:hover {
    background: var(--main-primary);
    color: white;
    transform: scale(1.1);
}

.stories-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.stories-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.stories-dot.active,
.stories-dot:hover {
    background: var(--main-primary);
    transform: scale(1.2);
}

.stories-text {
    text-align: center;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stories-text p {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

/* Schedule Section */
.schedule {
    padding: 120px 0;
    background: var(--background-white);
}

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

.schedule-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 1rem;
    color: var(--main-darkest);
    font-family: 'Playfair Display', serif;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    font-weight: 600;
}

.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-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.schedule-text .btn-whatsapp {
    margin-top: 30px;
    margin-bottom: 30px;
}

.schedule-info {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--background-soft);
    border-radius: var(--border-radius);
    border: 1px solid var(--neutral-border);
    color: var(--text-primary);
    font-size: 1rem;
}



/* Footer */
.footer {
    background: var(--main-primary);
    color: var(--text-white);
    padding: 60px 0 30px;
    text-align: center;
}

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

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

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

@media (min-width: 769px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

.footer-section-title {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-float.hidden {
    opacity: 0;
    visibility: hidden;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.whatsapp-float-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.whatsapp-float-text {
    display: none;
}

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

/* WhatsApp Mini Chat */
.whatsapp-mini-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    display: none;
}

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

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    object-fit: cover;
    object-position: top;
}

.chat-info h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-info span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

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

.chat-body {
    padding: 20px;
}

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

.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: 8px;
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.chat-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

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

/* Animações Avançadas */
@keyframes morphFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.05);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(0.95);
        border-radius: 70% 30% 40% 60% / 50% 60% 40% 50%;
    }
    75% {
        transform: translateY(-40px) 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 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);
}

/* Chat Animation Keyframes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Chat Animation Classes */
.chat-slide-in {
    animation: slideInUp 0.5s ease-out;
}

.chat-slide-out {
    animation: slideOutDown 0.3s ease-in;
}

/* WhatsApp Button Click Animation */
.whatsapp-btn-click {
    transform: scale(0.95);
    transition: transform 0.15s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* 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: clamp(2rem, 4.5vw, 2.5rem);
        margin-bottom: 2.5rem;
        text-align: center;
        width: 100%;
        line-height: 1.3;
        max-width: 100%;
    }
    
    .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: 500px;
    }
    
    .hero-photo-decoration {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }
    
    .hero-photo-decoration::before {
        width: 50px;
        height: 50px;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    

    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    

    
    .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%;
    }
    
    .schedule-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    /* Stories Section Mobile */
    .stories {
        padding: 60px 0;
    }
    
    .stories-slider {
        max-width: 100%;
        margin: 40px auto;
    }
    
    .stories-slide {
        height: auto;
    }
    
    .stories-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stories-text p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .schedule-image img {
        max-width: 100%;
        max-height: 400px;
        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;
    }
    
    .section-title-center {
        font-size: 2.2rem;
    }
    
    .about, .schedule {
        padding: 80px 0;
    }
    

    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 20px;
    }
    
    .footer-section {
        gap: 15px;
    }
    
    .footer-section-title {
        font-size: 1rem;
    }
    
    .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-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float.hidden {
        opacity: 0;
        visibility: hidden;
    }
    
    .whatsapp-float-btn {
        padding: 12px 16px;
    }
    
    .whatsapp-float-text {
        display: none !important;
    }
    
    .whatsapp-mini-chat {
        width: 280px;
        right: 20px;
        bottom: 30px;
    }
    
    .chat-avatar img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        object-position: top;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }
    
    body {
        padding-top: var(--header-height);
    }
    
    .header {
        height: var(--header-height);
    }
    
    /* Header Logo/Title Section - Very Small Mobile */
    .header-title {
        font-size: 1rem;
    }
    
    .header-subtitle {
        font-size: 0.7rem;
    }
    

    
    .nav-mobile {
        width: 80%;
        right: -80%;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: 2rem;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .schedule-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }
    
    .hero-photo-decoration {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }
    
    .hero-photo-decoration::before {
        width: 40px;
        height: 40px;
    }
    
    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .section-divider {
        width: 60px;
        height: 3px;
    }
    
    .about-photo {
        max-width: 60%;
        min-height: 350px;
    }
    
    /* Stories Section Very Small Mobile */
    .stories-slide {
        height: auto;
    }
    
    .stories-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .stories-text p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Ajustes específicos para versão mobile da seção about */
    .about-mobile .about-photo {
        max-width: 70%;
        min-height: 300px;
        margin: 20px auto;
    }
    
    .chat-avatar img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        object-position: top;
    }
}