/* ============================================
   FARMÁCIA MARIA ELISA - DESIGN VERDE & CITRO
   CSS UNIFICADO - SEM REDUNDÂNCIAS
   ============================================ */

:root {
    /* Cores Principais - Tons de Verde e Limão */
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --primary-soft: #E8F5E9;
    --primary-lime: #CDDC39;
    --primary-lime-dark: #AFB42B;
    --secondary: #FFB300;
    --secondary-dark: #FF8F00;
    --secondary-light: #FFD54F;
    --secondary-soft: #FFF8E1;
    --success: #25D366;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    --gradient-primary-light: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    --gradient-lime: linear-gradient(135deg, #CDDC39 0%, #AFB42B 100%);
    --gradient-secondary: linear-gradient(135deg, #FFB300 0%, #FFD54F 100%);
    --gradient-dark: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-green: 0 4px 15px rgba(46, 125, 50, 0.3);
    --shadow-green-lg: 0 8px 25px rgba(46, 125, 50, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    overflow-x: hidden;
}

/* ============================================
   ANIMAÇÕES GLOBAIS
   ============================================ */
.page-content {
    animation: pageFadeIn 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@keyframes pageFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}
.navbar-custom.scrolled {
    padding: 0.4rem 0;
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(46, 125, 50, 0.2);
}

.logo-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(46, 125, 50, 0.2);
}
.navbar-brand:hover .logo-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.25);
}

.navbar-logo { height: 38px; width: auto; object-fit: contain; }
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brand-text .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.navbar-custom .nav-link {
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 30px;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}
.navbar-custom .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.navbar-custom .nav-link:hover::before,
.navbar-custom .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.btn-chat-nav {
    background: var(--gradient-primary);
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-green);
}
.btn-chat-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-green-lg); }

.btn-chat-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* ============================================
   BOTÕES GLOBAIS
   ============================================ */
.btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-green);
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg);
    color: white;
}
.btn-outline-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-outline-custom:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-success-custom {
    background: var(--success);
    color: white;
}
.btn-success-custom:hover {
    background: #1da864;
    transform: translateY(-2px);
    color: white;
}

/* ============================================
   SEÇÃO HEADERS
   ============================================ */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--gray-800);
    line-height: 1.2;
}
.hero-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 35px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}
.footer::before { display: none; }
.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 1rem;
    background: white;
    border-radius: 16px;
    padding: 5px;
    box-shadow: var(--shadow-md);
}
.footer-brand h4 { font-size: 1.5rem; font-weight: 700; }
.footer-brand .text-gradient {
    background: linear-gradient(135deg, #CDDC39 0%, #FFD54F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.footer p { color: rgba(255, 255, 255, 0.8); line-height: 1.6; }
.footer h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-lime);
    border-radius: 3px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease;
}
.footer-links li:hover { transform: translateX(5px); }
.footer-links li i { width: 20px; color: #CDDC39; font-size: 0.9rem; }
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #CDDC39; }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: var(--gradient-lime);
    transform: translateY(-3px);
    color: #1B5E20;
}
.footer hr { border-color: rgba(255, 255, 255, 0.15); margin: 2rem 0; }

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all 0.3s ease;
}
.chatbot-icon:hover { transform: scale(1.1); }
.chatbot-icon i { font-size: 28px; color: white; }
.chat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
}
.chat-window.active { display: flex; animation: slideUp 0.3s ease; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-close { cursor: pointer; transition: transform 0.2s ease; }
.chat-close:hover { transform: scale(1.1); }
.chat-messages { flex: 1; padding: 1rem; overflow-y: auto; background: var(--gray-50); }
.message { margin-bottom: 1rem; animation: messageFade 0.3s ease; }
@keyframes messageFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.message.user { text-align: right; }
.message.bot { text-align: left; }
.message-content {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 18px;
    max-width: 80%;
    word-wrap: break-word;
}
.message.user .message-content {
    background: var(--gradient-primary);
    color: white;
}
.message.bot .message-content {
    background: white;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}
.chat-input-area {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 0.5rem;
    background: white;
}
.chat-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 25px;
    outline: none;
}
.chat-input:focus { border-color: var(--primary); }
.send-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}
.send-btn:hover { transform: scale(1.05); }

/* ============================================
   HOME PAGE - SEÇÕES
   ============================================ */
.hero-section {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-soft) 100%);
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 500px;
}
.hero-text { flex: 1; }
.hero-description { max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}
.hero-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}
.hero-img:hover { transform: scale(1.02); }
.hero-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
}
.hero-decoration-1,
.hero-decoration-2 {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 0;
}
.hero-decoration-1 { width: 300px; height: 300px; top: -100px; right: -100px; }
.hero-decoration-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; }

.btn-chat-online {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
}
.btn-chat-online:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
}
.btn-chat-online .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;
}
.btn-chat-online:hover .btn-glow { left: 100%; }

