/* =====================================================
   STYLE.CSS - Dra. Mónica Vera - Cirugía de Obesidad
   Stack: Bootstrap 5.3 + Vanilla CSS + AOS
   Fuentes: Outfit (títulos) | Inter (texto)
   ===================================================== */

/* ---- IMPORTACIÓN DE FUENTES ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* =====================================================
   VARIABLES GLOBALES - SISTEMA DE DISEÑO
   ===================================================== */
:root {
    /* Paleta de Color Principal */
    --primary: #0b5997;
    --primary-dark: #073d6a;
    --primary-light: #1a77c9;
    --accent: #00b4d8;
    --accent-light: #48cae4;
    --success: #27ae60;
    --warning: #f39c12;

    /* Neutros */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --dark: #0f172a;

    /* Tipografía */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Espaciado */
    --section-py: 5rem;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(11, 89, 151, 0.1);
    --shadow-md: 0 8px 30px rgba(11, 89, 151, 0.15);
    --shadow-lg: 0 20px 60px rgba(11, 89, 151, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.25);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: backdrop-filter: blur(16px);

    /* Radios */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   TOPBAR
   ===================================================== */
.topbar {
    background: var(--primary-dark);
    padding: 0.45rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.topbar a {
    color: rgba(255, 255, 255, 0.85);
}

.topbar a:hover {
    color: var(--accent-light);
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbar-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}

.topbar-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* =====================================================
   NAVBAR - GLASSMORPHISM
   ===================================================== */
.navbar-main {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
    transition: var(--transition-slow);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar-main.scrolled {
    padding: 0.4rem 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.97);
}

.navbar-brand img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.navbar-main.scrolled .navbar-brand img {
    height: 44px;
}

/* Nav Links */
.navbar-main .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--gray-800) !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: var(--radius-sm);
    position: relative;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    width: 70%;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--primary) !important;
}

/* =====================================================
   MEGA MENU ESPECTACULAR
   ===================================================== */
.navbar-main .dropdown-mega {
    position: static !important;
}

.navbar-main .dropdown-menu.mega-menu-container {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95%;
    max-width: 1140px;
    border: 1px solid rgba(11, 89, 151, 0.12);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(7, 61, 106, 0.2), 0 0 35px rgba(0, 180, 216, 0.08);
    background: #ffffff;
    padding: 1.5rem !important;
    margin-top: 0.75rem;
    animation: dropdownFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translate(-50%, -12px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Título de Categoría */
.mega-menu-cat-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gray-100);
}

.cat-icon-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(11, 89, 151, 0.12), rgba(0, 180, 216, 0.12));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
}

.cat-icon-badge.accent {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(72, 202, 228, 0.2));
    color: #0088ad;
}

/* Lista e Ítems del Mega Menú */
.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    position: relative;
    border: 1px solid transparent;
}

.mega-menu-item:hover {
    background: linear-gradient(90deg, rgba(11, 89, 151, 0.05) 0%, rgba(0, 180, 216, 0.03) 100%);
    border-color: rgba(11, 89, 151, 0.1);
    transform: translateX(5px);
}

