        /* ============================================================
           VARIABLES Y RESET GLOBAL
        ============================================================ */
        :root {
            --primary:       #0a5ca8;
            --primary-dark:  #073d75;
            --primary-light: #1a7fd4;
            --accent:        #00b4d8;
            --accent2:       #48cae4;
            --green:         #2ec4b6;
            --green-soft:    #d0f0ec;
            --white:         #ffffff;
            --gray-light:    #f4f7fb;
            --gray-mid:      #e8eef5;
            --gray-text:     #6b7a8d;
            --dark:          #0d1b2e;
            --dark2:         #162840;
            --shadow-sm:     0 2px 12px rgba(10,92,168,.08);
            --shadow-md:     0 8px 32px rgba(10,92,168,.14);
            --shadow-lg:     0 20px 60px rgba(10,92,168,.18);
            --radius:        14px;
            --radius-lg:     24px;
            --transition:    .35s cubic-bezier(.4,0,.2,1);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            color: #2a3a4e;
            background: var(--white);
            overflow-x: hidden;
        }

        /* ============================================================
           PAGE LOADER
        ============================================================ */
        #page-loader {
            position: fixed; inset: 0;
            background: var(--dark);
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity .6s ease, visibility .6s ease;
        }
        #page-loader.hidden { opacity: 0; visibility: hidden; }

        .loader-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        .loader-logo span { color: var(--accent); }

        .loader-bar {
            width: 200px; height: 3px;
            background: rgba(255,255,255,.1);
            border-radius: 10px;
            overflow: hidden;
        }
        .loader-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--primary-light));
            border-radius: 10px;
            animation: loaderFill 1.8s ease forwards;
        }
        @keyframes loaderFill {
            from { width: 0; }
            to   { width: 100%; }
        }

        /* ============================================================
           TOPBAR
        ============================================================ */
        #topbar {
            background: var(--dark);
            padding: .55rem 0;
            font-size: .8rem;
            color: rgba(255,255,255,.75);
            z-index: 1050;
        }
        #topbar a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
        #topbar a:hover { color: var(--accent); }

        .topbar-info { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
        .topbar-info span { display: flex; align-items: center; gap: .35rem; }
        .topbar-info i { color: var(--accent); font-size: .85rem; }

        .topbar-social { display: flex; align-items: center; gap: .55rem; }
        .topbar-social a {
            width: 28px; height: 28px;
            background: rgba(255,255,255,.08);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: .75rem;
            transition: background .2s, color .2s;
        }
        .topbar-social a:hover { background: var(--accent); color: var(--white); }
        .topbar-social .wa:hover  { background: #25d366; }
        .topbar-social .fb:hover  { background: #1877f2; }
        .topbar-social .ig:hover  { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
        .topbar-social .li:hover  { background: #0077b5; }
        .topbar-social .tk:hover  { background: #010101; }

        /* ============================================================
           HEADER / NAVBAR
        ============================================================ */
        #mainHeader {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            position: sticky; top: 0; z-index: 1040;
            transition: box-shadow var(--transition);
        }
        #mainHeader.scrolled { box-shadow: var(--shadow-md); }

        .navbar-brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
        .brand-icon {
            width: 44px; height: 44px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(10,92,168,.3);
        }
        .brand-text { line-height: 1.2; }
        .brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem; font-weight: 700;
            color: var(--primary); letter-spacing: .3px;
        }
        .brand-sub { font-size: .68rem; color: var(--gray-text); font-weight: 500; letter-spacing: .8px; text-transform: uppercase; }

        .navbar-nav .nav-link {
            font-weight: 500; font-size: .88rem;
            color: var(--dark2) !important;
            padding: .55rem .85rem !important;
            position: relative; transition: color var(--transition);
        }
        .navbar-nav .nav-link::after {
            content: ''; position: absolute; bottom: 4px; left: .85rem; right: .85rem;
            height: 2px; background: var(--primary);
            transform: scaleX(0); transform-origin: center;
            transition: transform var(--transition);
            border-radius: 2px;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--primary) !important;
        }
        .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
            transform: scaleX(1);
        }

        .btn-login {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--white) !important;
            border-radius: 50px;
            padding: .5rem 1.4rem !important;
            font-weight: 600 !important;
            font-size: .84rem !important;
            box-shadow: 0 4px 15px rgba(10,92,168,.25);
            transition: all var(--transition) !important;
            border: none;
        }
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(10,92,168,.35) !important;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
        }
        .btn-login::after { display: none !important; }

        .navbar-toggler { border: none; padding: .25rem; }
        .navbar-toggler:focus { box-shadow: none; }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10, 92, 168, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ============================================================
           HERO SECTION
        ============================================================ */
        #hero {
            min-height: 100vh;
            background:
                linear-gradient(135deg, rgba(10,63,117,.88) 0%, rgba(0,180,216,.5) 100%),
                url('https://images.unsplash.com/photo-1551601651-2a8555f1a136?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
            display: flex; align-items: center;
            position: relative; overflow: hidden;
            padding: 7rem 0 5rem;
        }

        /* Animated background shapes */
        .hero-shape {
            position: absolute; border-radius: 50%;
            background: rgba(255,255,255,.04);
            animation: floatShape 8s ease-in-out infinite;
        }
        .hero-shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; animation-delay: 0s; }
        .hero-shape-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; animation-delay: 3s; }
        .hero-shape-3 { width: 200px; height: 200px; top: 30%; left: 20%; animation-delay: 1.5s; opacity: .5; }
        @keyframes floatShape {
            0%,100% { transform: translateY(0) scale(1); }
            50%      { transform: translateY(-30px) scale(1.05); }
        }

        .hero-badge {
            display: inline-flex; align-items: center; gap: .5rem;
            background: rgba(255,255,255,.12);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,.2);
            color: var(--accent2);
            padding: .4rem 1rem; border-radius: 50px;
            font-size: .8rem; font-weight: 600; letter-spacing: .5px;
            margin-bottom: 1.5rem;
        }
        .hero-badge i { font-size: .7rem; animation: pulse 2s infinite; }
        @keyframes pulse {
            0%,100% { opacity: 1; } 50% { opacity: .4; }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 700; color: var(--white); line-height: 1.15;
            margin-bottom: 1.3rem;
        }
        .hero-title span { color: var(--accent2); }

        .hero-desc {
            font-size: 1.05rem; color: rgba(255,255,255,.85);
            line-height: 1.7; max-width: 520px; margin-bottom: 2.2rem;
        }

        .hero-btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

        .btn-hero-primary {
            background: linear-gradient(135deg, var(--accent), #0096c7);
            color: var(--white); border: none;
            padding: .85rem 2rem; border-radius: 50px;
            font-weight: 600; font-size: .95rem;
            box-shadow: 0 8px 30px rgba(0,180,216,.4);
            transition: all var(--transition); text-decoration: none;
            display: inline-flex; align-items: center; gap: .5rem;
        }
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(0,180,216,.55);
            color: var(--white);
        }

        .btn-hero-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,.5);
            padding: .85rem 2rem; border-radius: 50px;
            font-weight: 600; font-size: .95rem;
            transition: all var(--transition); text-decoration: none;
            display: inline-flex; align-items: center; gap: .5rem;
            backdrop-filter: blur(6px);
        }
        .btn-hero-outline:hover {
            background: rgba(255,255,255,.15);
            border-color: var(--white);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Floating feature cards */
        .hero-cards {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 1rem; margin-top: 1rem;
        }
        .hero-card {
            background: rgba(255,255,255,.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,.18);
            border-radius: var(--radius);
            padding: 1.1rem 1.2rem;
            transition: transform var(--transition), background var(--transition);
            animation: floatCard 6s ease-in-out infinite;
        }
        .hero-card:nth-child(2) { animation-delay: 1.5s; }
        .hero-card:nth-child(3) { animation-delay: 3s; }
        .hero-card:nth-child(4) { animation-delay: 4.5s; }
        @keyframes floatCard {
            0%,100% { transform: translateY(0); }
            50%      { transform: translateY(-6px); }
        }
        .hero-card:hover { background: rgba(255,255,255,.18); transform: translateY(-8px) !important; }

        .hero-card-icon {
            width: 42px; height: 42px;
            background: linear-gradient(135deg, var(--accent), var(--primary-light));
            border-radius: 10px; display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1rem; margin-bottom: .7rem;
        }
        .hero-card h6 { color: var(--white); font-size: .88rem; font-weight: 700; margin-bottom: .2rem; }
        .hero-card p  { color: rgba(255,255,255,.7); font-size: .75rem; margin: 0; line-height: 1.4; }

        /* ============================================================
           SECTION COMMON
        ============================================================ */
        section { padding: 5.5rem 0; }

        .section-label {
            display: inline-flex; align-items: center; gap: .5rem;
            color: var(--primary); font-size: .78rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1.5px;
            background: rgba(10,92,168,.07);
            padding: .35rem 1rem; border-radius: 50px;
            margin-bottom: 1rem;
        }
        .section-label::before {
            content: ''; width: 18px; height: 2px;
            background: var(--primary); border-radius: 2px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.9rem, 3.5vw, 2.7rem);
            font-weight: 700; color: var(--dark);
            line-height: 1.2; margin-bottom: .8rem;
        }
        .section-title span { color: var(--primary); }

        .section-desc { color: var(--gray-text); font-size: 1rem; line-height: 1.75; max-width: 600px; }

        .divider {
            width: 60px; height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 4px; margin: 1rem 0 1.5rem;
        }
        .divider.center { margin: 1rem auto 1.5rem; }

        /* ============================================================
           NOSOTROS
        ============================================================ */
        #nosotros { background: var(--gray-light); }

        .about-img-wrap { position: relative; }
        .about-img-main {
            width: 100%; border-radius: var(--radius-lg);
            object-fit: cover; height: 450px;
            box-shadow: var(--shadow-lg);
        }
        .about-badge-float {
            position: absolute; bottom: -20px; left: -20px;
            background: var(--white); border-radius: var(--radius);
            padding: 1rem 1.4rem; box-shadow: var(--shadow-md);
            display: flex; align-items: center; gap: .8rem;
        }
        .about-badge-float .icon-wrap {
            width: 48px; height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.3rem; flex-shrink: 0;
        }
        .about-badge-float .num { font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
        .about-badge-float .lbl { font-size: .75rem; color: var(--gray-text); font-weight: 500; }

        .about-exp-badge {
            position: absolute; top: 20px; right: -20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white; border-radius: var(--radius);
            padding: 1rem 1.2rem; text-align: center;
            box-shadow: var(--shadow-md);
        }
        .about-exp-badge .big { font-size: 2.5rem; font-weight: 800; line-height: 1; }
        .about-exp-badge .sm  { font-size: .72rem; letter-spacing: .5px; opacity: .85; }

        /* Mission/Vision/Values tabs */
        .mvv-tabs .nav-link {
            color: var(--gray-text) !important; font-weight: 600; font-size: .88rem;
            border: 2px solid transparent !important; border-radius: 50px !important;
            padding: .5rem 1.2rem !important; background: transparent !important;
            transition: all .25s;
        }
        .mvv-tabs .nav-link.active {
            background: var(--primary) !important;
            color: var(--white) !important;
            border-color: var(--primary) !important;
        }
        .mvv-tabs .nav-link:hover:not(.active) {
            border-color: var(--primary) !important;
            color: var(--primary) !important;
        }

        .value-chip {
            display: inline-flex; align-items: center; gap: .4rem;
            background: var(--white); border: 1px solid var(--gray-mid);
            border-radius: 50px; padding: .4rem 1rem; font-size: .82rem;
            font-weight: 600; color: var(--primary); margin: .25rem;
            transition: all .2s;
        }
        .value-chip i { color: var(--accent); }
        .value-chip:hover { background: var(--primary); color: white; border-color: var(--primary); }
        .value-chip:hover i { color: white; }

        /* Animated stats */
        .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
        @media(max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
        @media(max-width: 480px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }

        .stat-card {
            background: var(--white); border-radius: var(--radius);
            padding: 1.5rem 1.2rem; text-align: center;
            box-shadow: var(--shadow-sm); border: 1px solid var(--gray-mid);
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
        .stat-card .stat-icon {
            width: 54px; height: 54px;
            background: linear-gradient(135deg, rgba(10,92,168,.1), rgba(0,180,216,.1));
            border-radius: 14px; display: flex; align-items: center; justify-content: center;
            margin: 0 auto .8rem; font-size: 1.4rem; color: var(--primary);
        }
        .stat-card .num { font-size: 2.4rem; font-weight: 800; color: var(--primary); line-height: 1; }
        .stat-card .plus { font-size: 1.5rem; color: var(--accent); }
        .stat-card .lbl { font-size: .8rem; color: var(--gray-text); font-weight: 500; margin-top: .3rem; }

        /* ============================================================
           SERVICIOS
        ============================================================ */
        #servicios { background: var(--white); }

        .service-card {
            background: var(--white); border-radius: var(--radius-lg);
            overflow: hidden; box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-mid);
            transition: transform var(--transition), box-shadow var(--transition);
            height: 100%;
        }
        .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

        .service-img-wrap { position: relative; overflow: hidden; height: 200px; }
        .service-img-wrap img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform .6s ease;
        }
        .service-card:hover .service-img-wrap img { transform: scale(1.08); }

        .service-icon-overlay {
            position: absolute; top: 1rem; left: 1rem;
            width: 48px; height: 48px;
            background: var(--primary);
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(10,92,168,.3);
        }

        .service-body { padding: 1.4rem 1.5rem 1.5rem; }
        .service-body h5 { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: .6rem; }
        .service-body p { font-size: .85rem; color: var(--gray-text); line-height: 1.65; margin-bottom: 1rem; }

        .btn-service {
            color: var(--primary); font-size: .83rem; font-weight: 700;
            text-decoration: none; display: inline-flex; align-items: center; gap: .35rem;
            transition: gap var(--transition), color var(--transition);
        }
        .btn-service:hover { color: var(--accent); gap: .6rem; }

        /* ============================================================
           GALERÍA
        ============================================================ */
        #galeria { background: var(--gray-light); }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        @media(max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
        @media(max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

        .gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
        .gallery-item.tall { grid-row: span 2; }

        .gallery-item img {
            width: 100%; height: 100%; object-fit: cover;
            min-height: 220px;
            transition: transform .55s ease;
        }
        .gallery-item:hover img { transform: scale(1.07); }

        .gallery-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(10,63,117,.75) 0%, transparent 60%);
            opacity: 0; transition: opacity .35s;
            display: flex; align-items: flex-end; justify-content: space-between;
            padding: 1rem;
        }
        .gallery-item:hover .gallery-overlay { opacity: 1; }

        .gallery-label { color: white; font-size: .82rem; font-weight: 600; }
        .gallery-zoom {
            width: 36px; height: 36px; background: rgba(255,255,255,.2);
            backdrop-filter: blur(6px); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; color: white;
        }

        /* ============================================================
           TESTIMONIOS
        ============================================================ */
        #testimonios { background: var(--white); }

        .testimonios-bg {
            background:
                linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
            border-radius: var(--radius-lg);
            padding: 4rem 2rem;
            position: relative; overflow: hidden;
        }
        .testimonios-bg::before {
            content: '\201C';
            position: absolute; top: -30px; left: 30px;
            font-size: 18rem; font-family: Georgia,serif;
            color: rgba(255,255,255,.06); line-height: 1;
            pointer-events: none;
        }

        .swiper-testimonios { padding: 0 1rem 3rem !important; }

        .testi-card {
            background: rgba(255,255,255,.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: var(--radius-lg);
            padding: 2rem;
            height: auto;
        }

        .testi-stars { color: #ffd166; font-size: .9rem; margin-bottom: 1rem; }
        .testi-text  { color: rgba(255,255,255,.92); font-size: .95rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }

        .testi-author { display: flex; align-items: center; gap: .85rem; }
        .testi-author img {
            width: 50px; height: 50px; border-radius: 50%;
            object-fit: cover; border: 2px solid rgba(255,255,255,.3);
        }
        .testi-author h6 { color: white; font-size: .9rem; font-weight: 700; margin: 0; }
        .testi-author span { color: rgba(255,255,255,.65); font-size: .75rem; }

        .swiper-pagination-bullet { background: rgba(255,255,255,.5) !important; opacity: 1; }
        .swiper-pagination-bullet-active { background: white !important; }

        /* ============================================================
           CONTACTO
        ============================================================ */
        #contacto { background: var(--gray-light); }

        .contact-form-card {
            background: var(--white); border-radius: var(--radius-lg);
            padding: 2.5rem; box-shadow: var(--shadow-md);
        }
        .form-floating label { font-size: .88rem; color: var(--gray-text); }
        .form-control, .form-select {
            border: 1.5px solid var(--gray-mid) !important;
            border-radius: 10px !important; font-size: .9rem;
            transition: border-color .2s, box-shadow .2s;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary) !important;
            box-shadow: 0 0 0 4px rgba(10,92,168,.1) !important;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white; border: none;
            padding: .85rem 2.5rem; border-radius: 50px;
            font-weight: 700; font-size: .95rem;
            box-shadow: 0 6px 20px rgba(10,92,168,.3);
            transition: all var(--transition); width: 100%;
            display: flex; align-items: center; justify-content: center; gap: .5rem;
        }
        .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(10,92,168,.4); }

        .contact-info-card {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            border-radius: var(--radius-lg); padding: 2.5rem;
            color: white; height: 100%;
        }
        .contact-info-item {
            display: flex; align-items: flex-start; gap: 1rem;
            margin-bottom: 1.5rem; padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }
        .contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .ci-icon {
            width: 44px; height: 44px;
            background: rgba(255,255,255,.1);
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; flex-shrink: 0;
        }
        .ci-label { font-size: .72rem; opacity: .65; font-weight: 500; text-transform: uppercase; letter-spacing: .8px; }
        .ci-value { font-size: .9rem; font-weight: 600; }

        .map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
        .map-wrap iframe { display: block; width: 100%; height: 320px; border: none; }

        /* ===== Map card (fallback sin iframe) ===== */
        .map-card {
            position: relative;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2.5rem 1.5rem;
            overflow: hidden;
            background:
                radial-gradient(circle at 20% 20%, rgba(0,180,216,.18), transparent 45%),
                radial-gradient(circle at 80% 75%, rgba(46,196,182,.18), transparent 45%),
                linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
        }
        .map-card-grid {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
            background-size: 38px 38px;
            -webkit-mask-image: radial-gradient(circle at center, #000 55%, transparent 95%);
            mask-image: radial-gradient(circle at center, #000 55%, transparent 95%);
        }
        .map-card-route {
            position: absolute; inset: 0;
            background:
                linear-gradient(120deg, transparent 46%, rgba(255,255,255,.22) 46%, rgba(255,255,255,.22) 48%, transparent 48%),
                linear-gradient(120deg, transparent 60%, rgba(0,180,216,.35) 60%, rgba(0,180,216,.35) 62%, transparent 62%);
        }
        .map-card-content { position: relative; z-index: 2; max-width: 540px; }
        .map-card-pin {
            width: 76px; height: 76px; margin: 0 auto 1.1rem;
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem; color: #fff;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 0 10px rgba(0,180,216,.22), 0 12px 30px rgba(0,0,0,.28);
            animation: mapPinBounce 2.2s ease-in-out infinite;
        }
        @keyframes mapPinBounce {
            0%,100% { transform: translateY(0); }
            50%     { transform: translateY(-9px); }
        }
        .map-card-title { color: #fff; font-weight: 800; font-size: 1.6rem; margin: 0 0 .3rem; line-height: 1.2; }
        .map-card-title span { color: var(--accent2); font-weight: 600; }
        .map-card-sub { color: rgba(255,255,255,.85); font-size: .98rem; margin: 0 0 1.6rem; }
        .map-card-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
        .map-btn {
            display: inline-flex; align-items: center; gap: .5rem;
            padding: .8rem 1.5rem; border-radius: 50px;
            font-weight: 700; font-size: .92rem; text-decoration: none;
            transition: var(--transition);
        }
        .map-btn-primary { background: #fff; color: var(--primary-dark); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
        .map-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.3); color: var(--primary-dark); }
        .map-btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
        .map-btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); color: #fff; }
        @media (max-width: 480px) {
            .map-card-title { font-size: 1.3rem; }
            .map-btn { width: 100%; justify-content: center; }
        }

        /* ============================================================
           FAQ SECTION
        ============================================================ */
        #faq { background: var(--white); }

        .accordion-button { font-weight: 600; font-size: .92rem; color: var(--dark) !important; }
        .accordion-button:not(.collapsed) { color: var(--primary) !important; background: rgba(10,92,168,.05) !important; }
        .accordion-button:focus { box-shadow: none !important; }
        .accordion-button::after { filter: hue-rotate(200deg); }
        .accordion-item { border: 1px solid var(--gray-mid) !important; border-radius: 10px !important; margin-bottom: .6rem; overflow: hidden; }

        /* ============================================================
           NEWSLETTER
        ============================================================ */
        #newsletter {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
            padding: 4rem 0;
        }
        .newsletter-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700; color: white;
        }
        .newsletter-title span { color: var(--accent2); }
        .newsletter-desc { color: rgba(255,255,255,.65); font-size: .95rem; }

        .newsletter-form { display: flex; gap: .7rem; max-width: 480px; }
        .newsletter-form input {
            flex: 1;
            background: rgba(255,255,255,.1);
            border: 1.5px solid rgba(255,255,255,.15) !important;
            color: white !important; border-radius: 50px !important; padding: .75rem 1.3rem;
            font-size: .88rem;
        }
        .newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
        .newsletter-form input:focus {
            border-color: var(--accent) !important;
            box-shadow: 0 0 0 4px rgba(0,180,216,.15) !important;
            background: rgba(255,255,255,.12) !important;
        }
        .btn-newsletter {
            background: linear-gradient(135deg, var(--accent), #0096c7);
            color: white; border: none; border-radius: 50px;
            padding: .75rem 1.8rem; font-weight: 700; font-size: .88rem;
            white-space: nowrap; transition: all var(--transition);
            box-shadow: 0 4px 15px rgba(0,180,216,.3);
        }
        .btn-newsletter:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,180,216,.5); }
        @media(max-width: 480px) { .newsletter-form { flex-direction: column; } }

        /* ============================================================
           FOOTER
        ============================================================ */
        #footer {
            background: var(--dark);
            padding: 4rem 0 0;
            color: rgba(255,255,255,.7);
        }

        .footer-brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem; font-weight: 700;
            color: var(--white); letter-spacing: .3px;
        }
        .footer-brand-sub { font-size: .7rem; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }
        .footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-top: .8rem; }

        .footer-title {
            color: var(--white); font-size: .9rem; font-weight: 700;
            margin-bottom: 1.2rem; letter-spacing: .3px;
            position: relative; padding-bottom: .6rem;
        }
        .footer-title::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 28px; height: 2px; background: var(--accent); border-radius: 2px;
        }

        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: .6rem; }
        .footer-links a {
            color: rgba(255,255,255,.55); text-decoration: none; font-size: .85rem;
            transition: color .2s, padding-left .2s;
            display: inline-flex; align-items: center; gap: .45rem;
        }
        .footer-links a::before { content: '›'; color: var(--accent); font-size: 1rem; }
        .footer-links a:hover { color: var(--accent); padding-left: .3rem; }

        .footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
        .footer-social a {
            width: 36px; height: 36px;
            background: rgba(255,255,255,.07); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,.6); font-size: .85rem;
            transition: background .2s, color .2s, transform .2s;
        }
        .footer-social a:hover { background: var(--accent); color: white; transform: translateY(-3px); }

        .footer-hours-item {
            display: flex; justify-content: space-between;
            font-size: .82rem; padding: .35rem 0;
            border-bottom: 1px solid rgba(255,255,255,.06);
        }
        .footer-hours-item:last-child { border-bottom: none; }
        .fhi-day { color: rgba(255,255,255,.55); }
        .fhi-time { color: rgba(255,255,255,.85); font-weight: 500; }

        .footer-bottom {
            background: rgba(0,0,0,.25);
            margin-top: 3rem; padding: 1.2rem 0;
            font-size: .8rem; color: rgba(255,255,255,.4);
        }
        .footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
        .footer-bottom a:hover { color: var(--accent); }

        /* ============================================================
           FLOATING ELEMENTS
        ============================================================ */
        /* WhatsApp Button */
        #wa-btn {
            position: fixed; bottom: 5.5rem; right: 1.5rem;
            z-index: 9000;
        }
        .wa-bubble {
            width: 58px; height: 58px; background: #25d366;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.6rem;
            box-shadow: 0 6px 25px rgba(37,211,102,.45);
            text-decoration: none;
            animation: waPop 2.5s ease-in-out infinite;
            transition: transform .25s, box-shadow .25s;
        }
        .wa-bubble:hover { transform: scale(1.12); box-shadow: 0 10px 35px rgba(37,211,102,.6); }
        @keyframes waPop {
            0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
            50%      { box-shadow: 0 6px 25px rgba(37,211,102,.45), 0 0 0 15px rgba(37,211,102,0); }
        }
        .wa-tooltip {
            position: absolute; right: 68px; top: 50%;
            transform: translateY(-50%);
            background: var(--dark); color: white;
            padding: .35rem .85rem; border-radius: 6px; font-size: .78rem; font-weight: 600;
            white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s;
        }
        .wa-tooltip::after {
            content: ''; position: absolute; right: -6px; top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent; border-right: none;
            border-left-color: var(--dark);
        }
        #wa-btn:hover .wa-tooltip { opacity: 1; }

        /* Back to top */
        #back-top {
            position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9000;
            width: 46px; height: 46px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%; color: white; border: none;
            display: flex; align-items: center; justify-content: center; font-size: 1rem;
            box-shadow: var(--shadow-md); cursor: pointer;
            opacity: 0; visibility: hidden; transform: translateY(20px);
            transition: all .3s;
        }
        #back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        #back-top:hover { transform: translateY(-3px) scale(1.08); }

        /* ============================================================
           UTILITIES
        ============================================================ */
        .text-primary-brand { color: var(--primary); }
        .bg-primary-brand   { background: var(--primary); }
        .bg-gradient-brand  { background: linear-gradient(135deg, var(--primary), var(--accent)); }

        /* Responsive adjustments */
        @media(max-width: 991px) {
            .hero-cards { grid-template-columns: repeat(2,1fr); }
            .about-exp-badge { right: 0; top: 10px; }
            .about-badge-float { left: 0; }
        }
        @media(max-width: 767px) {
            section { padding: 3.5rem 0; }
            .topbar-info { gap: .8rem; font-size: .75rem; }
            .hero-cards { gap: .7rem; }
            .hero-card { padding: .9rem 1rem; }
            .hero-card p { display: none; }
            .about-exp-badge { position: static; margin-bottom: 1rem; display: inline-flex; align-items: center; gap: .5rem; }
            .about-exp-badge .big { font-size: 1.5rem; }
            .contact-info-card { margin-top: 1.5rem; }
        }
        @media(max-width: 480px) {
            .hero-btn-group { flex-direction: column; }
            .btn-hero-primary, .btn-hero-outline { justify-content: center; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
        }

        /* ===== Fix responsividad: sin scroll horizontal + menú móvil compacto ===== */
        html, body { overflow-x: hidden; max-width: 100%; }

        @media (max-width: 991.98px) {
            /* El menú desplegable se vuelve un panel limpio, sin espacios sobrantes */
            #navMenu {
                background: var(--white);
                border-top: 1px solid var(--gray-mid);
                margin-top: .5rem;
                padding: .25rem 0 .5rem;
            }
            #navMenu .navbar-nav { margin: 0 !important; gap: 0 !important; width: 100%; }
            #navMenu .nav-link {
                padding: .85rem .25rem !important;
                border-bottom: 1px solid var(--gray-light);
            }
            /* quita el subrayado animado que en móvil se ve como una línea suelta */
            #navMenu .nav-link::after { display: none !important; }
            #navMenu .btn-login {
                width: 100%;
                justify-content: center;
                margin: .75rem 0 0 !important;
            }
        }

        /* Smooth reveal */
        [data-aos] { will-change: transform, opacity; }

        /* ============================================================
           LOADING TRANSITIONS
        ============================================================ */
        .fade-in-up {
            opacity: 0; transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease;
        }
        .fade-in-up.visible { opacity: 1; transform: translateY(0); }
