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

/* Variables - Paleta Turquesa Profissional e Moderna */
:root {
    /* Cores Principais */
    --primary-color: #25D366;
    --primary-hover: #20BA5A;
    --primary-light: #E8F5E8;
    
    /* Paleta Principal - Turquesa Profissional */
    --main-darkest: #0E7490;        /* Tom Escuro - Azul Marinho - títulos principais */
    --main-dark: #0891B2;           /* Tom Médio - Turquesa Vibrante - cor de destaque */
    --main-primary: #0E7490;        /* Tom Escuro - Azul Marinho - cor principal */
    --main-medium: #0891B2;         /* Tom Médio - Turquesa Vibrante */
    --main-warm: #0E7490;           /* Tom Escuro - Azul Marinho */
    --main-golden: #0891B2;         /* Tom Médio - Turquesa Vibrante */
    --main-golden-light: #0E7490;   /* Tom Escuro - Azul Marinho */
    --main-golden-soft: #0891B2;    /* Tom Médio - Turquesa Vibrante */
    --main-golden-pale: #0E7490;    /* Tom Escuro - Azul Marinho */
    --main-cream: #E0F2FE;          /* Tom Principal - Céu Claro */
    --main-whisper: #E0F2FE;        /* Tom Principal - Céu Claro */
    
    /* Cores de Texto baseadas na paleta principal */
    --text-primary: #0E7490;        /* Texto principal - Tom Escuro */
    --text-secondary: #0891B2;      /* Texto secundário - Tom Médio */
    --text-accent: #0E7490;         /* Texto de destaque - Tom Escuro */
    --text-muted: #0891B2;          /* Texto suave - Tom Médio */
    --text-light: #0E7490;          /* Texto claro - Tom Escuro */
    --text-white: #FFFFFF;
    
    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-light: #E0F2FE;    /* Tom Principal - Céu Claro */
    --background-soft: #E0F2FE;     /* Tom Principal - Céu Claro */
    --background-accent: #E0F2FE;   /* Tom Principal - Céu Claro */
    --background-hero: #E0F2FE;     /* Tom Principal - Céu Claro */
    
    /* Cores de Apoio - mantendo harmonia */
    --accent-warm: #0891B2;         /* Tom Médio - Turquesa Vibrante - para elementos especiais */
    --accent-cool: #0E7490;         /* Tom Escuro - Azul Marinho - para hover states */
    --accent-subtle: #0891B2;       /* Tom Médio - Turquesa Vibrante - para elementos sutis */
    --neutral-border: #E0F2FE;      /* Tom Principal - Céu Claro - para bordas */
    --neutral-shadow: #E0F2FE;      /* Tom Principal - Céu Claro - para sombras suaves */
    
    /* Sombras harmoniosas */
    --shadow-light: 0 2px 15px rgba(14, 116, 144, 0.08);
    --shadow-medium: 0 4px 25px rgba(14, 116, 144, 0.12);
    --shadow-strong: 0 8px 35px rgba(14, 116, 144, 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;
    margin: 0;
}

body.loaded {
    opacity: 1;
}

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

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
}

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

/* Para o mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
    
    .logo-img-valeria {
        height: 25px;
    }
}

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

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

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

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

.mobile-menu-header {
    background: #0E7490;
    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-valeria {
    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;
    animation: buttonFlash 3s ease-in-out infinite;
}

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

/* Hero Section - Design Avançado e Moderno */
.hero {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(224, 242, 254, 0.95) 25%,
        rgba(224, 242, 254, 0.9) 50%,
        rgba(224, 242, 254, 0.95) 75%,
        rgba(255, 255, 255, 1) 100%
    );
    color: var(--text-primary);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.08), rgba(8, 145, 178, 0.06));
    animation: float 20s infinite ease-in-out;
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: -5s;
}

.bg-shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: -10s;
}

.bg-shape-4 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 30%;
    animation-delay: -15s;
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 60px 0;
    min-height: 100vh;
}

