        /* ==================================================
        VARIABLES INSPIRADAS EN MYINVITE.DIGITAL
        ================================================== */
        :root {
            --sage: #A8C090;        /* Verde salvia más claro */
            --olive: #8A9A5B;       /* Verde oliva más claro */
            --beige: #FAF8F2;       /* Beige más claro y suave */
            --light-sage: #C8D8B8;  /* Verde salvia muy claro */
            --light-olive: #9CAF78; /* Verde oliva claro */
            --text: #4A5568;        /* Texto gris suave en lugar de negro */
            --text-light: #718096;  /* Texto más claro */
            --white: #FFFFFF;
            --border: #E9ECEF;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --transition: all 0.3s ease;
            
            /* Fuentes del login.php */
            --font-heading: 'Cinzel', serif;
            --font-body: 'Cormorant Garamond', serif;
            --font-label: 'Montserrat', sans-serif;
            
            /* Aliases para compatibilidad */
            --primary: var(--sage);
            --primary-light: var(--light-sage);
            --primary-dark: var(--olive);
            --secondary: var(--olive);
            --light: var(--white);
            --light-gray: var(--beige);
            --gray: var(--text-light);
            --dark: var(--text);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--dark);
            line-height: 1.6;
            background-color: var(--light);
            font-weight: 400;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: 0.5px;
        }
        
        .btn, .nav-links a, .nav-login-btn {
            font-family: var(--font-label);
            font-weight: 500;
        }
        
        .section-header p, .hero-left p, .benefit p, .package-features li {
            font-family: var(--font-body);
            font-weight: 400;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            letter-spacing: 2px;
            font-weight: 400;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--sage), var(--olive));
        }

        .section-header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.6);
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 8px 8px 20px rgba(0,0,0,0.15);
            backdrop-filter: blur(2px);
        }

        .btn:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
            box-shadow: 10px 10px 25px rgba(0,0,0,0.2);
            border-color: rgba(255,255,255,0.9);
        }

        .btn-whatsapp {
            background: #25D366;
        }

        .btn-whatsapp:hover {
            background: #128C7E;
        }

        /* ==================================================
        HEADER - Estilo myinvite
        ================================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            padding: 15px 0;
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--olive);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--olive);
        }

        .nav-login-btn {
            background: linear-gradient(90deg, var(--sage), var(--olive));
            color: white !important;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-login-btn:hover {
            background: linear-gradient(90deg, var(--olive), var(--sage));
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(138, 154, 91, 0.3);
        }

        .nav-login-btn i {
            margin-right: 8px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

        /* ==================================================
        HERO SLIDER — Imágenes reales de eventos demo
        ================================================== */
        .hero {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            z-index: 0;
        }

        /* ─── Slider container ─── */
        .hero-slider {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 1;
        }

        /* ─── Each slide ─── */
        .hero-slide {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease;
            z-index: 1;
        }
        .hero-slide.active {
            opacity: 1;
            z-index: 2;
        }

        .hero-slide-img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            animation: heroKenBurns 8s ease-in-out forwards;
            transform-origin: center;
        }

        @keyframes heroKenBurns {
            0%   { transform: scale(1); }
            100% { transform: scale(1.15); }
        }

        /* ─── Overlay oscuro ─── */
        .hero-slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.55) 100%);
            z-index: 2;
        }

