  /* ─── VARIABLES & RESET ─── */
        :root {
            --brand: #00488F;
            --cream: #F9F5EF;
            --ink: #0D0D0D;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'DM Sans', sans-serif;
            background: #fff;
            color: var(--ink);
            font-size: 18px;
        }
        ::-webkit-scrollbar {
            width: 4px;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--brand);
        }

        /* ─── ANIMACIONES DE SCROLL ─── */
        [data-anim] {
            opacity: 0;
            transition-property: opacity, transform;
            transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
            transition-duration: 0.75s;
            will-change: opacity, transform;
        }
        [data-anim="fade-up"] {
            transform: translateY(40px);
        }
        [data-anim="fade-left"] {
            transform: translateX(-50px);
        }
        [data-anim="fade-right"] {
            transform: translateX(50px);
        }
        [data-anim].is-visible {
            opacity: 1;
            transform: none;
        }
        [data-anim-delay="1"] {
            transition-delay: 0.08s;
        }
        [data-anim-delay="2"] {
            transition-delay: 0.18s;
        }
        [data-anim-delay="3"] {
            transition-delay: 0.28s;
        }
        [data-anim-delay="4"] {
            transition-delay: 0.38s;
        }
        @media (prefers-reduced-motion: reduce) {
            [data-anim] {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }

        /* ─── BARRA DE PROGRESO ─── */
        #progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 200;
            height: 2px;
            width: 0%;
            background: var(--brand);
            transition: width 0.1s linear;
        }

        /* ─── HEADER ─── */
        #site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 74px;
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(0px);
            border-bottom: 1px solid transparent;
            transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, height 0.35s, box-shadow 0.35s;
        }
        #site-header.scrolled {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(16px);
            border-bottom-color: rgba(0, 72, 143, 0.08);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
            height: 62px;
        }
        @media (max-width: 768px) {
            #site-header {
                padding: 0 20px;
                height: 64px;
                background: rgba(255, 255, 255, 0.97);
                backdrop-filter: blur(16px);
                border-bottom-color: rgba(0, 72, 143, 0.08);
            }
            #site-header.scrolled {
                height: 56px;
            }
        }
        .header-logo img {
            height: 38px;
            width: auto;
            transition: height 0.35s;
        }
        #site-header.scrolled .header-logo img {
            height: 32px;
        }
        .header-logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            display: none;
        }

        /* ─── DESKTOP NAV ─── */
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none !important;
            }
        }
        .nav-link {
            position: relative;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: #64748b;
            font-weight: 600;
            text-decoration: none;
            padding: 7px 12px;
            transition: color 0.25s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            right: 12px;
            height: 1.5px;
            background: var(--brand);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .nav-link:hover,
        .nav-link.active {
            color: var(--brand);
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }
        .nav-cta {
            margin-left: 14px;
            padding: 11px 24px;
            background: var(--brand);
            color: white;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background 0.25s, box-shadow 0.25s;
            white-space: nowrap;
        }
        .nav-cta:hover {
            background: #003570;
            box-shadow: 0 4px 16px rgba(0, 72, 143, 0.35);
        }

        /* ─── HAMBURGER ─── */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px;
            width: 36px;
            height: 36px;
            position: relative;
            z-index: 110;
        }
        .hamburger span {
            display: block;
            height: 1.5px;
            background: var(--ink);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }
        .hamburger span:nth-child(1) {
            width: 24px;
        }
        .hamburger span:nth-child(2) {
            width: 16px;
        }
        .hamburger span:nth-child(3) {
            width: 20px;
        }
        .hamburger.active span:nth-child(1) {
            width: 22px;
            transform: translateY(6.5px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            width: 22px;
            transform: translateY(-6.5px) rotate(-45deg);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }

        /* ─── MENÚ MOBILE ─── */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 105;
            flex-direction: column;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mm-panel {
            position: absolute;
            inset: 0;
            background: white;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .mobile-menu.open .mm-panel {
            transform: translateX(0);
        }
        .mm-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 80px 36px 48px;
            justify-content: center;
        }
        .mm-inner::before {
            content: '';
            position: absolute;
            left: 36px;
            top: 100px;
            bottom: 60px;
            width: 1px;
            background: rgba(0, 72, 143, 0.12);
        }
        .mm-label {
            font-size: 11px;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--brand);
            font-weight: 700;
            margin-bottom: 32px;
            padding-left: 16px;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.3s 0.15s, transform 0.3s 0.15s;
        }
        .mobile-menu.open .mm-label {
            opacity: 1;
            transform: translateY(0);
        }
        .mm-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding-left: 16px;
        }
        .mm-link {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(38px, 10vw, 54px);
            font-weight: 300;
            color: var(--ink);
            text-decoration: none;
            line-height: 1.15;
            padding: 5px 0;
            position: relative;
            display: inline-block;
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.35s, transform 0.35s, color 0.2s;
        }
        .mm-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--brand);
            transition: width 0.3s;
        }
        .mm-link:hover {
            color: var(--brand);
        }
        .mm-link:hover::after {
            width: 100%;
        }
        .mobile-menu.open .mm-link:nth-child(1) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.12s;
        }
        .mobile-menu.open .mm-link:nth-child(2) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.18s;
        }
        .mobile-menu.open .mm-link:nth-child(3) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.24s;
        }
        .mobile-menu.open .mm-link:nth-child(4) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.30s;
        }
        .mobile-menu.open .mm-link:nth-child(5) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.36s;
        }
        .mobile-menu.open .mm-link:nth-child(6) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.42s;
        }
        .mm-footer {
            margin-top: auto;
            padding-left: 16px;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s 0.45s, transform 0.3s 0.45s;
        }
        .mobile-menu.open .mm-footer {
            opacity: 1;
            transform: translateY(0);
        }
        .mm-socials {
            display: flex;
            gap: 16px;
            margin-top: 8px;
        }
        .mm-socials a {
            color: #94a3b8;
            font-size: 20px;
            text-decoration: none;
            transition: color 0.2s;
        }
        .mm-socials a:hover {
            color: var(--brand);
        }

        /* ─── HERO ─── */
        #inicio {
            min-height: 90svh;
            background: var(--cream);
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: stretch;
            padding-top: 70px;
        }
        @media (max-width: 768px) {
            #inicio {
                grid-template-columns: 1fr;
                grid-template-rows: auto 55vw;
                min-height: 90svh;
            }
        }
        .hero-left {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 70px 60px 70px 80px;
        }
        @media (max-width: 1200px) {
            .hero-left {
                padding: 60px 40px;
            }
        }
        @media (max-width: 768px) {
            .hero-left {
                padding: 48px 24px 36px;
                text-align: center;
                align-items: center;
            }
        }
        .hero-eyebrow {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 12px;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--brand);
            font-weight: 700;
            margin-bottom: 28px;
        }
        .hero-eyebrow-line {
            width: 40px;
            height: 1px;
            background: var(--brand);
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .hero-eyebrow-line {
                display: none;
            }
        }
        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(62px, 8vw, 124px);
            font-weight: 300;
            line-height: 0.92;
            margin-bottom: 32px;
        }
        .hero-title em {
            font-style: italic;
            color: var(--brand);
            position: relative;
            display: block;
        }
        .hero-title em::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brand), transparent);
        }
        @media (max-width: 768px) {
            .hero-title em::after {
                left: 50%;
                transform: translateX(-50%);
                width: 60%;
                right: auto;
            }
        }
        .hero-desc {
            max-width: 440px;
            font-size: 18px;
            line-height: 1.85;
            color: #4a5568;
            font-weight: 300;
            margin-bottom: 44px;
        }
        .hero-cta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .hero-cta {
                justify-content: center;
                width: 100%;
            }
        }
        .btn-primary {
            padding: 17px 42px;
            background: var(--brand);
            color: white;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: box-shadow 0.3s;
        }
        .btn-primary:hover {
            box-shadow: 0 8px 24px rgba(0, 72, 143, 0.35);
        }
        .btn-outline {
            padding: 17px 42px;
            background: transparent;
            color: var(--brand);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            border: 1.5px solid var(--brand);
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-outline:hover {
            background: var(--brand);
            color: white;
        }
        @media (max-width: 480px) {
            .btn-primary,
            .btn-outline {
                width: 100%;
                text-align: center;
                padding: 17px 24px;
            }
        }
        .hero-stats {
            display: flex;
            gap: 36px;
            margin-top: 52px;
            padding-top: 40px;
            border-top: 1px solid rgba(0, 72, 143, 0.15);
        }
        @media (max-width: 768px) {
            .hero-stats {
                justify-content: center;
                gap: 24px;
            }
        }
        .stat-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 52px;
            line-height: 1;
            color: var(--brand);
        }
        .stat-label {
            font-size: 11px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #718096;
            margin-top: 4px;
        }
        .hero-right {
            position: relative;
            z-index: 1;
            background: #1a1a2e;
            overflow: hidden;
        }
        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            opacity: 0.65;
            transition: transform 8s ease;
        }
        .hero-right:hover .hero-img {
            transform: scale(1.04);
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--cream) 0%, transparent 28%),
                linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
        }
        @media (max-width: 768px) {
            .hero-overlay {
                background: linear-gradient(to bottom, var(--cream) 0%, transparent 25%),
                    linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
            }
        }
        .hero-badge {
            position: absolute;
            bottom: 32px;
            right: 28px;
            background: white;
            padding: 20px 24px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
            text-align: center;
            animation: float 4s ease-in-out infinite;
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        .hero-badge-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 56px;
            line-height: 1;
            color: var(--brand);
        }
        .hero-badge-text {
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #666;
        }
        @media (max-width: 768px) {
            .hero-badge {
                bottom: 16px;
                right: 16px;
                padding: 14px 18px;
            }
            .hero-badge-num {
                font-size: 38px;
            }
        }

        /* ─── TICKER ─── */
        .ticker-strip {
            background: var(--brand);
            color: white;
            overflow: hidden;
            height: 44px;
            display: flex;
            align-items: center;
        }
        .ticker-content {
            display: flex;
            animation: ticker 28s linear infinite;
            white-space: nowrap;
        }
        .ticker-item {
            font-size: 11px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            padding: 0 40px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .ticker-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.35);
            flex-shrink: 0;
        }
        @keyframes ticker {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        /* ─── SECCIONES ─── */
        section {
            padding: 90px 0;
        }
        @media (max-width: 768px) {
            section {
                padding: 64px 0;
            }
        }
        .section-label {
            font-size: 12px;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--brand);
            font-weight: 700;
            display: block;
            margin-bottom: 14px;
        }
        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(38px, 5.5vw, 62px);
            color: var(--ink);
            line-height: 1.05;
        }
        .hover-lift {
            transition: transform 0.3s;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 18px;
            }
        }

        /* ─── CATÁLOGOS ─── */
        .cat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 900px) {
            .cat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 540px) {
            .cat-grid {
                grid-template-columns: 1fr;
            }
        }
        .cat-card {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/5;
            cursor: pointer;
            background: #e2e8f0;
        }
        .cat-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.72;
            transition: transform 0.7s ease;
        }
        .cat-card:hover img {
            transform: scale(1.08);
        }
        .cat-info {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 28px;
            text-align: center;
        }
        .cat-subtitle {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.22em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .cat-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(30px, 3.8vw, 46px);
            color: white;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
        }
        .cat-cta {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-top: 18px;
        }

        /* ─── SERVICIOS ─── */
        .srv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        @media (max-width: 1100px) {
            .srv-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 540px) {
            .srv-grid {
                grid-template-columns: 1fr;
            }
        }
        .srv-card {
            text-align: center;
            padding: 40px 28px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }
        .srv-icon {
            width: 76px;
            height: 76px;
            margin: 0 auto 22px;
            background: rgba(0, 72, 143, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .srv-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--ink);
        }
        .srv-card p {
            font-size: 15px;
            line-height: 1.75;
            color: #64748b;
        }

        /* ─── CLIENTES (CARRUSEL OPTIMIZADO) ─── */
        .cl-wrapper {
            position: relative;
            padding: 0 28px;
        }
        .cl-viewport {
            overflow: hidden;
            border-radius: 8px;
        }
        .cl-track {
            display: flex;
            gap: var(--gap, 16px);
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        .cl-track.no-transition {
            transition: none !important;
        }
        .cl-slide {
            flex-shrink: 0;
            aspect-ratio: 1 / 0.68;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        .cl-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
            display: block;
        }
        .cl-slide:hover img {
            transform: scale(1.04);
        }
        .cl-slide-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px 18px 16px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
            color: white;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.04em;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .cl-slide:hover .cl-slide-label {
            opacity: 1;
        }
        .cl-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: white;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--brand);
            transition: all 0.2s;
        }
        .cl-btn:hover {
            background: var(--brand);
            color: white;
            border-color: var(--brand);
        }
        .cl-btn.prev {
            left: 0;
        }
        .cl-btn.next {
            right: 0;
        }
        .cl-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        @media (max-width: 600px) {
            .cl-wrapper {
                padding: 0 20px;
            }
            .cl-btn {
                width: 34px;
                height: 34px;
                font-size: 12px;
            }
        }

        /* ─── NOSOTROS ─── */
        .nos-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        @media (max-width: 900px) {
            .nos-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }
        .nos-img-wrap {
            position: relative;
        }
        .nos-img-inner {
            background: white;
            padding: 15px;
        }
        @media (max-width: 480px) {
            .nos-img-inner {
                padding: 16px;
            }
        }

        /* ─── CONTACTO ─── */
        .cont-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
        }
        @media (max-width: 900px) {
            .cont-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        .map-wrap {
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border-radius: 4px;
        }
        .map-wrap iframe {
            display: block;
            width: 100%;
            height: 460px;
            border: 0;
        }
        @media (max-width: 768px) {
            .map-wrap iframe {
                height: 300px;
            }
        }
        .map-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
            background: var(--brand);
            color: white;
            padding: 14px 18px;
            box-shadow: 0 8px 24px rgba(0, 72, 143, 0.4);
        }
        @media (max-width: 480px) {
            .map-badge {
                top: 12px;
                right: 12px;
                padding: 10px 14px;
            }
        }
        .map-badge .badge-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0.8;
            margin-bottom: 4px;
        }
        .map-badge .badge-hours {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .info-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 6px;
            color: var(--ink);
        }
        .info-value {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.65;
        }
        .social-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #475569;
            font-size: 20px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }
        .social-btn:hover {
            background: var(--brand);
            color: white;
        }

        /* ─── MODAL (CARRUSEL OPTIMIZADO) ─── */
        .catalog-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(5, 10, 20, 0.88);
            padding: 16px;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
        }
        .catalog-modal.open {
            display: flex;
            animation: fadeIn 0.22s ease;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        .modal-content {
            position: relative;
            width: 100%;
            max-width: 980px;
            background: white;
            border-radius: 6px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
            padding: 40px 48px 32px;
            max-height: 92svh;
            overflow-y: auto;
            animation: slideUp 0.32s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(28px) scale(0.97);
            }
            to {
                opacity: 1;
                transform: none;
            }
        }
        @media (max-width: 600px) {
            .modal-content {
                padding: 24px 18px 20px;
            }
        }
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 28px;
            gap: 12px;
        }
        .modal-badge-tag {
            display: inline-block;
            font-size: 10px;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--brand);
            font-weight: 700;
            padding: 6px 14px;
            border: 1px solid var(--brand);
            margin-bottom: 8px;
        }
        .modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 400;
        }
        .modal-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f1f5f9;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 17px;
            color: #555;
            flex-shrink: 0;
            transition: all 0.2s;
        }
        .modal-close:hover {
            background: var(--brand);
            color: white;
        }
        .c-wrapper {
            position: relative;
            padding: 0 8px;
        }
        .c-viewport {
            overflow: hidden;
            border-radius: 4px;
        }
        .c-track {
            display: flex;
            gap: var(--gap, 12px);
            transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        .c-track.no-transition {
            transition: none !important;
        }
        .c-slide {
            flex-shrink: 0;
            aspect-ratio: 4/5;
            overflow: hidden;
            position: relative;
            cursor: zoom-in;
            border-radius: 4px;
        }
        .c-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 72, 143, 0.45) 0%, transparent 55%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .c-slide:hover::after {
            opacity: 1;
        }
        .c-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
        }
        .c-slide:hover img {
            transform: scale(1.06);
        }
        .c-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: white;
            border: 1px solid #dde3ec;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--brand);
            transition: all 0.2s;
        }
        .c-btn:hover {
            background: var(--brand);
            color: white;
            border-color: var(--brand);
        }
        .c-btn.prev {
            left: -22px;
        }
        .c-btn.next {
            right: -22px;
        }
        @media (max-width: 600px) {
            .c-btn {
                width: 34px;
                height: 34px;
                font-size: 12px;
            }
            .c-btn.prev {
                left: -10px;
            }
            .c-btn.next {
                right: -10px;
            }
        }
        .c-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 22px;
        }
        .dot {
            width: 7px;
            height: 7px;
            border-radius: 3px;
            background: #cbd5e0;
            cursor: pointer;
            transition: all 0.25s;
        }
        .dot.active {
            width: 22px;
            background: var(--brand);
        }
        .c-counter {
            text-align: center;
            font-size: 13px;
            color: #94a3b8;
            margin-top: 12px;
            letter-spacing: 0.06em;
        }

        /* ─── FOOTER ─── */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        @media (max-width: 600px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }