:root {
            --c-dark: #121212;
            --c-gray-dark: #1e1e1e;
            --c-gray: #4b5563;
            --c-light: #f7f7f7;
            --c-accent: #a3906a; /* Elegant, premium B2B corporate gold */
            --c-accent-light: #fdfaf2;
            --c-white: #ffffff;
            --c-green: #16a34a;
            --c-green-hover: #15803d;
            --f-serif: "Playfair Display", "Times New Roman", serif;
            --f-sans: "Lato", "Helvetica", sans-serif;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -1px rgba(0,0,0,0.04);
            --shadow-lg: 0 10px 20px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
        }

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

        body {
            font-family: var(--f-sans);
            background-color: #fafafa;
            color: var(--c-dark);
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }

        /* Utilities */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .text-center { text-align: center; }
        .uppercase { text-transform: uppercase; letter-spacing: 0.1em; }
        .font-serif { font-family: var(--f-serif); }
        .font-light { font-weight: 300; }
        .font-bold { font-weight: 700; }
        .relative { position: relative; }
        .hidden { display: none !important; }
        
        /* Top Banner */
        .top-banner {
            background-color: var(--c-gray-dark);
            color: var(--c-white);
            font-size: 0.75rem;
            font-weight: 700;
            text-align: center;
            padding: 0.5rem 1rem;
            letter-spacing: 0.05em;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        /* Navbar */
        .navbar {
            background-color: rgba(255,255,255,0.96);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid #f1f1f1;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0.75rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-family: var(--f-serif);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--c-dark);
            text-decoration: none;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-logo span {
            font-size: 0.65rem;
            background-color: var(--c-accent);
            color: var(--c-white);
            padding: 0.15rem 0.4rem;
            border-radius: 2px;
            font-family: var(--f-sans);
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--c-gray);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--c-accent);
        }

        /* Hero B2B Section */
        .hero {
            background: linear-gradient(180deg, var(--c-accent-light) 0%, rgba(255,255,255,0) 100%);
            padding: 3rem 0 3.5rem;
            border-bottom: 1px solid #f3f4f6;
        }

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

        .hero-text {
            text-align: center;
        }

        .hero-tag {
            color: var(--c-accent);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            display: block;
            margin-bottom: 0.75rem;
        }

        .hero-title {
            font-size: 2.2rem;
            line-height: 1.15;
            color: var(--c-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1rem;
            color: var(--c-gray);
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hero Badges */
        .hero-badges {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-badge-item {
            background-color: var(--c-white);
            border: 1px solid #eaeaea;
            border-radius: 8px;
            padding: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: var(--shadow-sm);
            text-align: left;
        }

        .hero-badge-item svg {
            flex-shrink: 0;
            width: 1.25rem;
            height: 1.25rem;
            fill: var(--c-accent);
        }

        .hero-badge-item span {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--c-dark);
            line-height: 1.2;
        }

        /* CTA Button */
        .btn-wa {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            background-color: var(--c-green);
            color: var(--c-white);
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
            border: none;
            cursor: pointer;
            width: 100%;
            max-width: 400px;
        }

        .btn-wa:hover {
            background-color: var(--c-green-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
        }

        .btn-wa svg {
            width: 1.35rem;
            height: 1.35rem;
            fill: currentColor;
        }

        /* Benefits Grid Section */
        .benefits {
            padding: 4rem 0;
            background-color: var(--c-white);
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--c-dark);
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            font-size: 0.85rem;
            color: var(--c-accent);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .benefit-card {
            background-color: var(--c-light);
            border-radius: 12px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            border: 1px solid #f1f1f1;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .benefit-icon-wrapper {
            background-color: var(--c-accent-light);
            border-radius: 50%;
            width: 3.5rem;
            height: 3.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }

        .benefit-icon-wrapper svg {
            width: 1.75rem;
            height: 1.75rem;
            fill: var(--c-accent);
        }

        .benefit-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--c-dark);
        }

        .benefit-card p {
            font-size: 0.875rem;
            color: var(--c-gray);
            line-height: 1.6;
        }

        /* Paquetes Destacados Section */
        .packages-section {
            padding: 4rem 0;
            background-color: var(--c-accent-light);
            border-top: 1px solid #eaeaea;
            border-bottom: 1px solid #eaeaea;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .package-card {
            background-color: var(--c-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(163,144,106,0.15);
            transition: all 0.3s ease;
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: var(--c-accent);
        }

        .package-img-wrapper {
            position: relative;
            aspect-ratio: 4/3;
            background-color: #eee;
        }

        .package-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .package-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background-color: var(--c-dark);
            color: var(--c-white);
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.3rem 0.75rem;
            border-radius: 4px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .package-saving-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: #b45309; /* Deep warning orange */
            color: var(--c-white);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.3rem 0.75rem;
            border-radius: 4px;
            box-shadow: var(--shadow-sm);
        }

        .package-info {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .package-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .package-desc {
            font-size: 0.8rem;
            color: var(--c-gray);
            margin-bottom: 1rem;
            flex-grow: 1;
            line-height: 1.5;
        }

        .package-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            border-top: 1px solid #f1f1f1;
            padding-top: 1rem;
        }

        .package-features li {
            font-size: 0.75rem;
            color: var(--c-dark);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .package-features svg {
            width: 0.9rem;
            height: 0.9rem;
            fill: #16a34a;
            flex-shrink: 0;
        }

        .package-price-row {
            display: flex;
            align-items: flex-end;
            gap: 0.5rem;
            margin-bottom: 1.25rem;
        }

        .package-price-old {
            font-size: 0.9rem;
            color: #9ca3af;
            text-decoration: line-through;
        }

        .package-price-current {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--c-dark);
            line-height: 1;
        }

        .package-price-tax {
            font-size: 0.65rem;
            color: var(--c-gray);
            margin-left: 0.25rem;
            font-weight: 700;
        }

        .btn-package-buy {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: var(--c-dark);
            color: var(--c-white);
            text-decoration: none;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.2s ease;
            border: 1px solid var(--c-dark);
        }

        .btn-package-buy:hover {
            background-color: var(--c-white);
            color: var(--c-dark);
        }

        .btn-package-buy svg {
            width: 1.1rem;
            height: 1.1rem;
            fill: currentColor;
        }

        /* Dynamic Catalog & Filters */
        .catalog-section {
            background-color: var(--c-white);
        }

        .category-filter {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .cat-btn {
            font-size: 0.8rem;
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            border: 1px solid #e5e7eb;
            background: var(--c-white);
            color: var(--c-gray);
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 700;
        }

        .cat-btn:hover {
            border-color: var(--c-dark);
            color: var(--c-dark);
        }

        .cat-btn.active {
            background-color: var(--c-dark);
            color: var(--c-white);
            border-color: var(--c-dark);
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .product-card {
            background: var(--c-white);
            border-radius: 12px;
            border: 1px solid #f1f1f1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            box-shadow: var(--shadow-md);
            border-color: #eaeaea;
        }

        .prod-image-wrapper {
            position: relative;
            aspect-ratio: 3/4;
            background-color: #f7f7f7;
            overflow: hidden;
            cursor: pointer;
        }

        .prod-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .prod-image-wrapper:hover .prod-img {
            transform: scale(1.03);
        }

        .prod-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0,0,0,0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prod-image-wrapper:hover .prod-overlay {
            opacity: 1;
        }

        .prod-btn-overlay {
            background-color: rgba(255,255,255,0.95);
            color: var(--c-dark);
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 4px;
            box-shadow: var(--shadow-sm);
        }

        .prod-info {
            padding: 1.25rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-grow: 1;
        }

        .prod-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.35rem;
            cursor: pointer;
            line-height: 1.3;
        }

        .prod-desc {
            font-size: 0.75rem;
            color: var(--c-gray);
            margin-bottom: 1rem;
            height: 2.2rem;
            overflow: hidden;
            line-height: 1.1rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .prod-price {
            font-family: var(--f-serif);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            display: block;
        }

        .prod-btn-buy {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            border: 1px solid var(--c-dark);
            color: var(--c-dark);
            text-decoration: none;
            padding: 0.5rem 1.25rem;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.2s ease;
            border-radius: 4px;
        }

        .prod-btn-buy:hover {
            background-color: var(--c-dark);
            color: var(--c-white);
        }

        .prod-btn-buy svg {
            width: 1rem;
            height: 1rem;
            fill: currentColor;
        }

        /* 3-Step Invoicing process */
        .process-section {
            padding: 4rem 0;
            background-color: var(--c-light);
            border-top: 1px solid #f1f1f1;
        }

        .process-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .process-step {
            background-color: var(--c-white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            border: 1px solid #eaeaea;
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -1.25rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--c-accent);
            color: var(--c-white);
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            border: 4px solid var(--c-light);
        }

        .process-step h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .process-step p {
            font-size: 0.85rem;
            color: var(--c-gray);
            line-height: 1.5;
        }

        /* FAQs */
        .faq-section {
            padding: 4rem 0;
            background-color: var(--c-white);
        }

        .faq-container {
            max-width: 800px;
            margin: 2rem auto 0;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .faq-item {
            background-color: var(--c-light);
            border-radius: 8px;
            padding: 1.25rem 1.5rem;
            border: 1px solid #f1f1f1;
        }

        .faq-item h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--c-dark);
        }

        .faq-item p {
            font-size: 0.85rem;
            color: var(--c-gray);
            line-height: 1.5;
        }

        /* Floating WhatsApp Button for B2B */
        .float-btn {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            z-index: 90;
            background-color: var(--c-green);
            color: var(--c-white);
            padding: 0.85rem;
            border-radius: 50%;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            width: 3.5rem;
            height: 3.5rem;
        }

        .float-btn:hover {
            background-color: var(--c-green-hover);
            transform: scale(1.1);
        }

        .float-btn svg {
            width: 1.8rem;
            height: 1.8rem;
            fill: currentColor;
        }

        /* Footer */
        .footer {
            background-color: var(--c-dark);
            color: var(--c-white);
            padding: 4rem 0 2rem;
            font-size: 0.85rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 3rem;
            margin-bottom: 2rem;
        }

        .footer-col h3 {
            font-family: var(--f-serif);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-col h4 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #9ca3af;
            margin-bottom: 1rem;
        }

        .footer-col p {
            color: #9ca3af;
            margin-bottom: 0.5rem;
            font-weight: 300;
        }

        .copyright {
            color: #6b7280;
            font-size: 0.75rem;
            text-align: center;
        }

        /* Vue skeleton loader styling */
        .sk-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .sk-card {
            background-color: #fff;
            border-radius: 8px;
            border: 1px solid #f1f1f1;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .sk-pulse {
            background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
            background-size: 200% 100%;
            animation: sk-loading 1.5s infinite;
            border-radius: 4px;
        }
        .sk-img { aspect-ratio: 3/4; width: 100%; }
        .sk-text-1 { height: 1.25rem; width: 60%; margin: 0 auto; }
        .sk-text-2 { height: 1rem; width: 85%; margin: 0 auto; }
        .sk-price { height: 1.5rem; width: 40%; margin: 0 auto; }
        
        @keyframes sk-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Modal Overlay for details */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal-backdrop {
            position: absolute;
            inset: 0;
            background-color: rgba(0,0,0,0.85);
            backdrop-filter: blur(4px);
        }

        .modal-content {
            position: relative;
            background: var(--c-white);
            width: 100%;
            max-width: 50rem;
            height: 90vh;
            max-height: 48rem;
            box-shadow: var(--shadow-xl);
            display: flex;
            flex-direction: column;
            border-radius: 8px;
            overflow: hidden;
            z-index: 10;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 30;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            padding: 0.5rem;
            color: var(--c-dark);
            transition: all 0.2s ease;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            width: 2.25rem;
            height: 2.25rem;
        }

        .modal-close:hover {
            transform: scale(1.05);
            background: var(--c-white);
        }

        .modal-body {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .gallery-container {
            width: 100%;
            height: 45%;
            background: #fff;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            border-bottom: 1px solid #eee;
        }

        .zoom-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        .info-panel {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .info-scroll {
            flex-grow: 1;
            overflow-y: auto;
            padding: 1.5rem;
            -webkit-overflow-scrolling: touch;
        }

        .sticky-footer {
            flex-shrink: 0;
            padding: 1rem 1.5rem;
            border-top: 1px solid #f3f4f6;
            background: var(--c-white);
        }

        .info-cat {
            color: var(--c-accent);
            font-size: 0.75rem;
            font-weight: 700;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.25rem;
        }

        .info-title {
            font-size: 1.4rem;
            color: var(--c-dark);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .info-desc {
            font-size: 0.85rem;
            color: var(--c-gray);
            margin-bottom: 1.25rem;
        }

        .info-highlights {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .info-highlights li {
            font-size: 0.8rem;
            color: var(--c-dark);
            margin-bottom: 0.4rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-highlights li::before {
            content: "•";
            color: var(--c-accent);
            font-size: 1.25rem;
            line-height: 1;
        }

        .divider {
            border: 0;
            border-top: 1px solid #eee;
            margin: 1.25rem 0;
        }

        .coverage-info h5 {
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .coverage-list {
            list-style: none;
            font-size: 0.75rem;
            color: var(--c-gray);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.25rem;
        }

        .coverage-list li::before {
            content: "✓";
            color: var(--c-accent);
            margin-right: 0.25rem;
        }

        .modal-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .modal-price {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .modal-price span {
            font-size: 0.65rem;
            color: var(--c-gray);
            font-weight: 700;
            display: block;
        }

        .modal-btn-wa {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: var(--c-green);
            color: var(--c-white);
            text-decoration: none;
            padding: 0.85rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 700;
            text-align: center;
            transition: background 0.2s ease;
        }

        .modal-btn-wa:hover {
            background-color: var(--c-green-hover);
        }

        .modal-btn-wa svg {
            width: 1.2rem;
            height: 1.2rem;
            fill: currentColor;
        }

        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .navbar {
                padding: 1.25rem 0;
            }

            .hero {
                padding: 5rem 0;
            }

            .hero-title {
                font-size: 3.2rem;
            }

            .hero-subtitle {
                font-size: 1.15rem;
            }

            .hero-badges {
                grid-template-columns: repeat(4, 1fr);
                max-width: 800px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .packages-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .product-grid, .sk-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .modal-content {
                flex-direction: row;
                height: 80vh;
            }

            .modal-body {
                flex-direction: row;
            }

            .gallery-container {
                width: 50%;
                height: 100%;
                border-bottom: none;
                border-right: 1px solid #eee;
            }

            .info-panel {
                width: 50%;
            }

            .info-scroll {
                padding: 2.5rem;
            }

            .sticky-footer {
                padding: 1.5rem 2.5rem;
            }
        }

        /* Custom Transition classes for Modal */
        .fade-enter-active, .fade-leave-active {
            transition: opacity 0.25s ease;
        }
        .fade-enter-from, .fade-leave-to {
            opacity: 0;
        }
        .no-scroll {
            overflow: hidden !important;
        }

        /* Vue v-cloak: oculta las plantillas sin compilar hasta que Vue monta.
           Sin esta regla, el .modal-overlay (position:fixed, inset:0, backdrop
           negro al 85%) del HTML crudo cubre la página completa mientras Vue
           descarga desde el CDN — segundos de pantalla bloqueada en móvil. */
        [v-cloak] {
            display: none !important;
        }

        /* Reserva la altura de la fila de filtros (oculta por v-cloak hasta el
           montaje de Vue) para no provocar layout shift al aparecer. */
        .category-filter {
            min-height: 2.75rem;
        }

        /* Objetivo táctil mínimo de ~44px en pantallas táctiles (WCAG 2.5.8) */
        @media (pointer: coarse) {
            .prod-btn-buy, .cat-btn, .btn-package-buy {
                min-height: 44px;
            }
            .modal-close {
                width: 2.75rem;
                height: 2.75rem;
            }
        }
