:root {
            --azul-primario: #0a1f3d;
            --azul-secundario: #1a3b6d;
            --azul-acento: #2a5ba8;
            --negro-mate: #0d0d0d;
            --degradado-fondo: linear-gradient(135deg, var(--negro-mate) 30%, var(--azul-primario) 100%);
        }

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

        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: var(--degradado-fondo);
            color: white;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
            opacity: 0.1;
            z-index: -1;
            animation: moverFondo 20s linear infinite;
        }

        @keyframes moverFondo {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        /* Calculadora profesional */
        .calculadora-precio {
            background: rgba(255, 255, 255, 0.13);
            border-radius: 16px;
            padding: 2.2rem 1.5rem 1.5rem 1.5rem;
            margin: 2.2rem 0 1.2rem 0;
            box-shadow: 0 4px 16px rgba(42, 91, 168, 0.10);
            border: 1.5px solid var(--azul-acento);
        }

        .calculadora-precio h3 {
            color: var(--azul-acento);
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            letter-spacing: 1px;
        }

        .detalle-precio {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 1rem 0;
            padding: 1.1rem 1.2rem;
            background: rgba(255, 255, 255, 0.09);
            border-radius: 10px;
            font-size: 1.08rem;
            border: 1px solid rgba(42,91,168,0.10);
            box-shadow: 0 1px 4px rgba(42,91,168,0.06);
        }

        .detalle-precio span:first-child:before {
            content: '\f02b';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--azul-acento);
            margin-right: 0.7em;
            font-size: 1.1em;
            vertical-align: middle;
        }

        .total-container {
            background: var(--azul-acento);
            padding: 1.7rem;
            border-radius: 12px;
            margin: 2.2rem 0 0.5rem 0;
            text-align: center;
            box-shadow: 0 2px 12px rgba(42,91,168,0.13);
        }

        .precio-total {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 0.5rem 0;
            color: #fff;
            text-shadow: 0 2px 12px rgba(42,91,168,0.10);
        }

        .moneda {
            font-size: 1.2rem;
            vertical-align: super;
        }

        .badge-extra {
            background: #28a745;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.9rem;
            margin-left: 1rem;
        }
        .contenedor-principal {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* NUEVO: Mejorar presentación de la marca */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(20,40,80,0.25);
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(42,91,168,0.10), 0 1.5px 8px rgba(0,0,0,0.10);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.brand-header .logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 24px rgba(42,91,168,0.15);
    background: #fff;
    border: 4px solid var(--azul-acento);
    transition: transform 0.3s;
}
.brand-header .logo:hover {
    transform: scale(1.07) rotate(-2deg);
}

