  /* Botão do Reel */
    .reel-trigger {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 9997;
        background: linear-gradient(135deg, #c33b3b, #e85d5d);
        color: white;
        border: none;
        padding: 15px 12px;
        border-radius: 20px 0 0 20px;
        cursor: pointer;
        font-weight: 700;
        font-size: 0.75rem;
        writing-mode: vertical-rl;
        letter-spacing: 1px;
        box-shadow: -5px 0 20px rgba(195,59,59,0.4);
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
        animation: pulseReel 2s infinite;
    }
.medico-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #98b834, #7a9a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.8rem;
    overflow: hidden;  /* ← IMPORTANTE para a imagem não sair do círculo */
}

.medico-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    .reel-trigger:hover {
        padding-right: 20px;
        background: linear-gradient(135deg, #a11d1d, #c33b3b);
    }

    .reel-trigger i {
        writing-mode: horizontal-tb;
        font-size: 1.2rem;
        animation: spin 3s linear infinite;
    }

    .reel-badge {
        position: absolute;
        top: -5px;
        left: -5px;
        background: white;
        color: #c33b3b;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        font-size: 0.65rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        writing-mode: horizontal-tb;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    @keyframes pulseReel {
        0%, 100% { box-shadow: -5px 0 20px rgba(195,59,59,0.4); }
        50% { box-shadow: -5px 0 35px rgba(195,59,59,0.7); }
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Modal do Reel */
    .reel-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.95);
        z-index: 9998;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .reel-overlay.active {
        display: flex;
    }

    .reel-container {
        position: relative;
        width: 100%;
        max-width: 450px;
        height: 80vh;
        max-height: 750px;
        background: #000;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }

    .reel-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255,255,255,0.2);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 10;
        backdrop-filter: blur(10px);
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reel-close:hover {
        background: #c33b3b;
    }

    .reel-video-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
    }

    .reel-video-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Info do paciente no vídeo */
    .reel-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px 20px 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        color: white;
        z-index: 5;
    }

    .reel-info .reel-name {
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .reel-info .reel-service {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .reel-info .reel-stars {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }

    /* Navegação do Reel */
    .reel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.2);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1rem;
        cursor: pointer;
        z-index: 10;
        backdrop-filter: blur(10px);
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reel-nav:hover {
        background: rgba(152,184,52,0.8);
    }

    .reel-prev { left: 10px; }
    .reel-next { right: 10px; }

    .reel-counter {
        position: absolute;
        top: 15px;
        left: 15px;
        color: white;
        font-size: 0.8rem;
        z-index: 10;
        background: rgba(0,0,0,0.5);
        padding: 5px 12px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
    }

    /* Se não houver vídeos */
    .reel-empty {
        color: white;
        text-align: center;
        padding: 40px;
    }

    .reel-empty i {
        font-size: 3rem;
        display: block;
        margin-bottom: 15px;
        opacity: 0.5;
    }

    @media (max-width: 768px) {
        .reel-trigger {
            padding: 12px 10px;
            font-size: 0.7rem;
            border-radius: 16px 0 0 16px;
        }

        .reel-container {
            max-width: 100%;
            height: 85vh;
            border-radius: 0;
        }

        .reel-nav {
            width: 35px;
            height: 35px;
        }
    }
        :root {
            --primary: #98b834;
            --primary-dark: #7a9a2a;
            --primary-light: #b8d44a;
            --secondary: #70396c;
            --secondary-light: #8f4d8a;
            --accent: #c33b3b;
            --accent-light: #d45555;
            --dark: #1a1a2e;
            --white: #ffffff;
            --gray-50: #f8f9fa;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-600: #4b5563;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
            --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============ MOBILE HEADER ============ */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--white);
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .mobile-header-top {
            background: var(--primary);
            padding: 6px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 5px;
            font-size: 0.7rem;
        }

        .mobile-header-top a {
            color: var(--white);
            text-decoration: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .mobile-header-main {
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .mobile-logo-img {
            height: 35px;
            width: auto;
        }

        .mobile-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1.1;
        }

        .mobile-logo-text span {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 0.6rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 1px;
        }

        .mobile-menu-btn {
            background: var(--primary);
            border: none;
            color: var(--white);
            width: 42px;
            height: 42px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.3rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ============ DESKTOP HEADER ============ */
        .desktop-header {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .header-top {
            background: var(--primary);
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .header-contact {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .header-contact a {
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
            white-space: nowrap;
            font-weight: 500;
        }

        .header-social {
            display: flex;
            gap: 10px;
        }

        .header-social a {
            color: var(--white);
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transition: var(--transition);
            font-size: 0.8rem;
        }

        .header-social a:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        .header-main {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
            width: auto;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1.2;
        }

        .logo-text span {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.9rem;
            position: relative;
            padding: 8px 0;
            transition: var(--transition);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-dark);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-whatsapp-nav {
            background: #25D366;
            color: var(--white);
            padding: 10px 22px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-whatsapp-nav:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        /* ============ SIDEBAR MOBILE ============ */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: var(--white);
            z-index: 10000;
            transition: var(--transition);
            box-shadow: -5px 0 30px rgba(0,0,0,0.2);
            overflow-y: auto;
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 30px 25px;
            color: var(--white);
            position: relative;
        }

        .sidebar-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.2);
            border: none;
            color: var(--white);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sidebar-close:hover {
            background: rgba(255,255,255,0.4);
            transform: rotate(90deg);
        }

        .sidebar-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .sidebar-nav {
            padding: 20px 25px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .sidebar-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 14px 20px;
            border-radius: 10px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sidebar-link i {
            width: 20px;
            color: var(--primary-dark);
            font-size: 0.9rem;
        }

        .sidebar-link:hover {
            background: var(--gray-50);
            color: var(--primary-dark);
            padding-left: 25px;
        }

        .sidebar-whatsapp {
            margin: 0 25px 30px;
            background: #25D366;
            color: var(--white);
            padding: 14px 20px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            justify-content: center;
        }

        /* ============ HERO SECTION ============ */
       /* ============ HERO CARROSSEL ============ */
.hero {
    margin-top: 115px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

/* Overlay de cor gradiente adicional */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 50%, rgba(152,184,52,0.25) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(112,57,108,0.15) 0%, transparent 60%);
    z-index: 1;
}

/* Conteúdo do hero */
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 80px 0;
}

/* Indicadores do carrossel */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(152,184,52,0.5);
}

.hero-dot:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* Setas de navegação */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 25px rgba(152,184,52,0.4);
}

.hero-arrow-prev {
    left: 20px;
}

.hero-arrow-next {
    right: 20px;
}

/* Animações do texto */
.hero-content [data-aos] {
    animation-duration: 0.8s !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        margin-top: 85px;
    }

    .hero-slide {
        background-attachment: scroll !important;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .hero-arrow-prev {
        left: 10px;
    }

    .hero-arrow-next {
        right: 10px;
    }

    .hero-dots {
        bottom: 25px;
        gap: 8px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-content {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        margin-top: 82px;
    }

    .hero-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }
}

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 0% 50%, rgba(152,184,52,0.3) 0%, transparent 60%),
                        radial-gradient(circle at 70% 50%, rgba(112,57,108,0.2) 0%, transparent 60%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: var(--white);
            max-width: 700px;
            padding: 80px 0;
        }

        .hero-badge {
            display: inline-block;
            background: var(--primary);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.15rem;
            margin-bottom: 35px;
            opacity: 0.95;
            line-height: 1.7;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(152,184,52,0.4);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(152,184,52,0.5);
        }

        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline-white:hover {
            background: var(--white);
            color: var(--primary-dark);
        }

        /* ============ SECTIONS ============ */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-label {
            display: inline-block;
            background: rgba(152,184,52,0.1);
            color: var(--primary-dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .section-desc {
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: var(--white);
            padding: 35px 25px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            text-align: center;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 2.8rem;
            margin-bottom: 20px;
            display: inline-block;
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            background: rgba(152,184,52,0.1);
            color: var(--primary);
            transition: var(--transition);
        }

        .service-card:nth-child(even) .service-icon {
            background: rgba(112,57,108,0.1);
            color: var(--secondary);
        }

        .service-card:nth-child(3n) .service-icon {
            background: rgba(195,59,59,0.1);
            color: var(--accent);
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .service-card p {
            color: var(--gray-600);
            font-size: 0.9rem;
        }

        /* Doctor Section */
        .doctor-section {
            background: linear-gradient(135deg, var(--gray-50) 0%, #f0f7e8 100%);
        }

        .doctor-card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 0;
            max-width: 900px;
            margin: 0 auto;
        }

        .doctor-image {
            position: relative;
            min-height: 400px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .doctor-image i {
            font-size: 8rem;
            color: rgba(255,255,255,0.3);
        }

        .doctor-info {
            padding: 50px 40px;
        }

        .doctor-name {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .doctor-role {
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .doctor-bio {
            color: var(--gray-600);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .doctor-credentials {
            list-style: none;
        }

        .doctor-credentials li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-weight: 500;
            color: var(--dark);
        }

        .doctor-credentials i {
            color: var(--primary);
            font-size: 1.1rem;
            background: rgba(152,184,52,0.1);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            transition: var(--transition);
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .team-avatar {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .team-avatar i {
            font-size: 5rem;
            color: rgba(255,255,255,0.3);
        }

        .team-info {
            padding: 25px 20px;
        }

        .team-info h3 {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .team-info .role {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .team-info p {
            color: var(--gray-600);
            font-size: 0.85rem;
        }

        /* Appointment Section */
        .appointment-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 0;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            overflow: hidden;
        }

        .appointment-info {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            padding: 50px 40px;
            color: var(--white);
        }

        .appointment-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .info-item i {
            color: var(--white);
            font-size: 1.2rem;
            margin-top: 3px;
            background: rgba(255,255,255,0.2);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .appointment-form {
            padding: 50px 40px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 13px 18px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: var(--transition);
            background: var(--gray-50);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(152,184,52,0.1);
        }

        .btn-submit {
            background: var(--primary);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(152,184,52,0.4);
        }

        /* Blog Section */
        .blog-section {
            background: var(--gray-50);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .blog-video {
            position: relative;
            height: 250px;
            background: var(--dark);
        }

        .blog-video iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .blog-body {
            padding: 25px;
        }

        .blog-body h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        .blog-body p {
            color: var(--gray-600);
            margin-bottom: 18px;
            font-size: 0.9rem;
        }

        .blog-link {
            color: var(--primary-dark);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .blog-link:hover {
            gap: 12px;
            color: var(--secondary);
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--gray-300);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer h4 {
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 25px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Chatbot */
        .chatbot-toggle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            box-shadow: var(--shadow-xl);
            z-index: 9998;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chatbot-toggle:hover {
            transform: scale(1.1);
            background: var(--primary-dark);
        }

        .chatbot-window {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            z-index: 9999;
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            overflow: hidden;
        }

        .chatbot-window.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .chatbot-header {
            background: var(--primary);
            color: var(--white);
            padding: 20px;
        }

        .chatbot-messages {
            height: 300px;
            overflow-y: auto;
            padding: 20px;
            background: var(--gray-50);
        }

        .message {
            margin-bottom: 15px;
            display: flex;
            gap: 10px;
        }

        .message.bot {
            justify-content: flex-start;
        }

        .message.user {
            justify-content: flex-end;
        }

        .message-content {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 15px;
            font-size: 0.9rem;
        }

        .bot .message-content {
            background: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .user .message-content {
            background: var(--primary);
            color: var(--white);
        }

        .quick-replies {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .quick-reply {
            background: var(--white);
            border: 1px solid var(--primary);
            color: var(--primary-dark);
            padding: 8px 15px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .quick-reply:hover {
            background: var(--primary);
            color: var(--white);
        }

        .chatbot-input {
            display: flex;
            padding: 15px;
            border-top: 1px solid var(--gray-200);
            background: var(--white);
        }

        .chatbot-input input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid var(--gray-200);
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
        }

        .chatbot-input button {
            background: var(--primary);
            color: var(--white);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin-left: 10px;
            cursor: pointer;
            transition: var(--transition);
        }

        .chatbot-input button:hover {
            background: var(--primary-dark);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .doctor-card {
                grid-template-columns: 1fr;
            }
            
            .appointment-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                background-attachment: scroll;
            }
        }

        @media (max-width: 768px) {
            .desktop-header {
                display: none;
            }
            
            .mobile-header {
                display: block;
            }

            .hero {
                margin-top: 85px;
                min-height: 60vh;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .hero-content {
                padding: 40px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .section {
                padding: 60px 0;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 15px;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .chatbot-window {
                width: 90%;
                right: 5%;
                left: 5%;
            }

            .btn-primary,
            .btn-outline-white {
                padding: 12px 25px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                margin-top: 82px;
                min-height: 50vh;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-outline-white {
                text-align: center;
                justify-content: center;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .service-card {
                padding: 20px 15px;
            }

            .service-icon {
                font-size: 2rem;
                width: 60px;
                height: 60px;
                line-height: 60px;
            }

            .service-card h3 {
                font-size: 0.9rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .doctor-info {
                padding: 30px 20px;
            }

            .doctor-name {
                font-size: 1.5rem;
            }
        }
          /* ========== GALERIA DINÂMICA ========== */
            .gallery-wrapper {
                position: relative;
                width: 100%;
            }

            /* Filtros */
            .gallery-filters {
                display: flex;
                justify-content: center;
                gap: 12px;
                margin-bottom: 40px;
                flex-wrap: wrap;
                padding: 0 15px;
            }

            .filter-btn {
                padding: 10px 24px;
                border: 2px solid #e5e7eb;
                background: white;
                border-radius: 50px;
                cursor: pointer;
                font-weight: 600;
                font-size: 0.85rem;
                transition: all 0.3s;
                font-family: 'Inter', sans-serif;
                color: #4b5563;
                letter-spacing: 0.3px;
            }

            .filter-btn:hover {
                border-color: #98b834;
                color: #98b834;
                transform: translateY(-2px);
            }

            .filter-btn.active {
                background: #98b834;
                color: white;
                border-color: #98b834;
                box-shadow: 0 5px 15px rgba(152,184,52,0.3);
            }

            /* Container Masonry */
            .gallery-masonry {
                columns: 4;
                column-gap: 20px;
                padding: 0 10px;
            }

            .gallery-item {
                break-inside: avoid;
                margin-bottom: 20px;
                position: relative;
                border-radius: 16px;
                overflow: hidden;
                cursor: pointer;
                background: #e5e7eb;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            }

            .gallery-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 40px rgba(0,0,0,0.15);
                z-index: 10;
            }

            .gallery-item img {
                width: 100%;
                height: auto;
                display: block;
                transition: transform 0.5s ease;
                object-fit: cover;
            }

            .gallery-item:hover img {
                transform: scale(1.05);
            }

            /* Overlay */
            .gallery-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, 
                    rgba(0,0,0,0.85) 0%, 
                    rgba(0,0,0,0.4) 50%, 
                    transparent 100%);
                padding: 40px 20px 20px;
                color: white;
                opacity: 0;
                transition: opacity 0.3s ease;
                pointer-events: none;
            }

            .gallery-item:hover .gallery-overlay {
                opacity: 1;
            }

            .gallery-overlay h4 {
                font-size: 1.1rem;
                font-weight: 700;
                margin-bottom: 5px;
                font-family: 'Playfair Display', serif;
            }

            .gallery-overlay p {
                font-size: 0.85rem;
                opacity: 0.9;
                margin: 0;
            }

            .gallery-overlay .category-tag {
                display: inline-block;
                background: rgba(152,184,52,0.8);
                padding: 4px 12px;
                border-radius: 50px;
                font-size: 0.7rem;
                font-weight: 600;
                letter-spacing: 0.5px;
                margin-bottom: 8px;
            }

            /* Ícone de zoom */
            .zoom-icon {
                position: absolute;
                top: 15px;
                right: 15px;
                width: 42px;
                height: 42px;
                background: rgba(152,184,52,0.9);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1rem;
                opacity: 0;
                transform: scale(0.8);
                transition: all 0.3s ease;
                backdrop-filter: blur(5px);
            }

            .gallery-item:hover .zoom-icon {
                opacity: 1;
                transform: scale(1);
            }

            /* Animação de entrada */
            .gallery-item {
                opacity: 0;
                transform: translateY(30px);
                animation: fadeInUp 0.6s ease forwards;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .gallery-item:nth-child(1) { animation-delay: 0.05s; }
            .gallery-item:nth-child(2) { animation-delay: 0.1s; }
            .gallery-item:nth-child(3) { animation-delay: 0.15s; }
            .gallery-item:nth-child(4) { animation-delay: 0.2s; }
            .gallery-item:nth-child(5) { animation-delay: 0.25s; }
            .gallery-item:nth-child(6) { animation-delay: 0.3s; }
            .gallery-item:nth-child(7) { animation-delay: 0.35s; }
            .gallery-item:nth-child(8) { animation-delay: 0.4s; }
            .gallery-item:nth-child(9) { animation-delay: 0.45s; }
            .gallery-item:nth-child(10) { animation-delay: 0.5s; }

            /* ========== LIGHTBOX ========== */
            .lightbox {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.96);
                z-index: 9999;
                display: none;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                animation: fadeIn 0.3s ease;
            }

            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }

            .lightbox.active {
                display: flex;
            }

            .lightbox-header {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 30px;
                z-index: 10;
            }

            .lightbox-counter {
                color: white;
                font-size: 0.9rem;
                background: rgba(255,255,255,0.15);
                padding: 8px 16px;
                border-radius: 50px;
                backdrop-filter: blur(10px);
            }

            .lightbox-close {
                background: rgba(255,255,255,0.15);
                color: white;
                border: none;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                font-size: 1.2rem;
                cursor: pointer;
                transition: all 0.3s;
                display: flex;
                align-items: center;
                justify-content: center;
                backdrop-filter: blur(10px);
            }

            .lightbox-close:hover {
                background: #c33b3b;
                transform: rotate(90deg);
            }

            .lightbox-body {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 100%;
                padding: 80px 20px;
            }

            .lightbox-content {
                max-width: 90%;
                max-height: 80vh;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .lightbox-content img {
                max-width: 100%;
                max-height: 70vh;
                border-radius: 12px;
                box-shadow: 0 20px 60px rgba(0,0,0,0.5);
                object-fit: contain;
                transition: transform 0.3s ease;
            }

            .lightbox-caption {
                color: white;
                text-align: center;
                margin-top: 20px;
            }

            .lightbox-caption h3 {
                font-family: 'Playfair Display', serif;
                font-size: 1.3rem;
                margin-bottom: 5px;
            }

            .lightbox-caption p {
                font-size: 0.9rem;
                opacity: 0.8;
            }

            .lightbox-nav {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(255,255,255,0.2);
                color: white;
                border: none;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                font-size: 1.2rem;
                cursor: pointer;
                transition: all 0.3s;
                display: flex;
                align-items: center;
                justify-content: center;
                backdrop-filter: blur(10px);
                z-index: 10;
            }

            .lightbox-nav:hover {
                background: rgba(152,184,52,0.8);
                transform: translateY(-50%) scale(1.1);
            }

            .lightbox-prev { left: 20px; }
            .lightbox-next { right: 20px; }

            /* ========== RESPONSIVO ========== */
            @media (max-width: 1200px) {
                .gallery-masonry {
                    columns: 3;
                }
            }

            @media (max-width: 768px) {
                .gallery-masonry {
                    columns: 2;
                    column-gap: 12px;
                }

                .gallery-item {
                    margin-bottom: 12px;
                    border-radius: 12px;
                }

                .gallery-filters {
                    gap: 8px;
                    margin-bottom: 30px;
                }

                .filter-btn {
                    padding: 8px 16px;
                    font-size: 0.75rem;
                }

                .lightbox-nav {
                    width: 40px;
                    height: 40px;
                }

                .lightbox-prev { left: 10px; }
                .lightbox-next { right: 10px; }

                .zoom-icon {
                    width: 35px;
                    height: 35px;
                    font-size: 0.85rem;
                }
            }

            @media (max-width: 480px) {
                .gallery-masonry {
                    columns: 1;
                }

                .gallery-item {
                    margin-bottom: 15px;
                }
            }

              /* Overlay de fundo */
    .cookie-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 99998;
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .cookie-overlay.active {
        display: block;
    }

    /* Container principal */
    .cookie-consent {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 99999;
        background: white;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        padding: 30px 35px;
        max-width: 600px;
        width: 90%;
        display: none;
        animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #e5e7eb;
    }

    .cookie-consent.active {
        display: block;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Ícone do cookie */
    .cookie-icon {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .cookie-icon-svg {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #fef3c7, #fde68a);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        flex-shrink: 0;
        animation: rotateCookie 3s ease-in-out infinite;
    }

    @keyframes rotateCookie {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(10deg); }
        75% { transform: rotate(-10deg); }
    }

    .cookie-icon h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        color: #1a1a2e;
        font-weight: 700;
    }

    /* Texto */
    .cookie-text {
        color: #4b5563;
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .cookie-text a {
        color: #98b834;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        border-bottom: 1px dashed #98b834;
    }

    .cookie-text a:hover {
        color: #70396c;
        border-bottom-color: #70396c;
    }

    /* Botões */
    .cookie-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .cookie-btn {
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    .cookie-btn-accept {
        background: linear-gradient(135deg, #98b834, #7a9a2a);
        color: white;
        box-shadow: 0 5px 15px rgba(152,184,52,0.3);
    }

    .cookie-btn-accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(152,184,52,0.4);
    }

    .cookie-btn-settings {
        background: white;
        color: #4b5563;
        border: 2px solid #e5e7eb;
    }

    .cookie-btn-settings:hover {
        border-color: #70396c;
        color: #70396c;
        background: #faf5fa;
    }

    .cookie-btn-essential {
        background: white;
        color: #4b5563;
        border: 2px solid #e5e7eb;
    }

    .cookie-btn-essential:hover {
        border-color: #98b834;
        color: #98b834;
        background: #f8faf0;
    }

    /* Configurações de cookies */
    .cookie-settings {
        display: none;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
    }

    .cookie-settings.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .cookie-setting-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .cookie-setting-item:last-child {
        border-bottom: none;
    }

    .cookie-setting-info h4 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 3px;
    }

    .cookie-setting-info p {
        font-size: 0.78rem;
        color: #6b7280;
    }

    /* Toggle Switch */
    .cookie-toggle {
        position: relative;
        display: inline-block;
        width: 48px;
        height: 26px;
        flex-shrink: 0;
    }

    .cookie-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .cookie-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #d1d5db;
        transition: 0.3s;
        border-radius: 34px;
    }

    .cookie-slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

    .cookie-toggle input:checked + .cookie-slider {
        background-color: #98b834;
    }

    .cookie-toggle input:checked + .cookie-slider:before {
        transform: translateX(22px);
    }

    .cookie-toggle input:disabled + .cookie-slider {
        background-color: #98b834;
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Responsivo */
    @media (max-width: 768px) {
        .cookie-consent {
            bottom: 20px;
            padding: 25px 20px;
            width: 95%;
            border-radius: 20px;
        }

        .cookie-buttons {
            flex-direction: column;
        }

        .cookie-btn {
            width: 100%;
            text-align: center;
            justify-content: center;
        }

        .cookie-icon h3 {
            font-size: 1.1rem;
        }

        .cookie-text {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .cookie-consent {
            bottom: 10px;
            padding: 20px 15px;
            width: 98%;
            border-radius: 16px;
        }

        .cookie-icon-svg {
            width: 40px;
            height: 40px;
            font-size: 1.3rem;
        }
    }

    /* Modal */
/* ========== DEPOIMENTOS ========== */
<style>
/* ========== CARROSSEL DE DEPOIMENTOS ========== */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    min-height: 200px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 40px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.carousel-quote {
    font-size: 1.1rem;
    color: #4b5563;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 600px;
}

.carousel-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #98b834, #70396c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.carousel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-author-info {
    text-align: left;
}

.carousel-name {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.carousel-service {
    font-size: 0.8rem;
    color: #98b834;
    font-weight: 600;
}

/* Setas */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    font-size: 1rem;
    color: #4b5563;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.carousel-arrow:hover {
    background: #98b834;
    color: white;
    border-color: #98b834;
    box-shadow: 0 5px 20px rgba(152,184,52,0.3);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Bolinhas (dots) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: #98b834;
    width: 30px;
    border-radius: 5px;
}

/* ========== MODAL ========== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-depoimento {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-close {
    position: absolute;
    top: 12px; right: 12px;
    background: #f3f4f6;
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}
.modal-close:hover { background: #c33b3b; color: white; }

.modal-header {
    background: linear-gradient(135deg, #98b834, #70396c);
    color: white;
    padding: 25px;
    text-align: center;
}
.modal-header h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 4px; }
.modal-header p { font-size: 0.8rem; opacity: 0.9; }
.modal-body { padding: 25px; }

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 3px;
    font-size: 1.5rem;
}
.star-rating input { display: none; }
.star-rating label { cursor: pointer; color: #d1d5db; transition: all 0.2s; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #f59e0b; transform: scale(1.2); }

.btn-submit-depoimento {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #98b834, #7a9a2a);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 5px;
}
.btn-submit-depoimento:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(152,184,52,0.3); }

@media (max-width: 768px) {
    .testimonial-carousel { padding: 0 40px; }
    .carousel-slide { padding: 30px 25px; }
    .carousel-quote { font-size: 0.95rem; }
    .carousel-arrow { width: 38px; height: 38px; }
}

    </style>
           <style>
            .booking-container {
                background: white;
                border-radius: 20px;
                box-shadow: 0 10px 40px rgba(0,0,0,0.1);
                overflow: hidden;
                max-width: 1000px;
                margin: 0 auto;
            }
            
            .booking-steps {
                display: flex;
                background: #f8f9fa;
                border-bottom: 1px solid #e5e7eb;
            }
            
            .booking-step {
                flex: 1;
                padding: 20px;
                text-align: center;
                font-weight: 600;
                font-size: 0.85rem;
                color: #9ca3af;
                position: relative;
                cursor: pointer;
                transition: all 0.3s;
            }
            
            .booking-step.active {
                color: #98b834;
                background: white;
            }
            
            .booking-step.completed {
                color: #7a9a2a;
            }
            
            .step-number {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                background: #e5e7eb;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                margin-right: 8px;
                font-size: 0.8rem;
                transition: all 0.3s;
            }
            
            .booking-step.active .step-number,
            .booking-step.completed .step-number {
                background: #98b834;
                color: white;
            }
            
            .booking-body {
                padding: 40px;
            }
            
            .booking-panel {
                display: none;
            }
            
            .booking-panel.active {
                display: block;
            }
            
            .medicos-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
                margin-bottom: 30px;
            }
            
            .medico-card {
                border: 2px solid #e5e7eb;
                border-radius: 15px;
                padding: 25px 20px;
                text-align: center;
                cursor: pointer;
                transition: all 0.3s;
            }
            
            .medico-card:hover {
                border-color: #98b834;
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(152,184,52,0.15);
            }
            
            .medico-card.selected {
                border-color: #98b834;
                background: rgba(152,184,52,0.05);
                box-shadow: 0 8px 25px rgba(152,184,52,0.2);
            }
            
            .medico-avatar {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                background: linear-gradient(135deg, #98b834, #7a9a2a);
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 15px;
                color: white;
                font-size: 1.8rem;
            }
            
            .medico-card.selected .medico-avatar {
                background: linear-gradient(135deg, #70396c, #c33b3b);
            }
            
            .medico-nome {
                font-weight: 700;
                font-size: 1rem;
                margin-bottom: 5px;
                color: #1a1a2e;
            }
            
            .medico-especialidade {
                font-size: 0.8rem;
                color: #6b7280;
            }
            
            .calendario-grid {
                display: grid;
                grid-template-columns: repeat(7, 1fr);
                gap: 10px;
                margin-bottom: 30px;
            }
            
            .dia-card {
                border: 2px solid #e5e7eb;
                border-radius: 12px;
                padding: 15px 10px;
                text-align: center;
                cursor: pointer;
                transition: all 0.3s;
            }
            
            .dia-card:hover {
                border-color: #98b834;
            }
            
            .dia-card.selected {
                border-color: #98b834;
                background: #98b834;
                color: white;
            }
            
            .dia-card .dia-semana {
                font-size: 0.7rem;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 5px;
            }
            
            .dia-card .dia-numero {
                font-size: 1.5rem;
                font-weight: 700;
            }
            
            .dia-card .dia-mes {
                font-size: 0.7rem;
            }
            
            .dia-card.indisponivel {
                opacity: 0.3;
                cursor: not-allowed;
                pointer-events: none;
            }
            
            .horarios-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 10px;
                margin-bottom: 30px;
            }
            
            .horario-btn {
                padding: 12px;
                border: 2px solid #e5e7eb;
                border-radius: 10px;
                text-align: center;
                cursor: pointer;
                transition: all 0.3s;
                font-weight: 500;
                font-size: 0.9rem;
                background: white;
            }
            
            .horario-btn:hover {
                border-color: #98b834;
            }
            
            .horario-btn.selected {
                background: #98b834;
                color: white;
                border-color: #98b834;
            }
            
            .horario-btn.ocupado {
                opacity: 0.3;
                cursor: not-allowed;
                pointer-events: none;
                text-decoration: line-through;
            }
            
            .selected-info {
                background: rgba(152,184,52,0.1);
                border-radius: 12px;
                padding: 20px;
                margin-bottom: 25px;
                border-left: 4px solid #98b834;
            }
            
            .selected-info p {
                margin: 5px 0;
                font-size: 0.9rem;
            }
            
            .selected-info strong {
                color: #70396c;
            }
            
            .btn-navigation {
                display: flex;
                gap: 15px;
                justify-content: flex-end;
            }
            
            @media (max-width: 768px) {
                .booking-body {
                    padding: 20px 15px;
                }
                .calendario-grid {
                    grid-template-columns: repeat(4, 1fr);
                    gap: 8px;
                }
                .medicos-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: 10px;
                }
                .horarios-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
                .booking-steps {
                    font-size: 0.7rem;
                }
                .booking-step {
                    padding: 15px 10px;
                }
            }

            /*misao, vvisao e valores*/
               .mvv-container {
                max-width: 1100px;
                margin: 0 auto;
            }

            /* Cards principais */
            .mvv-main-cards {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
                margin-bottom: 50px;
            }

            .mvv-card {
                background: white;
                border-radius: 20px;
                padding: 40px 30px;
                text-align: center;
                box-shadow: 0 10px 40px rgba(0,0,0,0.08);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
                border: 2px solid transparent;
            }

            .mvv-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 5px;
            }

            .mvv-card.missao::before {
                background: linear-gradient(90deg, #98b834, #7a9a2a);
            }

            .mvv-card.visao::before {
                background: linear-gradient(90deg, #70396c, #8f4d8a);
            }

            .mvv-card.valores::before {
                background: linear-gradient(90deg, #c33b3b, #e85d5d);
            }

            .mvv-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            }

            .mvv-card.missao:hover { border-color: #98b834; }
            .mvv-card.visao:hover { border-color: #70396c; }
            .mvv-card.valores:hover { border-color: #c33b3b; }

            .mvv-icon {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 25px;
                font-size: 2.2rem;
                transition: all 0.4s ease;
            }

            .mvv-card.missao .mvv-icon {
                background: rgba(152,184,52,0.1);
                color: #98b834;
            }

            .mvv-card.visao .mvv-icon {
                background: rgba(112,57,108,0.1);
                color: #70396c;
            }

            .mvv-card.valores .mvv-icon {
                background: rgba(195,59,59,0.1);
                color: #c33b3b;
            }

            .mvv-card:hover .mvv-icon {
                transform: scale(1.1) rotate(5deg);
            }

            .mvv-card h3 {
                font-family: 'Playfair Display', serif;
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 15px;
            }

            .mvv-card.missao h3 { color: #98b834; }
            .mvv-card.visao h3 { color: #70396c; }
            .mvv-card.valores h3 { color: #c33b3b; }

            .mvv-card p {
                color: #4b5563;
                font-size: 0.95rem;
                line-height: 1.7;
            }

            /* Valores em Grid */
            .valores-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
                margin-top: 40px;
            }

            .valor-item {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                padding: 20px;
                background: #f9fafb;
                border-radius: 14px;
                transition: all 0.3s;
                border-left: 4px solid transparent;
            }

            .valor-item:hover {
                background: white;
                box-shadow: 0 5px 20px rgba(0,0,0,0.06);
                border-left-color: #98b834;
                transform: translateX(5px);
            }

            .valor-icon {
                width: 45px;
                height: 45px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
                flex-shrink: 0;
            }

            .valor-item:nth-child(1) .valor-icon { background: rgba(152,184,52,0.1); color: #98b834; }
            .valor-item:nth-child(2) .valor-icon { background: rgba(112,57,108,0.1); color: #70396c; }
            .valor-item:nth-child(3) .valor-icon { background: rgba(195,59,59,0.1); color: #c33b3b; }
            .valor-item:nth-child(4) .valor-icon { background: rgba(59,130,246,0.1); color: #3b82f6; }
            .valor-item:nth-child(5) .valor-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }
            .valor-item:nth-child(6) .valor-icon { background: rgba(16,185,129,0.1); color: #10b981; }
            .valor-item:nth-child(7) .valor-icon { background: rgba(139,92,246,0.1); color: #8b5cf6; }
            .valor-item:nth-child(8) .valor-icon { background: rgba(236,72,153,0.1); color: #ec4899; }
            .valor-item:nth-child(9) .valor-icon { background: rgba(152,184,52,0.1); color: #98b834; }

            .valor-content h4 {
                font-weight: 700;
                font-size: 1rem;
                color: #1a1a2e;
                margin-bottom: 5px;
            }

            .valor-content p {
                font-size: 0.85rem;
                color: #6b7280;
                line-height: 1.5;
                margin: 0;
            }

            /* Responsivo */
            @media (max-width: 768px) {
                .mvv-main-cards {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }

                .mvv-card {
                    padding: 30px 25px;
                }

                .valores-grid {
                    grid-template-columns: 1fr;
                }
            }

             .servicos-extra-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }

            .servico-extra-card {
                background: white;
                border-radius: 20px;
                padding: 35px 30px;
                text-align: center;
                box-shadow: 0 4px 20px rgba(0,0,0,0.06);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
                border: 2px solid transparent;
            }

            .servico-extra-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: linear-gradient(90deg, #98b834, #70396c, #c33b3b);
                transform: scaleX(0);
                transition: transform 0.4s ease;
            }

            .servico-extra-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0,0,0,0.12);
                border-color: #98b834;
            }

            .servico-extra-card:hover::before {
                transform: scaleX(1);
            }

            .servico-extra-icon {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                font-size: 2.2rem;
                transition: all 0.4s ease;
            }

            .servico-extra-card:nth-child(1) .servico-extra-icon {
                background: rgba(195,59,59,0.1);
                color: #c33b3b;
            }

            .servico-extra-card:nth-child(2) .servico-extra-icon {
                background: rgba(59,130,246,0.1);
                color: #3b82f6;
            }

            .servico-extra-card:nth-child(3) .servico-extra-icon {
                background: rgba(16,185,129,0.1);
                color: #10b981;
            }

            .servico-extra-card:nth-child(4) .servico-extra-icon {
                background: rgba(139,92,246,0.1);
                color: #8b5cf6;
            }

            .servico-extra-card:nth-child(5) .servico-extra-icon {
                background: rgba(245,158,11,0.1);
                color: #f59e0b;
            }

            .servico-extra-card:nth-child(6) .servico-extra-icon {
                background: rgba(236,72,153,0.1);
                color: #ec4899;
            }

            .servico-extra-card:nth-child(7) .servico-extra-icon {
                background: rgba(152,184,52,0.1);
                color: #98b834;
            }

            .servico-extra-card:hover .servico-extra-icon {
                transform: scale(1.1) rotate(5deg);
            }

            .servico-extra-card h3 {
                font-size: 1.2rem;
                font-weight: 700;
                color: #1a1a2e;
                margin-bottom: 10px;
                font-family: 'Playfair Display', serif;
            }

            .servico-extra-card p {
                color: #6b7280;
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .servico-extra-badge {
                display: inline-block;
                background: rgba(152,184,52,0.1);
                color: #98b834;
                padding: 5px 15px;
                border-radius: 50px;
                font-size: 0.75rem;
                font-weight: 700;
                letter-spacing: 0.5px;
                margin-top: 15px;
            }

            @media (max-width: 768px) {
                .servicos-extra-grid {
                    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                    gap: 15px;
                }

                .servico-extra-card {
                    padding: 25px 20px;
                }

                .servico-extra-icon {
                    width: 65px;
                    height: 65px;
                    font-size: 1.8rem;
                }

                .servico-extra-card h3 {
                    font-size: 1.05rem;
                }
            }

            @media (max-width: 480px) {
                .servicos-extra-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: 12px;
                }

                .servico-extra-card {
                    padding: 20px 15px;
                }

                .servico-extra-icon {
                    width: 55px;
                    height: 55px;
                    font-size: 1.5rem;
                    margin-bottom: 12px;
                }

                .servico-extra-card h3 {
                    font-size: 0.95rem;
                }

                .servico-extra-card p {
                    font-size: 0.8rem;
                }
            }


             @media (max-width: 1024px) {
        .doctor-card {
            grid-template-columns: 1fr !important;
        }
        .doctor-image {
            min-height: 300px !important;
        }
        .doctor-info {
            max-height: none !important;
            overflow-y: visible !important;
        }
    }

    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 2rem !important;
        }
        .doctor-info {
            padding: 30px 25px !important;
        }
        .doctor-info h4 {
            font-size: 1.1rem !important;
        }
    }

    @media (max-width: 480px) {
        .doctor-image {
            min-height: 250px !important;
        }
        .doctor-image i {
            font-size: 5rem !important;
        }
        .doctor-info {
            padding: 25px 20px !important;
        }
        .doctor-info ul li {
            font-size: 0.85rem !important;
        }
    }