/* Hero Left Side */
.hero-left {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-content {
    animation: fadeInLeft 1s ease-out;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(8, 145, 178, 0.1));
    border: 1px solid rgba(14, 116, 144, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.badge-icon i {
    font-size: 1.1rem;
    color: var(--main-dark);
}

.badge-text {
    font-weight: 600;
    color: var(--main-darkest);
    font-size: 0.95rem;
}

/* Hero Title */
.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    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;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-line-1 {
    animation-delay: 0.2s;
}

.title-line-2 {
    animation-delay: 0.4s;
}

.title-line-3 {
    animation-delay: 0.6s;
}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--main-dark), var(--main-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    animation: pulse 3s infinite;
}

.feature-text {
    font-weight: 600;
    color: var(--main-darkest);
    font-size: 0.95rem;
}

/* Hero CTA */
.hero-cta {
    margin-top: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.hero-attendance-info {
    margin-top: 20px;
    text-align: center;
}

.hero-attendance-info p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: var(--main-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.hero-attendance-info i {
    font-size: 1rem;
    color: var(--main-primary);
}

/* Hero Button */
.hero-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border: none;
    padding: 20px 40px;
    display: inline-block;
    transform: translateZ(0);
    transition: all 0.3s ease;
    animation: buttonFlash 3s ease-in-out infinite;
}

.hero-btn:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 20px 40px rgba(14, 116, 144, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

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

.hero-btn:hover .btn-glow {
    left: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-darkest);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Right Side */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.5s both;
    height: 100%;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Frame */
.image-frame {
    position: relative;
    width: 100%;
    max-height: 650px;
    aspect-ratio: 3/4;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(14, 116, 144, 0.25),
        0 20px 40px rgba(14, 116, 144, 0.15),
        0 10px 20px rgba(14, 116, 144, 0.1),
        0 0 0 1px rgba(14, 116, 144, 0.05);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
    box-shadow: 
        0 50px 100px rgba(14, 116, 144, 0.3),
        0 25px 50px rgba(14, 116, 144, 0.2),
        0 15px 30px rgba(14, 116, 144, 0.15),
        0 0 0 2px rgba(14, 116, 144, 0.1);
}

/* Image Background */
.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-gradient-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(224, 242, 254, 0.8) 0%,
        rgba(8, 145, 178, 0.1) 50%,
        rgba(14, 116, 144, 0.2) 100%
    );
}

.bg-gradient-2 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.bg-gradient-3 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite 2s;
}

/* Hero Photo */
.hero-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(14, 116, 144, 0.15));
    max-width: 100%;
    max-height: 100%;
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.overlay-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.overlay-shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.overlay-shape-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 10%;
    animation-delay: -5s;
}

.overlay-shape-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 20%;
    animation-delay: -10s;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 116, 144, 0.1);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(14, 116, 144, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease-out forwards;
}

.floating-card-1 {
    top: 10%;
    right: -15%;
    animation-delay: 1.5s;
}

.floating-card-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1.8s;
}