.mega-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(11, 89, 151, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.mega-item-icon.emergency {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.mega-menu-item:hover .mega-item-icon {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(11, 89, 151, 0.3);
    transform: scale(1.08);
}

.mega-menu-item:hover .mega-item-icon.emergency {
    background: #e74c3c;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.mega-item-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mega-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.25;
    transition: color 0.2s ease;
}

.mega-menu-item:hover .mega-item-title {
    color: var(--primary);
}

.mega-item-sub {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray-600);
    margin-top: 0.1rem;
    line-height: 1.25;
}

/* Indicador de flecha al pasar el mouse */
.mega-arrow {
    font-size: 1.1rem;
    color: var(--gray-400);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}

.mega-menu-item:hover .mega-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

/* Badges decorativos */
.mega-badge {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.12rem 0.45rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
}

.badge-gold {
    background: rgba(243, 156, 18, 0.15);
    color: #d68910;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.badge-blue {
    background: rgba(11, 89, 151, 0.1);
    color: var(--primary);
}

.badge-green {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.badge-red {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* Banner CTA Derecha */
.mega-menu-cta-card {
    background: linear-gradient(135deg, #073d6a 0%, #0b5997 60%, #00b4d8 100%);
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(7, 61, 106, 0.25);
    position: relative;
    overflow: hidden;
}

.mega-cta-bg-glow {
    position: absolute;
    top: -30%;
    right: -30%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.mega-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.mega-menu-cta-card .cta-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.mega-menu-cta-card .cta-card-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
    margin-bottom: 0.85rem;
}

.mega-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.mega-cta-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.3rem;
}

.mega-cta-list li i {
    color: #48cae4;
    font-size: 0.95rem;
}

.btn-mega-cta-wp {
    background: #25d366;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.86rem;
    padding: 0.65rem 1.1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-mega-cta-wp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

/* Botón CTA nav */
.navbar-main .nav-link.btn-nav-cta,
.navbar-main .nav-link.btn-nav-cta:hover,
.navbar-main .nav-link.btn-nav-cta:focus,
.navbar-main .nav-link.btn-nav-cta.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: #ffffff !important;
    padding: 0.6rem 1.35rem !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    box-shadow: 0 4px 15px rgba(11, 89, 151, 0.35) !important;
    transition: var(--transition) !important;
}

.navbar-main .nav-link.btn-nav-cta i {
    color: #ffffff !important;
}

.navbar-main .nav-link.btn-nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(11, 89, 151, 0.45) !important;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    color: #ffffff !important;
}

.navbar-main .nav-link.btn-nav-cta::after {
    display: none !important;
}

/* =====================================================
   BOTONES GLOBALES
   ===================================================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.01em;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* =====================================================
   SECCIONES - UTILIDADES
   ===================================================== */
.section-py {
    padding: var(--section-py) 0;
}

.section-py-sm {
    padding: 3rem 0;
}

.section-bg-light {
    background-color: var(--gray-50);
}

.section-bg-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.text-center .section-label,
.section-label.justify-content-center {
    justify-content: center;
}

.text-center .section-label::after,
.section-label.justify-content-center::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 640px;
    line-height: 1.8;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1e6fba 100%);
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 61, 106, 0.75) 0%, rgba(11, 89, 151, 0.65) 60%, rgba(30, 111, 186, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bypass.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: luminosity;
    z-index: 1;
    pointer-events: none;
}

/* Partículas decorativas */
.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 89, 151, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--accent-light);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(90deg, var(--accent-light), #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-number span {
    color: var(--accent-light);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Tarjeta flotante del héroe */
.hero-floating-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hero-floating-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

/* Layer flotante de la Doctora alineado al fondo absoluto del Hero */
.hero-doctor-cutout-layer {
    position: absolute;
    bottom: 0;
    right: max(2rem, calc((100vw - 1320px) / 2 + 1rem));
    width: clamp(380px, 36vw, 520px);
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 1400px) {
    .hero-doctor-cutout-layer {
        right: max(1.5rem, calc((100vw - 1140px) / 2 + 1rem));
        width: clamp(350px, 38vw, 480px);
    }
}

@media (max-width: 1200px) {
    .hero-doctor-cutout-layer {
        right: 1rem;
        width: 380px;
    }
}

.hero-doctor-cutout-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.hero-doctor-cutout-img {
    max-height: 86vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.45));
    transition: transform 0.5s ease;
    pointer-events: auto;
}

.hero-doctor-cutout-layer:hover .hero-doctor-cutout-img {
    transform: scale(1.02);
}

