/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Importar fonte clean e arredondada */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variables - Paleta harmoniosa baseada em Verde Tiffany #00E5D4 */
:root {
    /* Verde Tiffany - Cor Principal */
    --primary-color: #00E5D4;
    --primary-hover: #00C7B8;
    --primary-light: #E0FFFE;
    
    /* Paleta Verde Tiffany Harmoniosa */
    --main-darkest: #004A45;         /* Tom mais escuro - títulos principais */
    --main-dark: #006B63;            /* Tom escuro - elementos importantes */
    --main-primary: #00E5D4;         /* Cor principal - Verde Tiffany */
    --main-medium: #1AEADB;          /* Tom médio */
    --main-light: #4DEEE2;           /* Tom claro */
    --main-lighter: #80F3EA;         /* Tom mais claro */
    --main-soft: #B3F7F1;           /* Tom suave */
    --main-pale: #D9FBF8;           /* Tom pálido */
    --main-very-pale: #ECFEFC;      /* Tom muito pálido */
    --main-whisper: #F5FFFE;        /* Tom sussurro */
    
    /* Cinzas Harmoniosos */
    --gray-darkest: #2C3E50;        /* Cinza mais escuro - texto principal */
    --gray-dark: #34495E;           /* Cinza escuro - texto secundário */
    --gray-medium: #5D6D7E;         /* Cinza médio */
    --gray-light: #85929E;          /* Cinza claro */
    --gray-lighter: #AEB6BF;        /* Cinza mais claro */
    --gray-soft: #D5DBDB;           /* Cinza suave */
    --gray-pale: #E8EAED;           /* Cinza pálido */
    --gray-very-pale: #F4F6F7;     /* Cinza muito pálido */
    --gray-whisper: #FAFBFC;        /* Cinza sussurro */
    
    /* Cores de Texto */
    --text-primary: #2C3E50;        /* Texto principal - cinza escuro */
    --text-secondary: #34495E;      /* Texto secundário */
    --text-light: #5D6D7E;          /* Texto claro */
    --text-muted: #85929E;          /* Texto suave */
    --text-white: #FFFFFF;
    
    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-light: #F5FFFE;    /* Whisper */
    --background-soft: #ECFEFC;     /* Very pale */
    --background-accent: #D9FBF8;   /* Pale */
    --background-hero: #00E5D4;     /* Primary */
    --background-gray-light: #FAFBFC; /* Gray whisper */
    --background-gray-soft: #F4F6F7;  /* Gray very pale */
    
    /* Cores de Apoio */
    --accent-warm: #4DEEE2;         /* Light - para elementos especiais */
    --accent-cool: #80F3EA;         /* Lighter - para hover states */
    --neutral-border: #D9FBF8;      /* Pale - para bordas */
    --neutral-shadow: #ECFEFC;      /* Very pale - para sombras suaves */
    --gray-border: #E8EAED;         /* Gray опубликов
    /* Cores de destaque para melhor contraste */
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20BA5A;
    --card-white: #FFFFFF;
    --card-shadow: rgba(44, 62, 80, 0.08);
    --card-shadow-hover: rgba(44, 62, 80, 0.15);
    
    /* Sombras harmoniosas */
    --shadow-light: 0 2px 15px rgba(0, 229, 212, 0.08);
    --shadow-medium: 0 4px 25px rgba(0, 229, 212, 0.12);
    --shadow-strong: 0 8px 35px rgba(0, 229, 212, 0.15);
    --shadow-gray: 0 2px 15px rgba(44, 62, 80, 0.08);
    --shadow-gray-medium: 0 4px 25px rgba(44, 62, 80, 0.10);
    
    /* Outros */
    --border-radius: 16px;
    --border-radius-large: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    font-family: 'Nunito', -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: 'Poppins', sans-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: 600;
}
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: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-center {
    display: flex;
    justify-content: center;
    margin: 3rem auto 0;
    width: fit-content;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hero Section - Verde Tiffany elegante */
.hero {
    background: linear-gradient(135deg, 
        var(--main-primary) 0%, 
        var(--main-dark) 50%, 
        var(--main-primary) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23F5FFFE;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ECFEFC;stop-opacity:0.05" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23grad1)"/><g opacity="0.1"><circle cx="200" cy="200" r="3" fill="%234DEEE2"/><circle cx="800" cy="300" r="2" fill="%2380F3EA"/><circle cx="1400" cy="150" r="4" fill="%23B3F7F1"/><circle cx="600" cy="500" r="2" fill="%234DEEE2"/><circle cx="1200" cy="600" r="3" fill="%2380F3EA"/><circle cx="300" cy="800" r="2" fill="%23B3F7F1"/><circle cx="1600" cy="400" r="3" fill="%234DEEE2"/><circle cx="100" cy="600" r="2" fill="%2380F3EA"/><circle cx="1000" cy="900" r="4" fill="%23B3F7F1"/></g></svg>');
    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(0, 229, 212, 0.2) 0%, rgba(77, 238, 226, 0.3) 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: 600;
    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;
    font-family: 'Poppins', sans-serif;
}

.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: linear-gradient(135deg, var(--main-lighter), var(--accent-warm));
    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(--main-pale), var(--accent-cool));
    border-radius: 50%;
    opacity: 0.7;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h3 {
    margin: 0;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo span {
    color: #7f8c8d;
    font-size: 0.8rem;
    font-weight: 400;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.nav-desktop a:hover {
    color: #25D366;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header h3 {
    margin: 0;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
}

.menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #2c3e50;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.mobile-nav a {
    color: #2c3e50;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.mobile-nav a:hover {
    color: #25D366;
}

.menu-whatsapp {
    background: #25D366 !important;
    color: white !important;
    padding: 1rem !important;
    border-radius: 10px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none !important;
    font-family: 'Poppins', sans-serif;
}

.menu-whatsapp .whatsapp-icon {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Adjust hero section for fixed header */
.hero {
    padding-top: 100px;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero {
        padding-top: 120px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text h3 {
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.75em;
    opacity: 0.8;
    line-height: 1.2;
}

/* Para mobile - ajustar se necessário */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .logo {
        gap: 8px;
    }
}

/* 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: linear-gradient(90deg, var(--main-primary), var(--main-light));
    margin: 2rem 0;
    border-radius: 2px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--gray-darkest);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.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-height: 600px;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-gray-medium);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--background-gray-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--card-white);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px var(--card-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-primary), var(--main-light));
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px var(--card-shadow-hover);
    border-color: var(--main-light);
}

.benefit-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon i {
    font-size: 3rem;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--main-primary), var(--main-dark));
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 229, 212, 0.3);
}

.benefit-card:hover .benefit-icon i {
    background: linear-gradient(135deg, var(--main-dark), var(--main-primary));
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 229, 212, 0.4);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--gray-darkest);
    font-family: 'Poppins', sans-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(--gray-darkest);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-primary), var(--main-light));
    border-radius: 2px;
}

/* Treatment Section */
.treatment {
    padding: 120px 0;
    background: var(--background-soft);
    text-align: center;
}

.treatment .section-title-center {
    margin-bottom: 4rem;
    color: var(--gray-darkest);
}

.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(--gray-darkest);
    font-family: 'Poppins', sans-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: 80%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-gray-medium);
}

/* Footer */
.footer {
    background: var(--gray-darkest);
    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: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-float-btn:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.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;
    font-family: 'Poppins', sans-serif;
}

.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-soft);
    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(--primary-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: 80%;
        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: 0;
        text-align: center;
    }
    
    .schedule-title {
        font-size: 2.4rem;
        margin-bottom: 0;
        text-align: center;
        width: 100%;
    }
    
    .schedule-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .schedule-image img {
        max-width: 90%;
        max-height: 500px;
    }
    
    .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 {
        margin-top: 40px;
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .schedule-title {
        font-size: 2rem;
        margin-bottom: 0;
        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;
    }
    
    .schedule-image img {
        max-width: 95%;
        max-height: 450px;
    }
}

/* =================
   INSTAGRAM NO HEADER
   ================= */
.header-social {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 25px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-link i {
    font-size: 18px;
}

/* =================
   SEÇÃO ESPECIALIDADES
   ================= */
.specialties {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--main-primary) 0%, var(--main-dark) 100%);
    color: var(--text-white);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.specialty-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-large);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
    transition: opacity 0.3s ease;
}