.floating-card-3 {
    top: 60%;
    right: -8%;
    animation-delay: 2.1s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--main-dark), var(--main-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 600;
    color: var(--main-darkest);
    font-size: 0.9rem;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design */
/* Desktop adjustments - make image smaller */
@media (min-width: 1025px) and (max-width: 1399px) {
    .hero-content {
        gap: 60px;
        padding: 90px 0;
        min-height: 100vh;
    }
    
    .title-line {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .image-frame {
        max-width: 450px;
        max-height: 600px;
    }
    
    .hero-photo {
        max-width: 400px;
        max-height: 560px;
    }
    
    .hero-left {
        max-width: 600px;
    }
}

@media (min-width: 1400px) {
    .hero-content {
        gap: 80px;
        padding: 120px 0;
        min-height: 100vh;
    }
    
    .title-line {
        font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    }
    
    .image-frame {
        max-width: 500px;
        max-height: 650px;
    }
    
    .hero-photo {
        max-width: 450px;
        max-height: 600px;
    }
    
    .hero-left {
        max-width: 650px;
    }
}

/* Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .image-frame {
        transform: none;
        max-width: 500px;
        max-height: 600px;
        margin: 0 auto;
    }
    
    .image-frame:hover {
        transform: scale(1.02);
    }
    
    .title-line {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 32px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .image-frame {
        transform: none;
        max-width: 480px;
        max-height: 650px;
        margin: 0 auto;
    }
    
    .image-frame:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 1200px) {
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 40px 0;
        gap: 40px;
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-badge {
        padding: 8px 16px;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .badge-icon i {
        font-size: 1rem;
    }
    
    .title-line {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .feature-item {
        flex-direction: row;
        gap: 8px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .image-frame {
        max-height: 480px;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .hero-photo {
        max-width: 340px;
        max-height: 440px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .bg-shape {
        display: none;
    }
    
    .hero-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
    
    .hero-attendance-info p {
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .hero-attendance-info i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 30px 0;
        gap: 30px;
        min-height: auto;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .badge-icon i {
        font-size: 0.9rem;
    }
    
    .title-line {
        font-size: clamp(1.6rem, 8vw, 2rem);
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-features {
        gap: 15px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }
    
    .feature-item {
        gap: 6px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .btn-text {
        font-size: 0.85rem;
    }
    
    .hero-attendance-info p {
        font-size: 0.85rem;
        gap: 5px;
    }
    
    .hero-attendance-info i {
        font-size: 0.85rem;
    }
    
    .image-frame {
        max-height: 420px;
        max-width: 320px;
    }
    
    .hero-photo {
        max-width: 280px;
        max-height: 380px;
    }
    
    .hero-mobile-image img {
        max-width: 300px;
    }
    
    .bg-shape {
        display: none;
    }
}

/* About Section - Design Moderno e Profissional */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(224, 242, 254, 0.3) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(224, 242, 254, 0.2) 100%
    );
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(8, 145, 178, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 116, 144, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(224, 242, 254, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Elementos flutuantes modernos */
.about-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.about-floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.about-floating-element-1 {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: 0s;
}

.about-floating-element-2 {
    top: 25%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: 2s;
}

.about-floating-element-3 {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(224, 242, 254, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: 4s;
}

.about-floating-element-4 {
    bottom: 30%;
    right: 10%;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: 1s;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, 
        rgba(8, 145, 178, 0.1) 0%,
        rgba(14, 116, 144, 0.05) 50%,
        rgba(224, 242, 254, 0.1) 100%
    );
    border-radius: 40px;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.about-photo {
    width: 100%;
    max-width: 420px;
    height: auto;
    min-height: 550px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(14, 116, 144, 0.2),
        0 10px 25px rgba(14, 116, 144, 0.1),
        0 0 0 1px rgba(14, 116, 144, 0.05);
    border: 3px solid rgba(14, 116, 144, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.about-photo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(14, 116, 144, 0.3),
        0 15px 35px rgba(14, 116, 144, 0.2),
        0 0 0 2px rgba(14, 116, 144, 0.1);
}

.about-text {
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Removido o traço vertical */

.section-title {
    font-size: 2.8rem;
    color: var(--main-darkest);
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    text-align: left;
    position: relative;
    line-height: 1.2;
    animation: fadeInLeft 1s ease-out 0.5s both;
}

/* Removido o traço horizontal */

.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;
    position: relative;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.about-description p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.about-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--main-primary);
    border-radius: 50%;
    opacity: 0.7;
}

/* Botão WhatsApp modernizado */
.about-text .btn-whatsapp {
    margin: 2.5rem 0 0;
    display: inline-flex;
    width: fit-content;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 
        0 10px 25px rgba(14, 116, 144, 0.2),
        0 5px 15px rgba(14, 116, 144, 0.1);
    transition: all 0.3s ease;
}

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

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

.about-text .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(14, 116, 144, 0.3),
        0 8px 20px rgba(14, 116, 144, 0.2);
}

/* 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) {
    .about {
        padding: 80px 0;
    }
    
    .about::before {
        background: 
            radial-gradient(circle at 20% 30%, rgba(8, 145, 178, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(14, 116, 144, 0.02) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(224, 242, 254, 0.05) 0%, transparent 50%);
    }
    
    .about-floating-element {
        display: none;
    }
    
    /* 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-image::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border-radius: 30px;
    }
    
    .about-text {
        order: 2;
        max-width: 100%;
        text-align: center;
    }
    
    /* Traço vertical já removido */
    
    .about-photo {
        max-width: 85%;
        min-height: 400px;
    }
    
    .about-description {
        text-align: center;
        max-width: 100%;
    }
    
    .about-description p {
        padding-left: 0;
        text-align: center;
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.3rem;
    }
    
    .about-description p::before {
        display: none;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.4rem;
    }
    
    /* Traço horizontal já removido */
    
    .section-divider {
        margin: 1.5rem auto;
        width: 60px;
        height: 3px;
    }
    
    .about-text .btn-whatsapp {
        margin: 2rem auto 0;
    }
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    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: 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;
}



/* 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: 80%;
    max-height: 350px;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

/* Mobile Image Section */
.schedule-mobile-image {
    display: none;
    margin: 30px 0;
    text-align: center;
}

/* Hero Mobile Image Below Title */
.hero-mobile-image {
    display: none;
    margin: 30px 0;
    text-align: center;
}

.hero-mobile-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(14, 116, 144, 0.15),
        0 5px 15px rgba(14, 116, 144, 0.1);
    transition: all 0.3s ease;
}

.hero-mobile-image img:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(14, 116, 144, 0.2),
        0 10px 25px rgba(14, 116, 144, 0.15);
}