.hero-doctor-floating-badge {
    position: absolute;
    bottom: 3.5rem;
    left: -2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 15px 35px rgba(7, 61, 106, 0.25);
    z-index: 4;
    animation: floatPill 5s ease-in-out infinite;
    pointer-events: auto;
}

.hero-doctor-floating-badge .badge-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 89, 151, 0.25);
}

.hero-doctor-floating-badge .badge-info {
    display: flex;
    flex-direction: column;
}

.hero-doctor-floating-badge .badge-info strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.hero-doctor-floating-badge .badge-info span {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.15rem;
}

/* Imagen del héroe */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* Pill decorativo */
.hero-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-800);
    box-shadow: var(--shadow-md);
    font-family: var(--font-heading);
    animation: floatPill 4s ease-in-out infinite;
}

.hero-pill.pill-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero-pill.pill-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes floatPill {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

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

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb-section {
    background: var(--gray-50);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}

.breadcrumb-item a {
    color: var(--primary);
    font-size: 0.85rem;
}

.breadcrumb-item.active {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* =====================================================
   TARJETAS DE CARACTERÍSTICAS
   ===================================================== */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: auto;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(11, 89, 151, 0.1), rgba(0, 180, 216, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: rotate(5deg) scale(1.05);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   SECCIÓN DE INFORMACIÓN PRINCIPAL
   ===================================================== */
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: auto;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    color: var(--gray-600);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* =====================================================
   ACCORDION - FAQ
   ===================================================== */
.faq-accordion .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md) !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(11, 89, 151, 0.05), rgba(0, 180, 216, 0.05));
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b5997'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
    padding: 0 1.5rem 1.25rem;
}

/* =====================================================
   TARJETAS DE PROCESO (PASOS)
   ===================================================== */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.3;
}

.step-card:last-child::after {
    display: none;
}

.step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* =====================================================
   SECCIÓN CTA
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   TARJETA DE CONTACTO LATERAL
   ===================================================== */
.contact-sticky-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
    position: sticky;
    top: 100px;
}