/* Horários */
.horarios-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}
.horarios-header { text-align: center; margin-bottom: 60px; }
.horarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.horario-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(46, 125, 50, 0.1);
}
.horario-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.horario-card.highlight {
    background: var(--gradient-primary);
    color: white;
}
.horario-card.highlight .horario-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
.horario-card.highlight .horario-time,
.horario-card.highlight h4,
.horario-card.highlight p { color: white; }
.horario-card.highlight .horario-status {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
.horario-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.horario-icon i { font-size: 2rem; color: var(--primary); }
.horario-card:hover .horario-icon { transform: scale(1.1); }
.horario-card.highlight .horario-icon i { color: white; }
.horario-info h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 15px; color: var(--gray-800); }
.horario-time {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.horario-info p { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 15px; }
.horario-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-open { background: rgba(46, 125, 50, 0.1); color: var(--primary); }
.status-open i { font-size: 0.6rem; color: #4CAF50; }
.status-closed { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.status-closed i { font-size: 0.6rem; color: #dc3545; }
.status-delivery { background: rgba(37, 211, 102, 0.1); color: #25D366; }

/* Unidades */
.unidades-section { padding: 80px 0; background: var(--white); }
.unidades-header { text-align: center; margin-bottom: 60px; }
.unidades-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.unidade-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(46, 125, 50, 0.1);
}
.unidade-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}
.unidade-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.unidade-icon i { font-size: 2rem; color: white; }
.unidade-card h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; color: var(--gray-800); }
.unidade-card p { margin-bottom: 10px; color: var(--gray-600); }
.unidade-card p i { width: 25px; color: var(--primary); }
.btn-whatsapp {
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Sobre Nós */
.sobre-section { padding: 80px 0; background: var(--white); }
.sobre-content { display: flex; align-items: center; gap: 60px; }
.sobre-image { flex: 1; position: relative; }
.sobre-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.sobre-img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.sobre-image-wrapper:hover .sobre-img { transform: scale(1.05); }
.sobre-experience {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.experience-number { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.experience-text { font-size: 0.8rem; opacity: 0.9; }
.sobre-text { flex: 1; }
.sobre-description { color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-size: 1rem; }
.sobre-features { margin: 30px 0; }
.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateX(10px);
    background: var(--primary-soft);
}
.feature-item i {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}
.feature-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--gray-800); }
.feature-item p { font-size: 0.8rem; color: var(--gray-500); margin: 0; }

/* Depoimentos */
.depoimentos-section { padding: 80px 0; background: var(--gray-50); }
.depoimento-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}
.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.depoimento-card i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
}
.depoimento-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.depoimento-author strong { display: block; color: var(--gray-800); margin-bottom: 4px; }
.depoimento-author span { color: #FFB800; font-size: 0.85rem; }

/* CTA */
.cta-section { padding: 60px 0 80px; }
.cta-card {
    background: linear-gradient(135deg, var(--primary-soft), var(--secondary-soft));
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}
.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulse 2s ease-in-out infinite;
}
.cta-icon i { font-size: 2.5rem; color: white; }
.cta-content { position: relative; z-index: 1; }
.cta-content h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; color: var(--gray-800); }
.cta-content p { color: var(--gray-600); margin-bottom: 35px; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-whatsapp-large,
.btn-chat-large,
.btn-phone-large {
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.btn-whatsapp-large {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: white;
}
.btn-chat-large {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}
.btn-chat-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.5);
    color: white;
}
.btn-phone-large {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}
.btn-phone-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.5);
    color: white;
}
.btn-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFB300;
    color: #1B5E20;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 30px;
    font-weight: 700;
    white-space: nowrap;
}

/* ============================================
   PÁGINA SOBRE - SEÇÕES EXTRAS
   ============================================ */
.sobre-hero {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--white) 100%);
    padding: 80px 0 60px;
}
.sobre-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sobre-hero-texto { max-width: 550px; }
.hero-stats { display: flex; gap: 40px; margin-top: 20px; }
.hero-stat { text-align: center; }
.hero-stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.hero-stat-label { font-size: 0.85rem; color: var(--gray-500); }
.hero-imagem-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}
.hero-imagem-wrapper img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}
.hero-imagem-wrapper img:hover { transform: scale(1.02); }
.hero-imagem-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.apresentacao-section { padding: 80px 0; background: var(--white); }
.apresentacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.info-destaque {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--gray-50) 100%);
    padding: 25px;
    border-radius: 24px;
    margin: 25px 0;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    transition: all 0.3s ease;
}
.info-item:hover { transform: translateX(8px); }
.info-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}
.info-item span { color: var(--gray-700); font-size: 0.95rem; }
.info-item strong { color: var(--primary-dark); }
.apresentacao-imagem img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}
.apresentacao-imagem img:hover { transform: scale(1.02); }
.imagem-legenda { text-align: center; margin-top: 15px; font-size: 0.85rem; color: var(--gray-500); font-style: italic; }

.galeria-section { padding: 80px 0; background: var(--gray-50); }
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.galeria-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    cursor: pointer;
}
.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.galeria-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.1); }
.galeria-legenda {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent);
    color: white;
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.galeria-item:hover .galeria-legenda { transform: translateY(0); }