.schedule-mobile-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(14, 116, 144, 0.15),
        0 5px 15px rgba(14, 116, 144, 0.1);
    transition: all 0.3s ease;
}

.schedule-mobile-image img:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(14, 116, 144, 0.2),
        0 10px 25px rgba(14, 116, 144, 0.15);
}

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

.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: 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: 6px;
    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;
    animation: buttonFlash 3s ease-in-out infinite;
}

.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%;
    animation: buttonFlash 3s ease-in-out infinite;
}

.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 slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(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;
    }
}

@keyframes buttonFlash {
    0%, 100% {
        box-shadow: 
            0 10px 25px rgba(14, 116, 144, 0.2),
            0 5px 15px rgba(14, 116, 144, 0.1),
            0 0 0 0 rgba(14, 116, 144, 0.7);
    }
    50% {
        box-shadow: 
            0 15px 35px rgba(14, 116, 144, 0.3),
            0 8px 20px rgba(14, 116, 144, 0.2),
            0 0 0 10px rgba(14, 116, 144, 0);
    }
}

/* 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(14, 116, 144, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(14, 116, 144, 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;
        max-width: 100%;
    }
    
    /* Header Mobile */
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    

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

    
    .schedule {
        padding: 80px 0;
    }
    
    .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;
    }
    
    .schedule-image img {
        max-width: 75%;
        max-height: 250px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .schedule-mobile-image {
        display: block;
    }
    
    .schedule-image {
        display: none;
    }
    
    .hero-mobile-image {
        display: block;
    }
    
    .hero-image-container {
        display: none;
    }
    
    .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;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        gap: 15px;
    }
    
    .footer-section-title {
        font-size: 1rem;
    }
    
    .footer-contact {
        gap: 2px;
        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) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-photo {
        max-width: 90%;
        min-height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-description p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    :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: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .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;
    }
    
    .schedule-image img {
        max-width: 70%;
        max-height: 200px;
        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;
    }
    
    .chat-avatar img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        object-position: top;
    }
}

/* Textos das seções principais mais escuros */
.main-content,
.about,
.benefits,
.schedule,
.hero,
.faq,
.section-title,
.section-title-center,
.section-divider,
.section-title-center h2,
.section-title h2,
.about p,
.benefits p,
.schedule p,
.hero p,
.faq p {
    color: #0E7490;
}

/* Ícones das seções principais mais escuros */
.benefit-icon i,
.about .contact-item i,
.benefits .contact-item i,
.schedule .contact-item i,
.benefits .social-link i,
.about .social-link i,
.schedule .social-link i {
    color: #0E7490;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(224, 242, 254, 0.3) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(224, 242, 254, 0.2) 100%
    );
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(8, 145, 178, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 116, 144, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(224, 242, 254, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--main-darkest);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 15px 35px rgba(14, 116, 144, 0.1),
        0 5px 15px rgba(14, 116, 144, 0.05);
    border: 1px solid rgba(14, 116, 144, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(14, 116, 144, 0.15),
        0 10px 25px rgba(14, 116, 144, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
    text-align: left;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(14, 116, 144, 0.1);
}

.author-name {
    font-weight: 600;
    color: var(--main-darkest);
    font-size: 1.1rem;
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--background-light);
}

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

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 60px;
}

.faq-item {
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--neutral-border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    background: var(--background-white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background-soft);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.faq-question i {
    font-size: 1rem;
    color: var(--main-primary);
    transition: var(--transition);
    min-width: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--background-soft);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 500;
}

.faq-cta .btn-whatsapp {
    margin: 0 auto;
    display: inline-flex;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
        font-size: 0.95rem;
    }
    
    .faq-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .faq-cta p {
        font-size: 1.1rem;
    }
}