.contact-sticky-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(11, 89, 151, 0.1), rgba(0, 180, 216, 0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item .info-text {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.contact-info-item .info-value {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-main {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 5rem 0 0;
}

.footer-brand img {
    background-color: var(--white, #ffffff);
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    display: inline-block;
    max-width: 100%;
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: none !important;
    opacity: 1;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.25rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* =====================================================
   WHATSAPP FLOTANTE
   ===================================================== */
.whatsapp-float {
    position: fixed !important;
    bottom: 2rem !important;
    left: 2rem !important;
    right: auto !important;
    z-index: 9999 !important;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float a {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* =====================================================
   SECCIÓN DE ESTADÍSTICAS
   ===================================================== */
.stat-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.stat-box-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* =====================================================
   TESTIMONIAL CARD
   ===================================================== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    font-family: var(--font-heading);
}

.testimonial-author-detail {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* =====================================================
   RISK INDICATOR
   ===================================================== */
.risk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.risk-item:hover {
    background: rgba(11, 89, 151, 0.05);
}

.risk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.risk-dot.green {
    background: var(--success);
}

.risk-dot.orange {
    background: var(--warning);
}

.risk-dot.blue {
    background: var(--primary);
}

/* =====================================================
   ANIMACIONES ADICIONALES
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.7s ease both;
}

/* Delay helpers */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* =====================================================
   RESPONSIVE & MOBILE UX REFINEMENTS
   ===================================================== */
@media (max-width: 991.98px) {
    :root {
        --section-py: 3.5rem;
    }

    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-image-wrapper {
        display: none;
    }

    .hero-stats {
        gap: 1.25rem;
        justify-content: center;
    }

    .step-card::after {
        display: none;
    }

    /* Navbar y Mega Menú Móvil */
    .navbar-main .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 1.25rem;
        margin-top: 0.75rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--gray-200);
    }

    .navbar-main .navbar-nav {
        gap: 0.35rem;
        text-align: center;
    }

    .navbar-main .nav-link {
        padding: 0.65rem 1rem !important;
        text-align: center;
    }

    .navbar-main .nav-link::after {
        display: none !important;
    }

    .navbar-main .dropdown-mega {
        position: relative !important;
    }

    .navbar-main .dropdown-menu.mega-menu-container {
        position: static !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0.5rem;
        box-shadow: none !important;
        border: 1px solid var(--gray-200);
        padding: 1rem !important;
        animation: none !important;
    }

    .navbar-main .nav-link.btn-nav-cta {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-py: 2.75rem;
    }

    /* Topbar Móvil Centrada */
    .topbar .container>div {
        justify-content: center !important;
        text-align: center;
    }

    .topbar-info {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 0.35rem;
    }

    .topbar-info span {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        font-size: 0.76rem;
    }

    .topbar-social {
        justify-content: center;
        width: 100%;
        margin-top: 0.35rem;
    }

    /* Hero Section Móvil */
    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 1rem auto;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.3rem);
        line-height: 1.25;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-pill {
        display: none;
    }

    .contact-sticky-card {
        position: static;
        padding: 1.5rem;
    }

    /* Tarjetas y Contenedores Móviles */
    .service-home-card,
    .bmi-calculator-card {
        padding: 1.35rem;
    }

    /* Footer Móvil Centrado */
    .footer-main {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-brand img {
        margin: 0 auto;
        display: inline-block;
    }

    .footer-brand p {
        text-align: center;
    }

    .footer-social {
        justify-content: center !important;
        margin-top: 1rem;
    }

    .footer-heading {
        text-align: center;
        margin-top: 1.25rem;
    }

    .footer-links {
        text-align: center;
        padding-left: 0;
    }

    .footer-links li a {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center !important;
        text-align: center;
    }

    .footer-contact-item span {
        text-align: center;
    }

    .footer-main .btn-primary-custom,
    .footer-main #footer-cta-btn {
        display: inline-flex;
        margin: 0 auto;
    }

    .footer-main .mt-3 {
        text-align: center;
    }

    .footer-bottom .container>div {
        justify-content: center !important;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom p {
        text-align: center;
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .btn-primary-custom,
    .btn-whatsapp,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.65rem;
    }
}

/* =====================================================
   CALCULADORA DE IMC (BMI CALCULATOR) WIDGET
   ===================================================== */
.bmi-calculator-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(11, 89, 151, 0.12);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.bmi-result-box {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    text-align: center;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bmi-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    margin: 0.5rem 0;
}

.bmi-badge-status {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.status-normal {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.status-sobrepeso {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid #f39c12;
}

.status-obesidad-1 {
    background: rgba(230, 126, 34, 0.2);
    color: #e67e22;
    border: 1px solid #e67e22;
}

.status-obesidad-2 {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.status-obesidad-3 {
    background: rgba(192, 57, 43, 0.3);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.service-home-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-home-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-home-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(11, 89, 151, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-home-card:hover .service-home-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.service-home-card:hover .service-home-img-wrapper img {
    transform: scale(1.06);
}

/* Estilos unificados en .footer-brand img */

/* =====================================================
   SECCIÓN CONTACTO - ESTILOS UX/UI REFINADOS
   ===================================================== */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background: rgba(11, 89, 151, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.08);
}

.contact-hours-card {
    transition: var(--transition);
}

.contact-hours-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-light) !important;
}

.contact-sticky-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-sticky-card:hover {
    box-shadow: var(--shadow-lg);
}

.contact-sticky-card .form-control,
.contact-sticky-card .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-sticky-card .form-control:focus,
.contact-sticky-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 89, 151, 0.12);
    outline: none;
}

/* =====================================================
   GALERÍA FOTOGRÁFICA Y CARDS DE HITOS
   ===================================================== */
.gallery-card {
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
    border-color: var(--primary-light) !important;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}