 /* ===== RESET Y BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: #0b1a2e;
            color: #fff;
            line-height: 1.5;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5b342;
            border-radius: 10px;
        }

        /* ===== HEADER ===== */
        .header {
            background: rgba(11, 26, 46, 0.95);
            backdrop-filter: blur(12px);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo img {
            height: 44px;
            width: auto;
            filter: brightness(0) invert(1);
        }
        .nav .menu {
            display: flex;
            list-style: none;
            gap: 28px;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .nav .menu a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.2s;
            position: relative;
        }
        .nav .menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f5b342;
            transition: width 0.25s;
        }
        .nav .menu a:hover {
            color: #fff;
        }
        .nav .menu a:hover::after {
            width: 100%;
        }
        .nav .menu a.active {
            color: #f5b342;
        }
        .nav .menu a.active::after {
            width: 100%;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: 0.2s;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }
        .btn-whatsapp:hover {
            background: #1ebe5d;
            transform: scale(1.02);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 6px;
            transition: 0.25s;
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-section {
            padding: 16px 0;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .breadcrumb-section .breadcrumb {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .breadcrumb-section .breadcrumb a {
            color: rgba(255, 255, 255, 0.6);
            transition: 0.2s;
        }
        .breadcrumb-section .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb-section .breadcrumb span {
            color: #f5b342;
        }

        /* ============================================================ */
        /* ===== HERO / PRESENTACIÓN ===== */
        /* ============================================================ */
        .product-hero {
            padding: 40px 0 60px;
            background: #0b1a2e;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-image {
            position: relative;
        }
        .hero-image .main-image {
            border-radius: 24px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            cursor: zoom-in;
        }
        .hero-image .main-image img {
            width: 100%;
            height: 460px;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: block;
        }
        .hero-image .main-image:hover img {
            transform: scale(1.05);
        }

        .hero-image .main-image .badge-float {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #f5b342;
            color: #0b1a2e;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            pointer-events: none;
        }

        .hero-image .main-image .zoom-hint {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.6);
            pointer-events: none;
            white-space: nowrap;
        }

        .hero-image .thumbnails {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .hero-image .thumbnails .thumb {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: 0.3s;
            background: rgba(255, 255, 255, 0.03);
        }
        .hero-image .thumbnails .thumb:hover {
            border-color: rgba(245, 179, 66, 0.4);
        }
        .hero-image .thumbnails .thumb.active {
            border-color: #f5b342;
        }
        .hero-image .thumbnails .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-info {
            color: #fff;
        }

        .hero-info .product-tag {
            display: inline-block;
            background: rgba(245, 179, 66, 0.12);
            color: #f5b342;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .hero-info h1 {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .hero-info .subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 20px;
        }

        .hero-info .rating {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .hero-info .rating .stars {
            color: #f5b342;
            font-size: 1rem;
            letter-spacing: 2px;
        }
        .hero-info .rating .count {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.8rem;
        }

        .hero-info .prices {
            display: flex;
            align-items: baseline;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 16px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .hero-info .prices .price {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5b342;
        }

        .hero-info .prices .price small {
            font-size: 0.9rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.3);
            margin-left: 8px;
        }

        .hero-info .prices .installment {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .hero-info .prices .installment strong {
            color: #fff;
            font-weight: 700;
        }

        .hero-info .finance-info {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.25);
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .hero-info .btn-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-cta-whatsapp {
            display: inline-block;
            background: #25d366;
            color: #fff;
            padding: 16px 40px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: 0.3s;
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
        }
        .btn-cta-whatsapp:hover {
            transform: scale(1.04);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
        }

        .btn-cta-secondary {
            display: inline-block;
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            padding: 16px 32px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            transition: 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .btn-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #f5b342;
        }

        /* ============================================================ */
        /* ===== ESPECIFICACIONES TÉCNICAS ===== */
        /* ============================================================ */
        .specs-section {
            padding: 60px 0;
            background: #0b1a2e;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .specs-section .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .specs-section .section-header .tag {
            display: inline-block;
            background: rgba(245, 179, 66, 0.1);
            color: #f5b342;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .specs-section .section-header h2 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .specs-section .section-header p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.05rem;
            margin-top: 6px;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .spec-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 28px 24px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            text-align: center;
            transition: 0.3s;
        }

        .spec-card:hover {
            border-color: rgba(245, 179, 66, 0.15);
            transform: translateY(-4px);
        }

        .spec-card .spec-icon {
            font-size: 2.6rem;
            margin-bottom: 12px;
            display: block;
        }

        .spec-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .spec-card .spec-detail {
            display: flex;
            justify-content: space-between;
            padding: 4px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .spec-card .spec-detail:last-child {
            border-bottom: none;
        }

        .spec-card .spec-detail .label {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        .spec-card .spec-detail .value {
            color: #fff;
            font-weight: 600;
            font-size: 0.85rem;
        }

        /* ============================================================ */
        /* ===== INFORMACIÓN ADICIONAL ===== */
        /* ============================================================ */
        .info-section {
            padding: 40px 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }

        .info-item {
            padding: 16px;
        }

        .info-item .icon {
            font-size: 1.8rem;
            margin-bottom: 6px;
        }

        .info-item h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 2px;
        }

        .info-item p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .btn-download {
            display: inline-block;
            color: #f5b342;
            font-weight: 600;
            font-size: 0.85rem;
            transition: 0.2s;
            border: 1px solid rgba(245, 179, 66, 0.15);
            padding: 4px 16px;
            border-radius: 40px;
        }

        .btn-download:hover {
            background: rgba(245, 179, 66, 0.1);
            color: #fff;
        }

        /* ============================================================ */
        /* ===== COLORES DISPONIBLES ===== */
        /* ============================================================ */
        .colors-section {
            padding: 40px 0;
            background: #0b1a2e;
        }

        .colors-section .colors-grid {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .colors-section .color-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .colors-section .color-item .color-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: 0.3s;
        }

        .colors-section .color-item .color-circle:hover {
            border-color: #f5b342;
            transform: scale(1.1);
        }

        .colors-section .color-item .color-name {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ============================================================ */
        /* ===== TESTIMONIOS ===== */
        /* ============================================================ */
        .testimonials-section {
            padding: 60px 0;
            background: #0b1a2e;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .testimonials-section .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .testimonials-section .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
        }

        .testimonials-section .section-header p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 1rem;
            margin-top: 6px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 24px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            text-align: center;
        }

        .testimonial-card .quote {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 12px;
        }

        .testimonial-card .author {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        .testimonial-card .author strong {
            color: #fff;
            font-weight: 600;
        }

        /* ============================================================ */
        /* ===== CTA FINAL ===== */
        /* ============================================================ */
        .cta-final {
            padding: 60px 0;
            text-align: center;
            background: radial-gradient(ellipse at 50% 50%, #1a2d4a 0%, #0b1a2e 70%);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .cta-final h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .cta-final p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.1rem;
            margin-bottom: 24px;
        }

        .cta-final .btn-cta-big {
            display: inline-block;
            background: #f5b342;
            color: #0b1a2e;
            padding: 18px 56px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .cta-final .btn-cta-big:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 32px rgba(245, 179, 66, 0.3);
        }

        /* ============================================================ */
        /* ===== FOOTER ===== */
        /* ============================================================ */
        .footer {
            background: #060e1a;
            color: rgba(255, 255, 255, 0.8);
            padding: 48px 0 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            padding-bottom: 32px;
        }
        .footer-content h3 {
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .footer-content p {
            opacity: 0.5;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .copyright {
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px 24px 0;
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.3;
        }

        /* ============================================================ */
        /* ===== WHATSAPP FLOAT DERECHA ===== */
        /* ============================================================ */
        .whatsapp-float-right {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            cursor: pointer;
        }

        .whatsapp-float-right:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
            background: #1ebe5d;
        }

        .whatsapp-float-right::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.3);
            animation: pulse-whatsapp 2s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes pulse-whatsapp {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        .whatsapp-float-right svg {
            width: 32px;
            height: 32px;
            fill: #fff;
            display: block;
        }

        .whatsapp-float-right .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-float-right .whatsapp-tooltip::before {
            content: '';
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: rgba(0, 0, 0, 0.85);
        }

        .whatsapp-float-right:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* ============================================================ */
        /* ===== RESPONSIVE ===== */
        /* ============================================================ */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-image .main-image img {
                height: 360px;
            }
            .specs-grid {
                grid-template-columns: 1fr 1fr;
            }
            .info-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-info h1 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(11, 26, 46, 0.98);
                backdrop-filter: blur(12px);
                padding: 20px 24px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: 0.3s ease;
                opacity: 0;
                pointer-events: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            .nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
                opacity: 1;
                pointer-events: all;
            }
            .nav .menu {
                flex-direction: column;
                gap: 18px;
            }
            .nav .menu a {
                font-size: 1.1rem;
            }
            .btn-whatsapp {
                display: none;
            }

            .product-hero {
                padding: 20px 0 40px;
            }

            .hero-image .main-image img {
                height: 280px;
            }
            .hero-info h1 {
                font-size: 2rem;
            }
            .hero-info .prices .price {
                font-size: 2.2rem;
            }

            .specs-grid {
                grid-template-columns: 1fr;
            }
            .info-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .specs-section .section-header h2 {
                font-size: 1.8rem;
            }
            .cta-final h2 {
                font-size: 1.8rem;
            }

            .hero-image .thumbnails .thumb {
                width: 60px;
                height: 60px;
            }

            .whatsapp-float-right {
                bottom: 20px;
                right: 20px;
                width: 54px;
                height: 54px;
            }
            .whatsapp-float-right svg {
                width: 28px;
                height: 28px;
            }
            .whatsapp-float-right .whatsapp-tooltip {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-image .main-image img {
                height: 220px;
            }
            .hero-info .btn-group {
                flex-direction: column;
            }
            .hero-info .btn-group .btn-cta-whatsapp,
            .hero-info .btn-group .btn-cta-secondary {
                text-align: center;
                width: 100%;
            }
            .hero-image .thumbnails .thumb {
                width: 48px;
                height: 48px;
            }
            .whatsapp-float-right {
                bottom: 16px;
                right: 16px;
                width: 48px;
                height: 48px;
            }
            .whatsapp-float-right svg {
                width: 24px;
                height: 24px;
            }
        }