 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', system-ui, sans-serif;
            overflow-x: hidden;
            background: #f0f2f5;
        }

        :root {
            --azul: #001259;
            --azul-claro: #1a2d6c;
            --dorado: #b7810e;
            --blanco: #ffffff;
            --gris-claro: #f8f9fa;
            --texto-gris: #6c757d;
            --verde: #00b894;
        }

       /* ===== NUEVA ANIMACIÓN DE ENTRADA ===== */
.entrada-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: overlayZoomOut 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.5s;
    pointer-events: none;
}

@keyframes overlayZoomOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.15);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
        visibility: hidden;
    }
}

.entrada-overlay img {
    width: auto;
    height: auto;
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    animation: logoPulse 0.8s ease-out both;
}

@keyframes logoPulse {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mostrar contenido después del overlay */
.contenido-principal {
    opacity: 0;
    transition: opacity 0.6s ease;
    display: block;
}

.contenido-principal.visible {
    opacity: 1;
}

        /* Banner */
        .banner {
            width: 100%;
            max-height: 280px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--azul);
            position: relative;
        }

        .banner img {
            width: 50%;
            max-height: 280px;
            object-fit: cover;
            display: block;
        }

        /* ===== ENCABEZADO CON FILTROS ===== */
        .header-catalogo {
            background: var(--azul);
            padding: 1.8rem 0 1.2rem 0;
            border-bottom: 4px solid var(--dorado);
        }

        .header-catalogo h1 {
            color: var(--blanco);
            font-weight: 700;
            font-size: 1.8rem;
            margin: 0;
        }

        .header-catalogo h1 i {
            color: var(--dorado);
            margin-right: 12px;
        }

        .header-catalogo .badge-count {
            background: var(--dorado);
            color: var(--azul);
            font-weight: 700;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-left: 12px;
        }

        .filtros-categoria {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.8rem;
        }

        .filtros-categoria .btn-filtro {
            background: rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.7);
            border: 2px solid transparent;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .filtros-categoria .btn-filtro:hover,
        .filtros-categoria .btn-filtro.active {
            background: var(--dorado);
            color: var(--azul);
            border-color: var(--dorado);
            transform: translateY(-2px);
        }

        /* ===== BANNER KIT GRATIS ===== */
        .kit-gratis-banner {
            background: linear-gradient(135deg, #00b894 0%, #00a381 100%);
            color: white;
            padding: 1.2rem 0;
            text-align: center;
            border-bottom: 3px solid var(--dorado);
        }

        .kit-gratis-banner i {
            font-size: 1.8rem;
            margin-right: 12px;
            color: var(--dorado);
        }

        .kit-gratis-banner .titulo-kit {
            font-weight: 700;
            font-size: 1.2rem;
        }

        .kit-gratis-banner .detalle-kit {
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .kit-gratis-banner .kit-items {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
            font-size: 0.85rem;
        }

        .kit-gratis-banner .kit-items span {
            background: rgba(255,255,255,0.15);
            padding: 0.2rem 1rem;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .kit-gratis-banner .kit-items i {
            font-size: 1rem;
            margin-right: 4px;
            color: var(--dorado);
        }

        /* Catálogo */
        .catalogo {
            padding: 2.5rem 0 2.5rem 0;
            background: #f0f2f5;
        }

        .catalogo .container {
            max-width: 1300px;
        }

        /* ===== TARJETA DE IPHONE ===== */
        .telefono-card {
            background: var(--blanco);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid #e9ecef;
            position: relative;
        }

        .telefono-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 45px rgba(0, 18, 89, 0.15);
        }

        .telefono-card .etiqueta-gama {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--dorado);
            color: var(--azul);
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.2rem 0.9rem;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .telefono-card .etiqueta-gama.pro {
            background: #ff6b6b;
            color: white;
        }

        .telefono-card .etiqueta-gama.max {
            background: #4a6cf7;
            color: white;
        }

        .telefono-card .etiqueta-gama.nuevo {
            background: #00b894;
            color: white;
        }

        .telefono-card .etiqueta-gama.usado {
            background: #fdcb6e;
            color: #2d3436;
        }

        .telefono-card .badge-kit {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--verde);
            color: white;
            font-size: 0.55rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            z-index: 2;
        }

        .telefono-card .badge-kit i {
            margin-right: 4px;
        }

        .telefono-card img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 1rem;
        }

        .telefono-card .card-body {
            padding: 1.2rem 1.5rem 1.8rem 1.5rem;
            border-top: 3px solid var(--dorado);
        }

        .telefono-card .card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--azul);
            margin-bottom: 0.2rem;
        }

        .telefono-card .modelo-detalle {
            font-size: 0.75rem;
            color: var(--texto-gris);
            font-weight: 400;
            margin-bottom: 0.5rem;
        }

        .telefono-card .card-text {
            color: var(--texto-gris);
            margin-bottom: 0.8rem;
            font-size: 0.85rem;
        }

        .telefono-card .selector-capacidad {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
            margin-bottom: 0.8rem;
        }

        .telefono-card .selector-capacidad .btn-cap {
            background: #f0f2f5;
            border: 2px solid #e9ecef;
            padding: 0.25rem 0.7rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--texto-gris);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .telefono-card .selector-capacidad .btn-cap:hover {
            border-color: var(--azul);
            color: var(--azul);
        }

        .telefono-card .selector-capacidad .btn-cap.active {
            background: var(--azul);
            border-color: var(--azul);
            color: white;
        }

        .telefono-card .selector-capacidad .btn-cap:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .telefono-card .precio {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--azul);
        }

        .telefono-card .precio span {
            color: var(--dorado);
            font-weight: 300;
            font-size: 0.85rem;
        }

        .telefono-card .precio .precio-anterior {
            font-size: 0.85rem;
            color: #adb5bd;
            text-decoration: line-through;
            font-weight: 400;
            margin-right: 8px;
        }

        .telefono-card .btn-comprar {
            background: var(--azul);
            color: white;
            border: none;
            padding: 0.5rem 2rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.85rem;
            cursor: pointer;
            width: 100%;
        }

        .telefono-card .btn-comprar:hover {
            background: var(--dorado);
            color: var(--azul);
            transform: scale(1.02);
        }

        .telefono-card .btn-comprar i {
            margin-right: 6px;
        }

        .telefono-item.filtrado {
            display: none;
        }

        .row {
            row-gap: 30px;
        }

        .row [class*="col-"] {
            padding: 0 15px;
        }

        /* ===== SECCIÓN DE ACCESORIOS - NUEVO ESTILO ===== */
        .accesorios-section {
            background: #e8eaed;
            padding: 3rem 0 4rem 0;
        }

        .accesorios-section .section-title {
            text-align: center;
            color: var(--azul);
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .accesorios-section .section-title i {
            color: var(--dorado);
            margin-right: 12px;
        }

        .accesorios-section .subtitle {
            text-align: center;
            color: var(--texto-gris);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        /* Tarjeta de accesorio - estilo similar a los teléfonos */
        .accesorio-card {
            background: var(--blanco);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid #e9ecef;
            position: relative;
        }

        .accesorio-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 45px rgba(0, 18, 89, 0.15);
        }

        .accesorio-card .card-header-icon {
            background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%);
            padding: 1.5rem 0;
            text-align: center;
            border-bottom: 3px solid var(--dorado);
        }

        .accesorio-card .card-header-icon i {
            font-size: 2.5rem;
            color: var(--dorado);
        }

        .accesorio-card .card-body-accesorio {
            padding: 1.2rem 1.5rem 1.8rem 1.5rem;
        }

        .accesorio-card .card-title-accesorio {
            font-size: 1rem;
            font-weight: 600;
            color: var(--azul);
            margin-bottom: 0.3rem;
            min-height: 2.8rem;
            line-height: 1.4;
        }

        .accesorio-card .precio-accesorio {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--azul);
            margin-bottom: 0.5rem;
        }

        .accesorio-card .precio-accesorio span {
            color: var(--dorado);
            font-weight: 300;
            font-size: 0.8rem;
        }

        .accesorio-card .precio-accesorio .precio-rango {
            font-size: 0.9rem;
            color: var(--texto-gris);
            font-weight: 400;
        }

        .accesorio-card .btn-accesorio {
            background: var(--azul);
            color: white;
            border: none;
            padding: 0.5rem 2rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.85rem;
            cursor: pointer;
            width: 100%;
        }

        .accesorio-card .btn-accesorio:hover {
            background: var(--dorado);
            color: var(--azul);
            transform: scale(1.02);
        }

        .accesorio-card .btn-accesorio i {
            margin-right: 6px;
        }

        /* Footer */
        .footer {
            background: var(--azul);
            color: var(--blanco);
            padding: 3rem 0 2rem 0;
        }

        .footer .container {
            max-width: 1300px;
        }

        .footer-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .footer-logo {
            height: 80px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-info .nombre {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dorado);
        }

        .footer-info .slogan {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .footer-center {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-center i {
            color: var(--dorado);
            font-size: 1.4rem;
        }

        .footer-center .telefono {
            font-weight: 600;
            color: var(--blanco);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .footer-center .telefono:hover {
            color: var(--dorado);
        }

        .footer-right {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .footer-right .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--blanco);
            font-size: 1.4rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-right .social-link:hover {
            background: var(--dorado);
            color: var(--azul);
            transform: translateY(-4px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 2rem;
            padding-top: 1.8rem;
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none !important;
            border: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #fdbb2d;
            transform: scale(1.1) rotate(-5deg);
        }

        .whatsapp-float i {
            font-size: 35px;
        }

        .sin-resultados {
            text-align: center;
            padding: 3rem 0;
            color: var(--texto-gris);
            display: none;
        }

        .sin-resultados i {
            font-size: 3rem;
            color: var(--dorado);
            margin-bottom: 1rem;
        }

        .sin-resultados h3 {
            color: var(--azul);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .banner { max-height: 180px; }
            .banner img { max-height: 180px; }
            .header-catalogo h1 { font-size: 1.4rem; }
            .kit-gratis-banner .kit-items { gap: 1rem; }
            .kit-gratis-banner .kit-items span { font-size: 0.75rem; padding: 0.15rem 0.7rem; }
        }

        @media (max-width: 768px) {
            .footer-content { flex-direction: column; text-align: center; }
            .footer-left { flex-direction: column; text-align: center; }
            .footer-center { flex-direction: column; text-align: center; }
            .telefono-card img { height: 150px; }
            .catalogo { padding: 1.5rem 0 2rem 0; }
            .banner { max-height: 120px; }
            .banner img { max-height: 120px; }
            .header-catalogo { padding: 1.2rem 0 0.8rem 0; }
            .header-catalogo h1 { font-size: 1.1rem; }
            .filtros-categoria .btn-filtro { font-size: 0.7rem; padding: 0.3rem 0.9rem; }
            .kit-gratis-banner { padding: 0.8rem 0; }
            .kit-gratis-banner .titulo-kit { font-size: 1rem; }
            .kit-gratis-banner .detalle-kit { font-size: 0.8rem; }
            .kit-gratis-banner .kit-items { gap: 0.5rem; }
            .kit-gratis-banner .kit-items span { font-size: 0.65rem; padding: 0.1rem 0.6rem; }
            .accesorios-section { padding: 2rem 0; }
            .accesorios-section .section-title { font-size: 1.5rem; }
            .accesorio-card .card-header-icon { padding: 1rem 0; }
            .accesorio-card .card-header-icon i { font-size: 1.8rem; }
            .accesorio-card .card-body-accesorio { padding: 1rem; }
            .accesorio-card .card-title-accesorio { font-size: 0.9rem; min-height: 2.2rem; }
            .accesorio-card .precio-accesorio { font-size: 1.1rem; }
        }

        @media (max-width: 576px) {
            .telefono-card img { height: 130px; }
            .telefono-card .card-body { padding: 1rem; }
            .telefono-card .card-title { font-size: 1rem; }
            .telefono-card .precio { font-size: 1.2rem; }
            .whatsapp-float { width: 50px; height: 50px; bottom: 15px; right: 15px; }
            .whatsapp-float i { font-size: 28px; }
            .footer-logo { height: 55px; }
            .telefono-card .selector-capacidad .btn-cap { font-size: 0.6rem; padding: 0.15rem 0.5rem; }
            .accesorio-card .card-title-accesorio { font-size: 0.8rem; min-height: 2rem; }
            .accesorio-card .precio-accesorio { font-size: 1rem; }
            .accesorio-card .btn-accesorio { font-size: 0.75rem; padding: 0.4rem 1rem; }
            .accesorio-card .card-header-icon i { font-size: 1.5rem; }
        }