.specialty-card:hover::before {
    opacity: 1;
}

.specialty-card.highlight {
    border: 2px solid var(--main-light);
    box-shadow: var(--shadow-medium);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.specialty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--main-light), var(--accent-warm));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--text-primary);
    box-shadow: var(--shadow-medium);
}

.specialty-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gray-darkest);
}

.specialty-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* =================
   SEÇÃO LOCAIS
   ================= */
.locations {
    padding: 100px 0;
    background: var(--background-gray-light);
}

.locations-intro {
    text-align: center;
    margin-bottom: 60px;
}

.locations-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-gray);
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gray-medium);
    border-color: var(--main-primary);
}

.location-card.online-card {
    background: linear-gradient(135deg, var(--main-primary) 0%, var(--main-dark) 100%);
    color: var(--text-white);
}

.location-card.online-card:hover {
    border-color: var(--main-light);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--main-primary), var(--main-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.online-card .location-icon {
    background: linear-gradient(45deg, var(--main-light), var(--accent-warm));
    color: #ffffff;
}

.location-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.online-card h3 {
    color: var(--main-light);
}

.location-card p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.online-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* =================
   FOOTER ATUALIZADO
   ================= */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(188, 24, 136, 0.4);
}

.social-link i {
    font-size: 20px;
}

