/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables - Paleta Burgundy Moderno Profissional */
:root {
    /* Cor Principal - Burgundy Moderno */
    --primary-color: #A8446B;
    --primary-hover: #8E3759;
    --primary-light: #C25A7F;
    --primary-lighter: #E5B8CA;
    --primary-pale: #F7E8ED;
    
    /* Cores Complementares (Teoria das Cores - Complementar Dividido) */
    --secondary-teal: #44A884;
    --secondary-sage: #6BA844;
    --secondary-forest: #2D7A5F;
    
    /* Cores Análogas (Harmonização Burgundy) */
    --burgundy-deep: #7D2D4A;
    --burgundy-wine: #5D1E35;
    --burgundy-plum: #9B4D6B;
    --burgundy-rose: #D4738F;
    
    /* Cores Neutras Sofisticadas */
    --neutral-charcoal: #2A2A2A;
    --neutral-graphite: #3E3E3E;
    --neutral-slate: #5A5A5A;
    --neutral-silver: #8B8B8B;
    --neutral-pearl: #BDBDBD;
    --neutral-cloud: #E8E8E8;
    --neutral-cream: #YanF5F5;
    --neutral-white: #FFFFFF;
    
    /* Cores de Apoio (Esquema Triádico) */
    --accent-gold: #C5A572;
    --accent-copper: #B8745A;
    --accent-bronze: #A6674A;
    
    /* Cores de Texto */
    --text-primary: #2A2A2A;
    --text-secondary: #3E3E3E;
    --text-light: #5A5A5A;
    --text-white: #FFFFFF;
    --text-burgundy: #7D2D4A;
    
    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-cream: #F9F7F6;
    --background-light: #F5F3F2;
    --background-soft: #F1EFEE;
    --background-hero: linear-gradient(135deg, #A8446B 0%, #7D2D4A 50%, #5D1E35 100%);
    --background-accent: #F7E8ED;
    --background-card: #FEFEFE;
    
    /* Gradientes Avançados */
    --gradient-primary: linear-gradient(135deg, #A8446B 0%, #C25A7F 100%);
    --gradient-secondary: linear-gradient(135deg, #44A884 0%, #6BA844 100%);
    --gradient-accent: linear-gradient(135deg, #C5A572 0%, #B8745A 100%);
    --gradient-hero: linear-gradient(135deg, 
        rgba(168, 68, 107, 0.95) 0%, 
        rgba(125, 45, 74, 0.9) 50%, 
        rgba(93, 30, 53, 0.95) 100%);
    
    /* Sombras com Burgundy */
    --shadow-light: 0 2px 15px rgba(168, 68, 107, 0.08);
    --shadow-medium: 0 4px 25px rgba(168, 68, 107, 0.12);
    --shadow-strong: 0 8px 35px rgba(168, 68, 107, 0.15);
    --shadow-burgundy: 0 6px 30px rgba(125, 45, 74, 0.2);
    
    /* WhatsApp mantém verde */
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20BA5A;
    
    /* Outros */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    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;
}

/* Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp-green);
    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(--whatsapp-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 */
.hero {
    background: var(--gradient-hero),
        radial-gradient(ellipse at center, rgba(194, 90, 127, 0.1) 0%, rgba(125, 45, 74, 0.05) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(168, 68, 107, 0.2) 0%, rgba(93, 30, 53, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.1;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
}

.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;
    opacity: 0.95;
    color: #f9f9f9;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-container {
    position: relative;
    display: inline-block;
}

.hero-photo {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.hero-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-photo-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
    animation: pulse 3s infinite;
}

.hero-photo-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
    border-radius: 50%;
    opacity: 0.7;
}

/* Video Player Styles - Enhanced Version */
.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 860px; /* Half of 1720px for 16:9 aspect ratio */
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-burgundy);
    background: var(--gradient-primary);
    cursor: pointer;
    transition: var(--transition);
    transform: perspective(1000px) rotateY(0deg);
    margin: 0 auto;
}

.hero-video-container:hover {
    transform: perspective(1000px) rotateY(-2deg) translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.hero-video-container.fullscreen {
    max-width: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #000;
    margin: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    background: #000;
    display: block;
    transition: border-radius 0.3s ease;
}

.hero-video-container.fullscreen .hero-video {
    border-radius: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(168, 68, 107, 0.4) 0%,
        rgba(125, 45, 74, 0.5) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px) saturate(180%);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

.play-button {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    animation: playButtonPulse 3s ease-in-out infinite;
    cursor: pointer;
}

.play-button:hover {
    background: var(--primary-light);
    transform: scale(1.15);
    box-shadow: var(--shadow-strong);
    animation: none;
}

.play-button:active {
    transform: scale(1.05);
    transition: transform 0.1s ease;
}

.play-pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary-pale);
    border-radius: 50%;
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.play-icon {
    width: 40px;
    height: 40px;
    color: var(--text-white);
    margin-left: 6px;
    transition: var(--transition);
}

.play-button:hover .play-icon {
    color: var(--text-white);
    transform: scale(1.1);
}

.video-title {
    text-align: center;
    color: var(--text-white);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.video-title h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.video-title span {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent,
        rgba(125, 45, 74, 0.4) 20%,
        rgba(93, 30, 53, 0.8) 100%
    );
    padding: 25px 20px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 0 0 var(--border-radius-large) var(--border-radius-large);
    backdrop-filter: blur(10px);
}

.video-controls.visible {
    opacity: 1;
    transform: translateY(0);
}

.control-btn {
    background: var(--primary-lighter);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.control-btn:hover {
    background: var(--primary-light);
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.control-btn:active {
    transform: scale(0.95);
}

.pause-icon,
.volume-icon,
.fullscreen-icon {
    width: 20px;
    height: 20px;
    color: var(--text-white);
    transition: var(--transition);
}

.control-btn:hover .pause-icon,
.control-btn:hover .volume-icon,
.control-btn:hover .fullscreen-icon {
    color: var(--text-white);
}

.progress-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.progress-container:hover {
    height: 10px;
    background: rgba(255, 255, 255, 0.35);
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--primary-light);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-container:hover .progress-bar::after {
    opacity: 1;
}

.time-display {
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 85px;
    text-align: right;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

/* Animations */
@keyframes playButtonPulse {
    0%, 100% {
        box-shadow: var(--shadow-medium);
    }
    50% {
        box-shadow: var(--shadow-strong);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Volume Control States */
.control-btn.muted .volume-icon {
    color: var(--primary-hover);
}

.control-btn.muted:hover .volume-icon {
    color: var(--burgundy-deep);
}

/* Loading State */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-white);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design for Video Player */
@media (max-width: 768px) {
    .hero-video-container {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .hero-video-container:hover {
        transform: translateY(-4px);
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .play-icon {
        width: 32px;
        height: 32px;
        margin-left: 4px;
    }
    
    .video-title h3 {
        font-size: 1.3rem;
    }
    
    .video-title span {
        font-size: 0.9rem;
    }
    
    .video-controls {
        padding: 20px 16px 14px;
        gap: 12px;
        border-radius: 0 0 16px 16px;
    }
    
    .control-btn {
        width: 38px;
        height: 38px;
    }
    
    .pause-icon,
    .volume-icon,
    .fullscreen-icon {
        width: 18px;
        height: 18px;
    }
    
    .progress-container {
        height: 6px;
    }
    
    .progress-container:hover {
        height: 8px;
    }
    
    .time-display {
        font-size: 0.75rem;
        min-width: 75px;
    }
    
    .play-pulse-ring {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
}

@media (max-width: 480px) {
    .play-button {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .play-icon {
        width: 24px;
        height: 24px;
    }
    
    .video-title h3 {
        font-size: 1.1rem;
    }
    
    .video-title span {
        font-size: 0.8rem;
    }
    
    .video-controls {
        padding: 16px 12px 12px;
        gap: 8px;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .pause-icon,
    .volume-icon,
    .fullscreen-icon {
        width: 16px;
        height: 16px;
    }
    
    .time-display {
        font-size: 0.7rem;
        min-width: 65px;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--background-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: var(--gradient-primary);
    margin: 2rem 0;
    border-radius: 2px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.about-description p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-burgundy);
}

/* 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-card);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--neutral-cloud);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-burgundy);
    border-color: var(--primary-lighter);
}

.benefit-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    background: var(--primary-pale);
    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(--text-white);
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    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(--primary-color);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Treatment Section */
.treatment {
    padding: 120px 0;
    background: var(--background-accent);
    text-align: center;
}

.treatment .section-title-center {
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.treatment-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.treatment-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.8;
}

/* 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: 3rem;
    color: var(--primary-color);
    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;
}

.schedule-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-burgundy);
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 60px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.9;
    color: var(--text-white);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp-green);
    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(--whatsapp-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: 100px;
    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(--whatsapp-green);
    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);
}

.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: #f0f0f0;
    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(--whatsapp-green);
    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(--whatsapp-hover);
    transform: translateY(-1px);
}

.chat-btn .whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* Animations */
@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);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation Classes */
.animate-fade-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .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: 2.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
        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: 90%;
        height: 100%;
    }
    
    .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: 2.5rem;
        text-align: center;
        width: 100%;
    }
    
    .schedule-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .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, .treatment {
        padding: 80px 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        padding: 12px 16px;
    }
    
    .whatsapp-float-text {
        display: none !important;
    }
    
    .whatsapp-mini-chat {
        width: 280px;
        right: 20px;
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .schedule-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        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;
    }
    
    .treatment-content p {
        text-align: center;
        font-size: 1.05rem;
    }
    
    .section-divider {
        width: 60px;
        height: 3px;
    }
}