/* ─── Franja inferior ─── */
        .hero-slide-label {
            position: absolute;
            bottom: 70px;
            left: 0;
            right: 0;
            z-index: 3;
            padding: 6px 12px;
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            font-weight: 400;
            color: #fff;
            letter-spacing: 3px;
            text-shadow: 0 1px 6px rgba(0,0,0,0.6);
            text-transform: uppercase;
            backdrop-filter: blur(10px);
            background: rgba(0,0,0,0.12);
        }

        /* ─── Glow removido ── */

        .hero-grid {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1fr;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .hero-left {
            max-width: 500px;
            padding: 0;
            background: none;
            backdrop-filter: none;
            border-radius: 0;
            box-shadow: none;
            margin: 80px 0 0 0;
        }

        .hero-left h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            color: #fff;
            text-align: left;
            letter-spacing: 2px;
            font-weight: 400;
            text-shadow: 0 0 30px rgba(0,0,0,0.9), 0 0 60px rgba(0,0,0,0.5);
        }

        .hero-left h1 span {
            color: var(--olive);
        }

        .hero-left p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 25px;
            line-height: 1.6;
            text-align: left;
            max-width: 400px;
            text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 6px 30px rgba(0,0,0,0.25);
        }

        .mobile-text { display: none; }
        .desktop-text { display: block; }

        .hero-logo { display: none; }

        /* ─── Split-screen layout (PC) ─── */
        @media (min-width: 769px) {
            /* Left half: dark background — full height from top */
            .hero::before {
                content: '';
                position: absolute;
                left: 0; top: 0;
                width: 100%; height: 100%;
                background: linear-gradient(to right, #fff 0%, #fff 20%, transparent 45%);
                z-index: 2;
            }
            /* Slider: auto width, full height, aligned right */
            .hero-slider {
                right: 0;
                left: auto;
                width: auto;
                height: 100%;
                top: 0;
                background: none;
            }
            .hero-slide {
                right: 0;
                left: auto;
                width: auto;
            }
            .hero-slide-img {
                width: auto;
                height: 100%;
                object-fit: contain;
                animation: none;
            }
            .hero-slide-overlay { display: none; }
            .hero-slide-label { display: none; }
            /* Hero: same container system as navbar */
            .hero {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                padding-left: 0;
            }
            .hero-grid {
                width: 100%;
                max-width: 1200px;
                margin: 0 0 0 15px;
                padding: 0 20px;
                display: block;
                text-align: left;
            }
            .hero-left {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                width: 420px;
                margin: 0;
                padding: 0;
            }
            .hero-logo {
                position: relative;
                left: auto;
                top: auto;
                transform: none;
                height: 34vh;
                width: auto;
                max-width: 22vw;
                object-fit: contain;
                z-index: 3;
                display: block;
                margin-bottom: 12px;
            }
            .hero-text {
                display: block;
                margin: 0;
                padding: 0;
            }
            .hero-left h1 {
                font-size: 2.6rem;
                text-align: left;
                color: #8A9A5B;
                text-shadow: none;
            }
            .hero-left p {
                color: #444;
                text-shadow: none;
                text-align: left;
                max-width: 100%;
                margin: 0 0 25px;
            }
            .hero-left .btn {
                display: inline-block;
                padding: 10px 24px;
                font-size: 0.9rem;
                color: #fff;
                background: linear-gradient(90deg, var(--sage), var(--olive));
                border-radius: 20px;
                font-weight: 600;
                border: none;
                box-shadow: none;
            }
        }


        /* ==================================================
        EJEMPLOS - Carrusel Swiper con mockups de celular
        ================================================== */
        .examples {
            background: var(--light-gray);
        }

        .examples-swiper {
            overflow: visible;
        }

        .examples-swiper .swiper-button-prev,
        .examples-swiper .swiper-button-next {
            color: var(--primary);
        }
        .examples-swiper .swiper-button-prev::after,
        .examples-swiper .swiper-button-next::after {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .examples-swiper .swiper-pagination-bullet-active {
            background: var(--primary);
        }

        /* ─── Phone Mockup (idéntico a preview_web.php) ─── */
        .phone-mockup {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding-top: 30px;
            padding-bottom: 50px;
        }

        .phone-body {
            background: #1a1a1a;
            border-radius: 40px;
            border: 3px solid #333;
            box-shadow:
                0 0 0 2px #222,
                0 0 0 4px #333,
                0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
            position: relative;
            width: 100%;
            max-width: 250px;
            aspect-ratio: 9 / 19;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .phone-mockup:hover .phone-body {
            transform: translateY(-4px);
            box-shadow:
                0 0 0 2px #222,
                0 0 0 4px #333,
                0 28px 70px rgba(0,0,0,0.4);
        }

        /* Home bar inferior */
        .phone-body::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: rgba(255,255,255,0.25);
            border-radius: 100px;
            z-index: 10;
        }

        .phone-screen {
            position: absolute;
            inset: 0;
            overflow: hidden;
            border-radius: 37px;
            background: #000;
        }

        .phone-preview {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }

        @media (min-width: 768px) {
            .phone-body {
                max-width: 230px;
            }
        }
        @media (min-width: 1024px) {
            .phone-body {
                max-width: 210px;
            }
        }

        .phone-label {
            padding: 16px 0 0;
            text-align: center;
        }

        .phone-label h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .phone-label .btn {
            padding: 8px 20px;
            font-size: 0.9rem;
            background-color: var(--btn-color);
            border-color: var(--btn-color);
            background-image: linear-gradient(
                115deg,
                transparent 35%,
                rgba(255,255,255,0.3) 47%,
                rgba(255,255,255,0.6) 50%,
                rgba(255,255,255,0.3) 53%,
                transparent 65%
            );
            background-size: 250% 100%;
            animation: btnShine 3.5s ease-in-out infinite;
        }

        @keyframes btnShine {
            0% { background-position: 150% 0; }
            35% { background-position: -50% 0; }
            100% { background-position: -50% 0; }
        }

        /* ==================================================
        BENEFICIOS - "¿Por qué elegirnos?"
        ================================================== */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit {
            text-align: center;
            padding: 30px;
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: var(--light-sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--olive);
            font-size: 1.8rem;
        }

        .benefit h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .benefit p {
            color: var(--gray);
        }

        /* ==================================================
        PAQUETES - "Paquetes y precios"
        ================================================== */
        .packages {
            background: var(--light-gray);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        /* Centrar la 4ta columna cuando caiga abajo */
        .packages-grid .package-card:nth-child(4):last-child {
            grid-column: 1 / -1;
            max-width: 280px;
            margin: 0 auto;
        }
        
        .package-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .package-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .package-header {
            padding: 30px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }

        .package-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: white;
        }

        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 15px 0;
            color: white;
        }

        .package-price span {
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.8;
        }
        
        .precio-original {
            display: block;
            text-decoration: line-through;
            opacity: 0.5;
            font-size: 0.9rem !important;
            font-weight: 300 !important;
            margin-bottom: -4px;
        }
        
        .promo-badge {
            display: inline-block;
            background: rgba(255,255,255,0.25);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-top: 6px;
        }

        .package-features {
            padding: 30px;
        }

        .package-features ul {
            list-style: none;
        }

        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li i {
            color: var(--primary);
        }

        .package-footer {
            padding: 0 30px 30px;
            text-align: center;
        }

        /* ==================================================
        PAQUETES VENDEDORES - Nueva sección
        ================================================== */
        .vendedores {
            background: linear-gradient(135deg, rgba(168, 192, 144, 0.08) 0%, rgba(138, 154, 91, 0.08) 100%);
        }

        .vendedor-card {
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .vendedor-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--olive), #6A7A4A);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .vendedor-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .vendedor-feature {
            text-align: center;
            padding: 20px;
            background: var(--light-gray);
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

        .vendedor-feature i {
            font-size: 2rem;
            color: var(--olive);
            margin-bottom: 15px;
        }

        .creditos-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin: 20px 0;
        }

        .credito-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: var(--light-gray);
            border-radius: 20px;
            border: 1px solid var(--border);
            font-size: 0.85rem;
        }

        .credito-numero {
            font-weight: 700;
            color: var(--olive);
        }

        .credito-plan {
            color: var(--gray);
        }

        /* ==================================================
        CONFIRMACIÓN - "Los momentos importantes merecen..."
        ================================================== */
        .confirmation {
            text-align: center;
        }

        .confirmation h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .confirmation p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        /* ==================================================
        GALERÍA EN VIVO — Premium feature highlight
        ================================================== */
        .galeria-vivo {
            background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .galeria-vivo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(168,192,144,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .galeria-vivo .section-header {
            position: relative;
            z-index: 1;
        }

        .galeria-vivo .section-header h2 {
            color: white;
            font-size: 2.2rem;
        }

        .galeria-vivo .section-header p {
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .gv-badge {
            display: block;
            background: linear-gradient(135deg, #D4A853, #B8912E);
            color: #1a1a2e;
            font-family: var(--font-label);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 16px;
            border-radius: 20px;
            margin: 0 auto 20px;
            width: fit-content;
        }

        .gv-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0 40px;
            position: relative;
            z-index: 1;
        }

        .gv-step {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .gv-step:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
        }

        .gv-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 5rem;
            opacity: 0.07;
            pointer-events: none;
            line-height: 1;
        }

        .gv-step h3 {
            font-family: var(--font-label);
            font-size: 1.15rem;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .gv-step p {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .gv-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin: 0 auto 40px;
            max-width: 700px;
            position: relative;
            z-index: 1;
        }

        .gv-feature {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.85);
            font-family: var(--font-label);
            white-space: nowrap;
        }

        .gv-cta {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .btn-gv {
            display: inline-block;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-family: var(--font-label);
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        }

        .btn-gv:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
        }

        /* Phone mockup */
        .gv-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin: 50px 0 40px;
            position: relative;
            z-index: 1;
        }

        .gv-content .gv-steps {
            margin: 0;
        }

        .gv-phone-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gv-phone {
            width: 260px;
            background: #1a1a2e;
            border-radius: 32px;
            border: 3px solid rgba(255,255,255,0.15);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.03);
            overflow: hidden;
            position: relative;
        }

        .gv-phone-screen {
            padding: 12px;
            padding-top: 0;
            font-family: 'Inter', sans-serif;
        }

        .gv-phone-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 4px;
            font-size: 0.65rem;
            color: rgba(255,255,255,0.8);
        }
        .gv-phone-back { color: rgba(255,255,255,0.5); font-size: 0.6rem; }
        .gv-phone-title { flex: 1; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .gv-phone-user { background: rgba(255,255,255,0.1); padding: 2px 7px; border-radius: 10px; font-size: 0.55rem; white-space: nowrap; }

        .gv-phone-winners {
            text-align: center;
            margin: 6px 0;
        }
        .gv-phone-winner-label {
            font-size: 0.55rem;
            color: #f8b500;
            display: block;
            margin-bottom: 4px;
        }
        .gv-phone-winner-pic {
            width: 100%;
            height: 90px;
            border-radius: 8px;
            background: linear-gradient(135deg, #2a1f3d, #4a2f5d, #2a1f3d);
            background-size: 200% 200%;
            animation: gv-shimmer 3s ease-in-out infinite;
        }
        @keyframes gv-shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .gv-phone-cats {
            display: flex;
            gap: 5px;
            overflow: hidden;
            padding: 6px 0;
        }
        .gv-phone-cat {
            font-size: 0.55rem;
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.5);
            white-space: nowrap;
        }
        .gv-phone-cat.active {
            background: rgba(255,255,255,0.2);
            color: white;
        }

        .gv-phone-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px;
            margin: 6px 0;
        }
        .gv-phone-photo {
            aspect-ratio: 1;
            border-radius: 6px;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 4px;
        }
        .gv-phone-votes {
            font-size: 0.5rem;
            color: white;
            background: rgba(0,0,0,0.4);
            padding: 2px 6px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 3px;
        }
        .gv-phone-votes .fa-heart { color: #ed4956; font-size: 0.45rem; }

        .gv-phone-fab {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin: 8px auto;
            padding: 6px 14px;
            background: rgba(255,255,255,0.12);
            border-radius: 20px;
            font-size: 0.6rem;
            color: rgba(255,255,255,0.8);
            width: fit-content;
        }
        .gv-phone-fab .fa-plus-circle { color: #25D366; font-size: 0.7rem; }

        @media (max-width: 768px) {
            .gv-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .gv-phone {
                width: 220px;
                border-radius: 28px;
            }
            .gv-phone-winner-pic {
                height: 70px;
            }
        }

        /* ========== ÁLBUM: etiqueta de nombre en fotos ========== */
        .album-phone-name {
            font-size: 0.5rem;
            color: rgba(255,255,255,0.85);
            background: rgba(0,0,0,0.4);
            padding: 2px 5px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 2px;
            position: absolute;
            bottom: 3px;
            left: 3px;
            pointer-events: none;
        }

        .confirmation-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .confirmation-feature {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .confirmation-feature i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* ==================================================
        PROCESO
        ================================================== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .process-step {
            padding: 30px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
            margin: 0 auto 15px;
        }

        /* ==================================================
        TESTIMONIOS
        ================================================== */
        .testimonials {
            background: var(--light-gray);
        }

        .testimonials-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 250px;
        }
        
        .testimonial-text {
            flex-grow: 1;
            font-size: 1.1rem;
            color: var(--gray);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--gray);
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--dark);
        }

        /* ==================================================
        FAQ INTERACTIVO - Respuestas ocultas por defecto
        ================================================== */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--light-gray);
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            color: var(--gray);
            line-height: 1.7;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* ==================================================
        CONTACTO
        ================================================== */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: var(--transition);
        }

        a.contact-item {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            border-radius: var(--radius);
            padding: 10px;
            margin: -10px;
        }

        a.contact-item .contact-details p:first-of-type {
            color: var(--olive);
            text-decoration: underline;
        }

        a.contact-item:hover {
            background: rgba(168, 192, 144, 0.08);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            margin-bottom: 5px;
            color: var(--dark);
        }

        .contact-details p {
            color: var(--gray);
        }

        /* ==================================================
        FOOTER
        ================================================== */
        .footer {
            background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            padding: 60px 0 30px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            text-align: center;
        }

        .footer-column h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ADB5BD;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ADB5BD;
            font-size: 0.9rem;
        }

        /* ==================================================
        RESPONSIVE
        ================================================== */
        @media (max-width: 992px) {
            .hero {
                min-height: 70vh;
            }
            

            
            .hero-left {
                max-width: 90%;
                margin: 0;
                text-align: left;
            }
            
            .hero-left h1 {
                font-size: 2.8rem;
                text-align: left;
                color: #8A9A5B;
                text-shadow: none;
            }
            
            .hero-left p {
                text-align: left;
                max-width: 100%;
                margin-left: 0;
                margin-right: auto;
                color: #444;
                text-shadow: none;
            }
            
            .section {
                padding: 60px 0;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-login-btn {
                margin-top: 10px;
                text-align: center;
                padding: 12px 20px;
                border-radius: 25px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .packages-grid .package-card:nth-child(4):last-child {
                max-width: 100%;
                margin: 0;
            }
            
            .testimonials-slider {
                grid-template-columns: 1fr;
            }
            
            .testimonial {
                min-height: auto;
                padding: 25px;
            }

            .vendedor-features {
                grid-template-columns: 1fr;
            }

            .creditos-grid {
                gap: 6px;
            }

            /* Hero overlay diagonal en móvil */
            .hero-slide-overlay {
                background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 25%, rgba(255,255,255,0.65) 55%, rgba(255,255,255,0.25) 80%, transparent 100%) !important;
            }
            .hero-slide-img {
                animation: none;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }

            .section {
                padding: 50px 0;
            }

            .hero {
                height: 100vh;
                padding-top: 0;
                padding-bottom: 0;
                align-items: flex-start;
                padding-top: 12vh;
            }
            
            .hero-left {
                margin-top: 0;
                padding-bottom: 120px;
                display: flex;
                flex-direction: column;
            }

            .hero-logo { display: block; order: unset; position: fixed; bottom: 80px; left: -20px; z-index: 999; width: 160px; height: auto; opacity: 0.9; }
            .hero-watermark { display: none; }
            .hero-text { order: 1; }
            .hero-left > .btn { order: 3; align-self: flex-end; margin-top: 20px; }


            .hero-left h1 {
                font-size: 2.2rem;
                text-align: left;
                padding-top: 10px;
                color: #8A9A5B;
                text-shadow: none;
            }
            
            .hero-slide-label {
                font-size: 0.85rem;
                letter-spacing: 2px;
            }
            .mobile-text {
                display: block;
            }
            
            .desktop-text {
                display: none;
            }
            
            .hero-left p {
                font-size: 1.1rem;
                text-align: left;
                line-height: 1.5;
                margin-bottom: 20px;
                color: #444;
                text-shadow: none;
            }
            
            .hero-left .btn {
                margin-bottom: 20px;
                margin-top: 180px;
                background: linear-gradient(90deg, var(--sage), var(--olive));
                color: #fff;
                border-radius: 20px;
                font-weight: 600;
                border: none;
                box-shadow: 0 4px 20px rgba(0,0,0,0.45);
            }



            .creditos-grid {
                gap: 4px;
            }
            .credito-item {
                font-size: 0.8rem;
                padding: 4px 10px;
            }

            .phone-body {
                padding: 8px;
            }
        }

        /* Desktop: label pegado al borde inferior */
        @media (min-width: 769px) {
            .hero-slide-label {
                bottom: 0;
            }
            .hero-slide-label::after {
                display: none;
            }
        }