/* =================
   ANIMAÇÕES
   ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out;
}

/* =================
   RESPONSIVIDADE
   ================= */
@media (max-width: 768px) {
    .header-social {
        display: none;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .specialty-card {
        padding: 30px 25px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .location-card {
        padding: 30px 25px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .social-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .specialty-card h3 {
        font-size: 20px;
    }
    
    .specialty-card p {
        font-size: 15px;
    }
    
    .location-card h3 {
        font-size: 20px;
    }
    
    .location-card p {
        font-size: 14px;
    }
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--main-very-pale) 0%, var(--background-gray-soft) 100%);
    position: relative;
    overflow: hidden;
}

.reviews .section-title-center {
    margin-bottom: 80px;
    color: var(--gray-darkest);
    font-size: clamp(2.2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.reviews .section-title-center::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, var(--main-primary), var(--main-light));
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 229, 212, 0.3);
}

.reviews-wrapper {
    position: relative;
    padding-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
    transition: transform 0.3s ease;
}

.review-card {
    background: linear-gradient(135deg, var(--card-white) 70%, var(--main-pale) 100%);
    border-radius: var(--border-radius-large);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--main-primary), var(--main-light));
    z-index: 1;
    transition: height 0.3s ease;
}

.review-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--main-light);
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-primary), var(--main-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 229, 212, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.review-card:hover .review-avatar {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 229, 212, 0.3);
}

.review-rating {
    font-size: 1.2rem;
    color: #cfd80f;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.review-card:hover .review-text {
    color: var(--gray-dark);
}

.review-text::before {
    content: '“';
    font-size: 2rem;
    color: var(--main-primary);
    position: absolute;
    top: -15px;
    left: -10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.review-text::after {
    content: '”';
    font-size: 2rem;
    color: var(--main-primary);
    position: absolute;
    bottom: -15px;
    right: -10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.review-card:hover .review-text::before,
.review-card:hover .review-text::after {
    opacity: 1;
}

.review-author {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.review-card:hover .review-author {
    color: var(--main-dark);
}

/* Decorative Elements */
.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(0, 229, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.reviews::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(77, 238, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Responsive Design for Reviews */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .review-card {
        padding: 25px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 80px 0;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .review-card {
        padding: 20px;
    }

    .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .review-rating {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .review-text::before, .review-text::after {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .reviews .section-title-center {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .review-card {
        padding: 15px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .review-rating {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

    .review-text::before, .review-text::after {
        font-size: 1.2rem;
    }

    .review-author {
        font-size: 0.8rem;
    }
}