.brand-header .brand-title {
    font-size: 2.7em;
    font-weight: 900;
    color: var(--azul-acento);
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(42,91,168,0.10);
    margin-bottom: 0.2em;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff 60%, var(--azul-acento) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-header .brand-subtitle {
    color: #e0e0e0;
    font-size: 1.1em;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

        header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding: 20px 0;
        }

        .logo {
            width: 200px;
            filter: drop-shadow(0 0 15px rgba(42, 91, 168, 0.4));
            animation: pulse 3s 1;
            border-radius: 50%;
            margin: 20px auto;
        }

        @keyframes flotar {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        h1 {
            font-size: 2.5em;
            margin: 1rem 0 0.5rem;
            color: #e0e0e0;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        h1::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background: var(--azul-acento);
            transform: scaleX(0);
            animation: subrayar-titulo 1.5s ease-in-out 1s forwards;
            box-shadow: 0 0 15px rgba(42, 91, 168, 0.5);
        }

        @keyframes subrayar-titulo {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }
        /* Nuevos estilos para el selector de unidades */
        .selector-unidades {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            margin-bottom: 2.2rem;
        }

        .boton-unidad {
            background: linear-gradient(90deg, var(--azul-acento) 60%, #1a3b6d 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 0.9rem 2.1rem;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 2px 12px rgba(42,91,168,0.10);
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        }

        .boton-unidad.activo, .boton-unidad:hover {
            background: linear-gradient(90deg, #fff 10%, var(--azul-acento) 100%);
            color: var(--azul-acento);
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 6px 24px rgba(42,91,168,0.13);
        }

        /* Contenedor de unidades */
        .contenedor-unidades {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        @media (max-width: 800px) {
    .contenedor-unidades {
        grid-template-columns: 1fr;
    }
}

        .unidad {
            background: rgba(10, 31, 61, 0.7);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(42, 91, 168, 0.3);
        }

        .unidad h4 {
            margin-bottom: 1rem;
            color: var(--azul-acento);
        }

        /* Hace que la última tarjeta de unidad ocupe dos columnas si es impar */
.unidad-fullwidth {
    grid-column: span 2;
}

@media (max-width: 800px) {
    .unidad-fullwidth {
        grid-column: span 1;
    }
}

        .navegacion {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }

        .boton-seccion {
            background: transparent;
            border: 2px solid var(--azul-acento);
            color: white;
            font-size: 1.1rem;
            padding: 12px 35px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .boton-seccion.activo {
            background: var(--azul-acento);
            box-shadow: 0 0 25px rgba(42, 91, 168, 0.5);
        }

        .boton-seccion:hover {
            transform: translateY(-3px);
        }

        .seccion {
            display: none;
            animation: aparecer 0.6s ease forwards;
        }

        .seccion.activa {
            display: block;
        }

        /* --- INICIO: Catálogo Premium --- */
        .catalogo-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .catalogo-titulo {
            font-size: 2.7em;
            color: var(--azul-acento);
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
            font-weight: 800;
            text-shadow: 0 2px 12px rgba(42,91,168,0.15);
        }
        .catalogo-descripcion {
            color: #e0e0e0;
            font-size: 1.15em;
            margin-bottom: 1.5rem;
            opacity: 0.85;
        }
        .grid-catalogo {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 2.2rem;
            max-width: 1200px;
            margin: 0 auto 2rem auto;
        }
        .catalogo-card {
            background: rgba(20, 40, 80, 0.92);
            border-radius: 18px;
            box-shadow: 0 8px 32px rgba(42,91,168,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
            border: 1.5px solid rgba(42,91,168,0.18);
            min-height: 420px;
            position: relative;
            overflow: visible; /* Permite que el menú desplegable se muestre fuera de la tarjeta */
            z-index: 1;
        }
        .catalogo-card:hover {
            transform: translateY(-10px) scale(1.035);
            box-shadow: 0 16px 40px rgba(42,91,168,0.25), 0 3px 16px rgba(0,0,0,0.13);
            z-index: 2;
        }
        .catalogo-img-wrap {
            width: 100%;
            height: 180px;
            background: linear-gradient(120deg, #2a5ba8 0%, #0a1f3d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
        }
        .catalogo-img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(42,91,168,0.10);
            transition: transform 0.3s;
        }

        /* Tamaño especial para el logo de NBA */
        .catalogo-img.nba-img {
            width: 250px;
            height: 160px;
        }
        .catalogo-card:hover .catalogo-img {
            transform: scale(1.13) rotate(-3deg);
        }
        .catalogo-info {
            padding: 1.5rem 1.2rem 1.2rem 1.2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative; /* Para que el menú se posicione respecto a este contenedor */
        }
        .catalogo-info h3 {
            color: #fff;
            font-size: 1.25em;
            margin-bottom: 0.5rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .catalogo-info p {
            color: #b8c6e0;
            font-size: 1em;
            margin-bottom: 1.2rem;
            min-height: 48px;
        }
        .catalogo-btn {
            background: var(--azul-acento);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 1.08em;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 10px rgba(42,91,168,0.13);
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
        }
        .catalogo-btn:hover {
            background: #1a3e6e;
            box-shadow: 0 4px 18px rgba(42,91,168,0.18);
            transform: translateY(-2px) scale(1.04);
        }
        @media (max-width: 900px) {
            .grid-catalogo {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 600px) {
            .grid-catalogo {
                grid-template-columns: 1fr;
            }
            .catalogo-header {
                margin-bottom: 1.2rem;
            }
            .catalogo-titulo {
                font-size: 2em;
            }
        }
        /* --- FIN: Catálogo Premium --- */

        /* Eliminar estilos antiguos del catálogo */
        .grid-enlaces, .card-enlace, .imagen-previa, .enlace-btn { display: none !important; }

        footer {
            margin-top: 4rem;
            text-align: center;
            padding: 3rem 0;
            border-top: 1px solid rgba(42, 91, 168, 0.3);
        }

        .redes-sociales,
        .redes_sociales {
            display: flex;
            justify-content: center;
            gap: 3.5rem; /* Más separación entre iconos */
            margin-bottom: 1.5rem;
        }
.redes-sociales a,
.redes_sociales a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 3rem;
    transition: all 0.3s;
}

        /* Estilos para la sección de pedidos */
        .formulario-pedido {
            max-width: 1200px;
            margin: 2.5rem auto;
            background: linear-gradient(135deg, rgba(10,31,61,0.92) 70%, rgba(42,91,168,0.13) 100%);
            backdrop-filter: blur(16px);
            border-radius: 28px;
            padding: 2.7rem 2.2rem 2.2rem 2.2rem;
            border: 2.5px solid var(--azul-acento);
            box-shadow: 0 8px 40px rgba(42,91,168,0.13), 0 2px 12px rgba(0,0,0,0.10);
            position: relative;
            animation: aparecer 0.7s;
        }

        .formulario-pedido h2 {
            text-align: center;
            color: var(--azul-acento);
            margin-bottom: 2.2rem;
            font-size: 2.3rem;
            font-weight: 900;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 12px rgba(42,91,168,0.10);
        }

        .selector-unidades {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            margin-bottom: 2.2rem;
        }

        .boton-unidad {
            background: linear-gradient(90deg, var(--azul-acento) 60%, #1a3b6d 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 0.9rem 2.1rem;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 2px 12px rgba(42,91,168,0.10);
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        }

        .boton-unidad.activo, .boton-unidad:hover {
            background: linear-gradient(90deg, #fff 10%, var(--azul-acento) 100%);
            color: var(--azul-acento);
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 6px 24px rgba(42,91,168,0.13);
        }

        /* Campos del formulario */
        .input-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.2rem;
            margin: 2.2rem 0 1.5rem 0;
        }

        .input-group {
            margin-bottom: 1.2rem;
            background: rgba(255,255,255,0.04);
            border-radius: 10px;
            padding: 1.1rem 1rem 0.7rem 1rem;
            box-shadow: 0 1px 6px rgba(42,91,168,0.07);
            border: 1.5px solid rgba(42,91,168,0.10);
        }

        .input-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #e0e0e0;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .input-group input,
        .input-group textarea {
            width: 100%;
            padding: 13px;
            border: 2px solid var(--azul-acento);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.13);
            color: white;
            font-size: 1.08rem;
            transition: all 0.3s ease;
        }

        .input-group input:focus,
        .input-group textarea:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
            background: rgba(255,255,255,0.18);
        }

        /* Estilo bonito para el select de talla */
.input-talla {
  width: 100%;
  padding: 0.6em 2.5em 0.6em 1em;
  border-radius: 8px;
  border: 1.5px solid var(--azul-acento);
  background: rgba(255,255,255,0.13);
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%232a5ba8" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1em center;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(42,91,168,0.08);
}
.input-talla:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px #e74c3c33;
  background-color: rgba(255,255,255,0.18);
}
.input-talla option {
  color: #0a1f3d;
  background: #fff;
  font-weight: 600;
}
        .calculadora-precio {
            background: rgba(255, 255, 255, 0.13);
            border-radius: 16px;
            padding: 2.2rem 1.5rem 1.5rem 1.5rem;
            margin: 2.2rem 0 1.2rem 0;
            box-shadow: 0 4px 16px rgba(42, 91, 168, 0.10);
            border: 1.5px solid var(--azul-acento);
        }

        .calculadora-precio h3 {
            color: var(--azul-acento);
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            letter-spacing: 1px;
        }

        .detalle-precio {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 1rem 0;
            padding: 1.1rem 1.2rem;
            background: rgba(255, 255, 255, 0.09);
            border-radius: 10px;
            font-size: 1.08rem;
            border: 1px solid rgba(42,91,168,0.10);
            box-shadow: 0 1px 4px rgba(42,91,168,0.06);
        }

        .detalle-precio span:first-child:before {
            content: '\f02b';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--azul-acento);
            margin-right: 0.7em;
            font-size: 1.1em;
            vertical-align: middle;
        }

        .total-container {
            background: var(--azul-acento);
            padding: 1.7rem;
            border-radius: 12px;
            margin: 2.2rem 0 0.5rem 0;
            text-align: center;
            box-shadow: 0 2px 12px rgba(42,91,168,0.13);
        }

        .precio-total {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 0.5rem 0;
            color: #fff;
            text-shadow: 0 2px 12px rgba(42,91,168,0.10);
        }

        .moneda {
            font-size: 1.2rem;
            vertical-align: super;
        }

        .badge-extra {
            background: #28a745;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.9rem;
            margin-left: 1rem;
        }
        .contenedor-principal {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* NUEVO: Mejorar presentación de la marca */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(20,40,80,0.25);
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(42,91,168,0.10), 0 1.5px 8px rgba(0,0,0,0.10);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.brand-header .logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 24px rgba(42,91,168,0.15);
    background: #fff;
    border: 4px solid var(--azul-acento);
    transition: transform 0.3s;
}
.brand-header .logo:hover {
    transform: scale(1.07) rotate(-2deg);
}

.brand-header .brand-title {
    font-size: 2.7em;
    font-weight: 900;
    color: var(--azul-acento);
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(42,91,168,0.10);
    margin-bottom: 0.2em;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff 60%, var(--azul-acento) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-header .brand-subtitle {
    color: #e0e0e0;
    font-size: 1.1em;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

        header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding: 20px 0;
        }

        .logo {
            width: 200px;
            filter: drop-shadow(0 0 15px rgba(42, 91, 168, 0.4));
            animation: pulse 3s 1;
            border-radius: 50%;
            margin: 20px auto;
        }

        @keyframes flotar {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        h1 {
            font-size: 2.5em;
            margin: 1rem 0 0.5rem;
            color: #e0e0e0;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        h1::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background: var(--azul-acento);
            transform: scaleX(0);
            animation: subrayar-titulo 1.5s ease-in-out 1s forwards;
            box-shadow: 0 0 15px rgba(42, 91, 168, 0.5);
        }

        @keyframes subrayar-titulo {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }
        /* Nuevos estilos para el selector de unidades */
        .selector-unidades {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            margin-bottom: 2.2rem;
        }

        .boton-unidad {
            background: linear-gradient(90deg, var(--azul-acento) 60%, #1a3b6d 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 0.9rem 2.1rem;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 2px 12px rgba(42,91,168,0.10);
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        }

        .boton-unidad.activo, .boton-unidad:hover {
            background: linear-gradient(90deg, #fff 10%, var(--azul-acento) 100%);
            color: var(--azul-acento);
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 6px 24px rgba(42,91,168,0.13);
        }

        /* Botones de versión */
        .boton-version-especial, .boton-version-jugador, .boton-camiseta-nba {
            width: 100%;
            padding: 0.85rem 0;
            font-size: 1.08rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            background: linear-gradient(90deg, var(--azul-acento) 60%, #1a3b6d 100%);
            color: #fff;
            box-shadow: 0 2px 12px rgba(42,91,168,0.10);
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.2s;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.7em;
            position: relative;
            outline: none;
        }
        .boton-version-especial span, .boton-version-jugador span, .boton-camiseta-nba span {
            font-size: 0.98em;
            font-weight: 600;
            margin-left: 0.5em;
            letter-spacing: 0.2px;
        }
        .boton-version-especial.activo, .boton-version-jugador.activo, .boton-camiseta-nba.activo {
            background: linear-gradient(90deg, #fff 10%, var(--azul-acento) 100%);
            color: var(--azul-acento);
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 6px 24px rgba(42,91,168,0.13);
            border: 2px solid var(--azul-acento);
        }
        .boton-version-especial:not(.activo):hover, .boton-version-jugador:not(.activo):hover, .boton-camiseta-nba:not(.activo):hover {
            background: linear-gradient(90deg, #2a5ba8 60%, #1a3b6d 100%);
            color: #fff;
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 4px 16px rgba(42,91,168,0.13);
        }
        .boton-version-jugador::before,
    .boton-version-especial:not(.boton-version-jugador):not(.boton-camiseta-nba)::before,
    .boton-camiseta-nba::before {
        content: none !important;
        display: none !important;
    }

    .boton-pago {
    background: #ffc439;
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    margin: 0 auto;
    margin-top: 1.2rem;
    min-width: 220px;
}
.boton-pago:hover {
    background: #ffb800;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    transform: translateY(-2px) scale(1.03);
}
.boton-pago i {
    font-size: 1.5rem;
    margin-right: 0.7em;
    color: #003087;
}

/* Nueva clase para tarjetas clickeables */
.catalogo-card-clickable {
    cursor: pointer;
}
.catalogo-card-clickable .catalogo-btn {
    cursor: pointer;
    z-index: 2;
    position: relative;
}

/* Estilos para el menú desplegable de opciones de fútbol en la tarjeta */
.futbol-dropdown-menu {
    position: absolute;
    left: 0;
    right: auto;
    top: 100%;
    padding: 0;
    background: #1a3b6d;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(42,91,168,0.18);
    margin-top: 0; /* Antes: 10px */
    z-index: 1002;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.futbol-dropdown-menu a {
    color: #fff;
    padding: 0.9rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: none;
    text-align: left;
    display: block;
}

.futbol-dropdown-menu a:last-child {
    border-bottom: none;
}

.futbol-dropdown-menu a:hover {
    background: var(--azul-acento, #254b8a);
    color: #ffd700;
}

.futbol-dropdown-btn {
    background: var(--azul-acento, #1a3b6d);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1.08em;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(42,91,168,0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
    position: relative;
    z-index: 11;
}
.futbol-dropdown-btn.activo {
    color: #ffd700;
    background: var(--azul-acento, #1a3b6d);
}
.futbol-dropdown-btn i.fas {
    margin-left: 0.5em;
    transition: transform 0.2s, color 0.2s;
    color: #fff;
}
.futbol-dropdown-btn.activo i.fas {
    color: #ffd700;
}
.futbol-dropdown-btn:hover {
    background: #1a3e6e;
    box-shadow: 0 4px 18px rgba(42,91,168,0.18);
    transform: translateY(-2px) scale(1.04);
}

.futbol-dropdown {
    position: relative;
}

@media (max-width: 600px) {
    /* Navegación y pestañas en columna */
    .navegacion {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .boton-seccion {
        width: 100%;
        font-size: 1.12rem;
        padding: 15px 0;
        margin-bottom: 8px;
        border-radius: 16px;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    /* Selector de unidades en columna */
    .selector-unidades {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .boton-unidad {
        width: 100%;
        max-width: 320px;
        font-size: 1.12rem;
        padding: 14px 0;
        margin-bottom: 6px;
        border-radius: 14px;
        min-width: 0;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }
    /* Botones de versión ocupan todo el ancho */
    .boton-version-especial, .boton-version-jugador, .boton-camiseta-nba {
        width: 100%;
        font-size: 1.08rem;
        padding: 13px 0;
        margin-bottom: 6px;
        border-radius: 14px;
    }
    /* Contenedor de unidades: una sola columna */
    .contenedor-unidades {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    /* Tarjetas y formularios: padding reducido y sin desbordes */
    .catalogo-card, .formulario-pedido, .tarjeta-pedido {
        padding: 10px 4px !important;
        min-width: 0;
        box-sizing: border-box;
    }
    /* Ajuste para evitar desbordes horizontales */
    html, body {
        overflow-x: hidden;
    }
    /* Ajuste de fuentes para mejor legibilidad */
    body, input, button, select, textarea {
        font-size: 1.07rem;
    }
}

/* Estilos para el carrusel de imágenes de clientes satisfechos */
.clientes-carrusel-section {
    margin: 2.5rem auto 2rem auto;
    max-width: 520px;
    background: rgba(42,91,168,0.10);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(42,91,168,0.10);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
}
.clientes-carrusel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}
.carrusel-btn {
    background: var(--azul-acento, #1a3b6d);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(42,91,168,0.10);
    transition: background 0.2s, transform 0.2s;
}
.carrusel-btn:hover {
    background: #254b8a;
    transform: scale(1.08);
}
.carrusel-imagenes {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(42,91,168,0.10);
    position: relative;
}
.carrusel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    position: absolute;
    left: 0; top: 0;
    transition: opacity 0.4s;
    opacity: 0;
    z-index: 1;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
.carrusel-img.activa {
    opacity: 1;
    position: relative;
    z-index: 2;
}
.carrusel-img-bg {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    position: absolute;
    left: 0; top: 0;
    transition: opacity 0.4s;
    opacity: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(42,91,168,0.10);
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
.carrusel-img-bg.activa {
    opacity: 1;
    position: relative;
    z-index: 2;
}

/* --- INDICADOR DE CLICK EN IMAGEN DEL CARRUSEL --- */
.carrusel-imagenes {
  position: relative;
}
.carrusel-img-bg {
  cursor: pointer;
  transition: box-shadow 0.3s, filter 0.3s;
}
.carrusel-img-bg.clickable-hint {
  animation: parpadeo-clickeable 1.2s 2;
  box-shadow: 0 0 0 4px #ffd70099, 0 0 18px #ffd70055;
  z-index: 2;
}
@keyframes parpadeo-clickeable {
  0%, 100% { filter: brightness(1); }
  20%, 60% { filter: brightness(1.25) drop-shadow(0 0 8px #ffd700cc); }
  40%, 80% { filter: brightness(0.7); }
}
.carrusel-img-bg .zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(10,31,61,0.82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
  opacity: 0.92;
  box-shadow: 0 2px 8px #0002;
}
/* Eliminado el overlay azul, solo queda el tooltip negro */
.carrusel-img-bg[data-tooltip]:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #222b;
  color: #fff;
  padding: 0.3em 0.9em;
  border-radius: 10px;
  font-size: 0.98em;
  z-index: 10;
  pointer-events: none;
  opacity: 0.92;
  white-space: nowrap;
}

        /* Estilos para el modal de imagen ampliada */
#modal-imagen-clientes {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: rgba(10,20,40,0.85);
    animation: aparecer 0.2s;
}
#modal-imagen-clientes .modal-fondo {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: zoom-out;
}
#modal-imagen-clientes .modal-contenido {
    position: relative;
    z-index: 2;
    background: none;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(42,91,168,0.18);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}
#modal-img-clientes {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(42,91,168,0.13);
    background: #fff;
    transition: transform 0.3s;
    cursor: zoom-in;
}
.modal-cerrar {
    position: absolute;
    top: 10px;
    right: 18px;
    background: #fff;
    color: #1a3b6d;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(42,91,168,0.10);
    z-index: 3;
    transition: background 0.2s, color 0.2s;
}
.modal-cerrar:hover {
    background: #1a3b6d;
    color: #fff;
}

.carrusel-img {
    pointer-events: auto;
}

.clientes-carrusel-section, .clientes-carrusel, .carrusel-imagenes {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 600px) {
  .clientes-carrusel-section {
    max-width: 98vw;
    padding: 0.7rem 0.2rem 1rem 0.2rem;
  }
  .clientes-carrusel {
    gap: 0.3rem;
    min-height: 60vw; /* Asegura altura mínima para las flechas */
    align-items: center;
    position: relative;
  }
  .carrusel-imagenes {
    width: 90vw;
    height: 55vw;
    min-height: 180px;
    max-width: 98vw;
    max-height: 60vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carrusel-btn {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
    border-radius: 12px;
    background: rgba(42,91,168,0.85);
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 20;
    opacity: 0.92;
    box-shadow: 0 1px 6px rgba(42,91,168,0.13);
  }
  #carrusel-prev {
    left: 2px;
    right: auto;
  }
  #carrusel-next {
    right: 2px;
    left: auto;
  }
}

/* Estilos para el mensaje deslizante en el modal (móvil) */
#modal-mensaje-desliza {
  display: none;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2a5ba8 60%, #1a3b6d 100%);
  color: #fff;
  padding: 0.55em 1.3em;
  border-radius: 16px;
  font-size: 1.08rem;
  font-weight: 600;
  z-index: 30;
  box-shadow: 0 4px 18px rgba(42,91,168,0.18);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.7s;
  pointer-events: none;
  text-shadow: 0 2px 8px #1a3b6d44;
  border: 1.5px solid #fff2;
}
#modal-mensaje-desliza.visible {
  opacity: 1;
}