.diferenciais-section { padding: 80px 0; background: var(--white); }
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.diferencial-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
    position: relative;
    overflow: hidden;
}
.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.diferencial-card:hover::before { transform: scaleX(1); }
.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}
.diferencial-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.diferencial-card:hover .diferencial-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}
.diferencial-card:hover .diferencial-icon i { color: white; }
.diferencial-icon i { font-size: 2.2rem; color: var(--primary); transition: all 0.3s ease; }
.diferencial-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--gray-800); }
.diferencial-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

.servicos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}
.servicos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.servicos-lista { display: flex; flex-direction: column; gap: 30px; margin-top: 30px; }
.servico-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.servico-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}
.servico-item i {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}
.servico-item h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--gray-800); }
.servico-item p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }
.servicos-imagem img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}
.servicos-imagem img:hover { transform: scale(1.02); }

.equipe-section { padding: 80px 0; background: var(--white); }
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.equipe-card {
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
}
.equipe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}
.equipe-imagem {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    transition: all 0.3s ease;
}
.equipe-card:hover .equipe-imagem {
    border-color: var(--primary-lime);
    transform: scale(1.05);
}
.equipe-imagem img { width: 100%; height: 100%; object-fit: cover; }
.equipe-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 5px; color: var(--gray-800); }
.equipe-cargo { color: var(--primary); font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; }
.equipe-especialidade {
    font-size: 0.75rem;
    color: var(--gray-500);
    background: var(--gray-50);
    padding: 5px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
}
.equipe-descricao { font-size: 0.85rem; color: var(--gray-600); margin-top: 12px; line-height: 1.5; }

.mvv-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
     
    border-top-left-radius: 140px;
  

    
}
.mvv-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.mvv-section .section-badge { background: rgba(255, 255, 255, 0.2); color: white; }
.mvv-section .section-title,
.mvv-section .section-subtitle { color: white; }
.mvv-section .text-gradient {
    background: linear-gradient(135deg, #CDDC39, #FFD54F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}
.mvv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.mvv-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}
.mvv-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.mvv-card:hover .mvv-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}
.mvv-icon i { font-size: 2.2rem; color: white; }
.mvv-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; }
.mvv-card p { line-height: 1.7; font-size: 0.95rem; opacity: 0.95; }
.valores-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-top: 15px;
}
.valores-lista span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    padding: 5px 0;
}
.valores-lista i { color: #CDDC39; font-size: 1rem; }

.icones-saude-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}
.icones-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}
.icone-item {
    padding: 25px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 20px;
    background: var(--white);
}
.icone-item:hover {
    transform: translateY(-8px);
    background: var(--primary-soft);
    box-shadow: var(--shadow-md);
}
.icone-item i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
}
.icone-item:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}
.icone-item span { font-size: 0.85rem; color: var(--gray-600); font-weight: 500; }
.icone-item:hover span { color: var(--primary-dark); }

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .hero-content, .sobre-content, .sobre-hero-grid, .apresentacao-grid, .servicos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        flex-direction: column;
        text-align: center;
    }
    .hero-text, .sobre-hero-texto { max-width: 100%; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .horarios-grid, .unidades-grid, .galeria-grid, .diferenciais-grid, .equipe-grid, .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .icones-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cta-card { padding: 40px 20px; }
    .cta-content h3 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-whatsapp-large, .btn-chat-large, .btn-phone-large {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title, .sobre-hero .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.8rem; }
    .horarios-grid, .unidades-grid, .galeria-grid, .diferenciais-grid, .equipe-grid, .mvv-grid {
        grid-template-columns: 1fr;
    }
    .icones-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-section { padding: 40px 0; }
    .hero-image-badge, .hero-imagem-badge { bottom: -10px; right: -10px; padding: 8px 16px; font-size: 0.75rem; }
    .sobre-experience { padding: 12px; }
    .experience-number { font-size: 1.3rem; }
    .feature-item { justify-content: center; text-align: left; }
    .cta-icon { width: 60px; height: 60px; }
    .cta-icon i { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .hero-stat-number { font-size: 1.5rem; }
    .galeria-item img { height: 220px; }
    .servico-item { flex-direction: column; align-items: center; text-align: center; }
    .chat-window { width: calc(100vw - 40px); right: 20px; height: 500px; }
    .chatbot-icon { bottom: 20px; right: 20px; }
    .footer { text-align: center; }
    .footer h5::after { left: 50%; transform: translateX(-50%); }
    .footer-links li { justify-content: center; }
    .social-icons { justify-content: center; }
}

/* ============================================
   PAGE TRANSITION LOADER
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.loader-spinner::before,
.loader-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-spinner::before {
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-soft);
    border-top-color: transparent;
}

.loader-spinner::after {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 3px solid var(--primary-light);
    border-bottom-color: transparent;
    animation-duration: 0.8s;
    animation-direction: reverse;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseLoader 1.5s ease-in-out infinite;
}

.loader-logo i {
    font-size: 28px;
    color: white;
}

@keyframes pulseLoader {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.loader-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
}

.loader-dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 8px;
}

.loader-dots span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    margin: 20px auto 0;
    overflow: hidden;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Transição de página */
.page-content {
    animation: pageFadeIn 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Transição para saída */
.page-exit {
    animation: pageFadeOut 0.3s ease forwards;
}

@keyframes pageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}