/* Variables CSS */
        :root {
            --verde-principal: #4ade80;
            --verde-hover: #22c55e;
            --negro: #0a0a0a;
            --negro-claro: #1a1a1a;
            --gris-oscuro: #262626;
            --gris: #525252;
            --gris-claro: #a3a3a3;
            --blanco: #fcfcfc;
            --verde-glow: rgba(74, 222, 128, 0.3);
            --verde-subtle: rgba(74, 222, 128, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: #0a0f15;
            color: var(--blanco);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Utilidades */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        /* Elementos flotantes de fondo */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .floating-leaf {
            position: absolute;
            opacity: 0.3;
            animation: float 15s infinite ease-in-out;
        }

        .floating-leaf:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 20s;
        }

        .floating-leaf:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: -5s;
            animation-duration: 25s;
        }

        .floating-leaf:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: -10s;
            animation-duration: 18s;
        }

        .floating-leaf:nth-child(4) {
            bottom: 30%;
            right: 10%;
            animation-delay: -15s;
            animation-duration: 22s;
        }

        .floating-leaf:nth-child(5) {
            top: 50%;
            left: 5%;
            animation-delay: -8s;
            animation-duration: 24s;
        }

        .floating-leaf:nth-child(6) {
            top: 70%;
            right: 25%;
            animation-delay: -12s;
            animation-duration: 16s;
        }

        /* Partículas verdes */
        .green-dots {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .dot {
            position: absolute;
            width: 0.1px;
            height: 0.1px;
            background: var(--verde-principal);
            border-radius: 50%;
            opacity: 0.8;
            animation: twinkle 8s infinite ease-in-out;
            box-shadow: 0 0 0.5px var(--verde-principal);
        }

        .dot:nth-child(1) { top: 15%; left: 85%; animation-delay: 0s; }
        .dot:nth-child(2) { top: 25%; left: 15%; animation-delay: 1s; }
        .dot:nth-child(3) { top: 45%; left: 90%; animation-delay: 2s; }
        .dot:nth-child(4) { top: 65%; left: 10%; animation-delay: 0.5s; }
        .dot:nth-child(5) { top: 80%; left: 80%; animation-delay: 1.5s; }
        .dot:nth-child(6) { top: 35%; left: 75%; animation-delay: 2.5s; }
        .dot:nth-child(7) { top: 55%; left: 25%; animation-delay: 3s; }
        .dot:nth-child(8) { top: 75%; left: 45%; animation-delay: 1.8s; }
        .dot:nth-child(9) { top: 20%; left: 60%; animation-delay: 0.8s; }
        .dot:nth-child(10) { top: 90%; left: 20%; animation-delay: 2.2s; }

        /* Botones */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: var(--transition);
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--verde-principal);
            color: var(--negro);
        }

        .btn-primary:hover {
            background: var(--verde-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px var(--verde-glow);
        }

        .btn-outline {
            background: transparent;
            color: var(--blanco);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            border-color: var(--verde-principal);
            color: var(--verde-principal);
            transform: translateY(-2px);
        }

        .btn:focus-visible {
            outline: 2px solid var(--verde-principal);
            outline-offset: 2px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -2px;
            animation: heroTitleReveal 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
            color: white;
        }

        .hero h1 .highlight {
            color: var(--verde-principal);
            position: relative;
            display: inline-block;
            animation: highlightGlow 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s both;
            text-shadow: 
                0 0 8px rgba(74, 222, 128, 1),
                0 0 16px rgba(74, 222, 128, 0.8),
                0 0 32px rgba(74, 222, 128, 0.4);
            filter: none;
            box-shadow: none;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            color: var(--gris-claro);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            animation: subtitleFade 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: buttonsFade 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
        }

        /* Secciones */
        .section {
            padding: 6rem 0;
            position: relative;
            z-index: 2;
        }

        .section:nth-child(even) {
            background: rgba(74, 222, 128, 0.02);
            border-top: 1px solid rgba(74, 222, 128, 0.05);
            border-bottom: 1px solid rgba(74, 222, 128, 0.05);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gris-claro);
            line-height: 1.6;
        }

        /* Cómo funciona */
        .steps {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            background: var(--negro-claro);
            border: 1px solid var(--gris-oscuro);
            padding: 2.5rem 2rem;
            border-radius: 12px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--verde-principal);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .step:hover::before {
            transform: scaleX(1);
        }

        .step:hover {
            transform: translateY(-5px);
            border-color: var(--verde-principal);
            box-shadow: 0 20px 40px rgba(74, 222, 128, 0.1);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--verde-principal);
            color: var(--negro);
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .step h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--blanco);
        }

        .step p {
            color: var(--gris-claro);
            line-height: 1.6;
        }

        /* Beneficios modernos */
        .benefits-modern {
            display: grid;
            gap: 2rem;
            margin-top: 4rem;
        }

        .benefit-modern {
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.03) 0%, rgba(74, 222, 128, 0.08) 100%);
            border: 1px solid rgba(74, 222, 128, 0.1);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .benefit-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--verde-principal) 0%, rgba(74, 222, 128, 0.3) 100%);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: var(--transition);
        }

        .benefit-modern:hover::before {
            transform: scaleY(1);
        }

        .benefit-modern:hover {
            transform: translateY(-8px);
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.06) 0%, rgba(74, 222, 128, 0.12) 100%);
            border-color: rgba(74, 222, 128, 0.2);
            box-shadow: 0 20px 60px rgba(74, 222, 128, 0.1);
        }

        .benefit-number {
            display: inline-block;
            background: var(--verde-principal);
            color: var(--negro);
            width: 32px;
            height: 32px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .benefit-modern h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--blanco);
            line-height: 1.3;
        }

        .benefit-modern p {
            color: var(--gris-claro);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Producto showcase rediseñado */
        .demo-section {
            background: linear-gradient(180deg, rgba(74, 222, 128, 0.02) 0%, transparent 100%);
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 8rem 0 10rem;
        }

        .product-showcase-redesign {
            margin-top: 8rem;
        }

        .product-block {
            display: grid;
            align-items: center;
            gap: 6rem;
            margin-bottom: 12rem;
            position: relative;
        }

        .product-block:last-child {
            margin-bottom: 0;
        }

        .product-block::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.2), transparent);
            z-index: 1;
        }

        .product-content-side {
            position: relative;
            z-index: 2;
        }

        .product-number {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--verde-principal), var(--verde-hover));
            color: var(--negro);
            border-radius: 16px;
            font-weight: 800;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2.5rem;
            box-shadow: 0 8px 32px rgba(74, 222, 128, 0.3);
        }

        .product-content-side h3 {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 2rem;
            color: var(--blanco);
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .product-content-side p {
            font-size: 1.2rem;
            color: var(--gris-claro);
            line-height: 1.8;
            margin-bottom: 3rem;
            max-width: 500px;
        }

        .product-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2rem;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--verde-principal);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gris-claro);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .product-quote {
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.05), rgba(74, 222, 128, 0.1));
            border-left: 4px solid var(--verde-principal);
            padding: 1.5rem 2rem;
            border-radius: 8px;
            font-style: italic;
            font-size: 1.1rem;
            color: var(--blanco);
            position: relative;
            margin-top: 2rem;
        }

        .product-quote::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 15px;
            font-size: 3rem;
            color: var(--verde-principal);
            font-weight: 700;
        }

        .product-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .benefit-pill {
            background: rgba(74, 222, 128, 0.1);
            border: 1px solid rgba(74, 222, 128, 0.3);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            color: var(--verde-principal);
            font-weight: 500;
            transition: var(--transition);
        }

        .benefit-pill:hover {
            background: rgba(74, 222, 128, 0.2);
            border-color: var(--verde-principal);
            transform: translateY(-2px);
        }

        .product-visual-side {
            position: relative;
            z-index: 2;
        }

        .image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .image-container img {
            width: 90%;
            height: auto;
            border-radius: 16px;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
            transition: var(--transition);
        }

        /* Bankapp mucho más grande */
        .product-block[data-product="1"] .image-container img {
            width: 120%;
            max-width: none;
        }

        .desktop-view img {
            width: 95%;
            border-radius: 12px;
        }

        .image-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(74, 222, 128, 0.2), transparent 70%);
            z-index: -1;
            border-radius: 50%;
            animation: glow-pulse 4s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% { 
                opacity: 0.3; 
                transform: translate(-50%, -50%) scale(1);
            }
            50% { 
                opacity: 0.6; 
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        .product-block:hover .image-container img {
            transform: scale(1.05);
            filter: drop-shadow(0 30px 80px rgba(74, 222, 128, 0.2));
        }

        /* Animaciones de entrada */
        .product-block {
            opacity: 0;
            transform: translateY(80px);
            animation: productBlockSlideIn 1.2s ease-out forwards;
        }

        .product-block:nth-child(1) { animation-delay: 0.2s; }
        .product-block:nth-child(2) { animation-delay: 0.5s; }
        .product-block:nth-child(3) { animation-delay: 0.8s; }

        @keyframes productBlockSlideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive design mejorado */
        @media (min-width: 768px) {
            .product-block {
                grid-template-columns: 1fr 1fr;
                gap: 8rem;
                margin-bottom: 15rem;
            }

            .product-block.reverse {
                direction: rtl;
            }

            .product-block.reverse > * {
                direction: ltr;
            }

            .product-stats {
                gap: 4rem;
            }
        }

        @media (min-width: 1024px) {
            .product-showcase-redesign {
                margin-top: 10rem;
            }

            .product-block {
                gap: 10rem;
                margin-bottom: 18rem;
            }

            .image-container img {
                max-width: 950px;
            }

            /* Bankapp aún más grande en desktop */
            .product-block[data-product="1"] .image-container img {
                max-width: 1400px;
            }

            .desktop-view img {
                max-width: 1200px;
            }

            .product-content-side p {
                max-width: 550px;
            }
        }

        @media (max-width: 767px) {
            .product-block {
                gap: 4rem;
                margin-bottom: 8rem;
            }

            .product-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .image-container img {
                max-width: 600px;
            }

            /* Bankapp más grande en móvil también */
            .product-block[data-product="1"] .image-container img {
                max-width: 800px;
            }

            .benefit-pill {
                font-size: 0.8rem;
                padding: 0.6rem 1.2rem;
            }
        }

        /* Testimonial */
        .testimonial {
            background: var(--negro-claro);
            border: 1px solid var(--gris-oscuro);
            padding: 3rem 2rem;
            border-radius: 12px;
            text-align: center;
            margin: 3rem 0;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 4rem;
            color: var(--verde-principal);
            font-weight: 700;
        }

        .testimonial blockquote {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--gris-claro);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .testimonial cite {
            color: var(--verde-principal);
            font-weight: 600;
        }

        /* CTA Final */
        .cta-final {
            text-align: center;
            padding: 8rem 0;
            background: rgba(74, 222, 128, 0.015);
            border-top: 1px solid rgba(74, 222, 128, 0.06);
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-final h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: var(--blanco);
            letter-spacing: -1px;
        }

        .cta-final p {
            font-size: 1.2rem;
            color: var(--gris-claro);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .contact {
            margin-top: 2rem;
        }

        .contact p {
            font-size: 1.1rem;
            color: var(--gris-claro);
            margin: 0;
        }

        .contact a {
            color: var(--verde-principal);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .contact a:hover {
            color: var(--verde-hover);
        }

        /* Footer Simple */
        .footer {
            background: var(--negro-claro);
            border-top: 1px solid var(--gris-oscuro);
            padding: 3rem 0 2rem;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            height: 60px;
        }

        .footer-logo video {
            height: 100%;
            width: auto;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

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

        .footer-links a:hover {
            color: var(--verde-principal);
        }

        .footer-copyright {
            color: var(--gris);
            font-size: 0.9rem;
            text-align: center;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .steps {
                grid-template-columns: repeat(3, 1fr);
            }

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

            .product-showcase {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .product-item:nth-child(3) {
                grid-column: 1 / -1;
                max-width: 500px;
                margin: 0 auto;
            }

            .hero-buttons {
                gap: 1.5rem;
            }

            .cta-buttons {
                gap: 2rem;
            }
        }

        @media (min-width: 1024px) {
            .product-showcase {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
            }

            .product-item:nth-child(3) {
                grid-column: auto;
                max-width: none;
            }

            .container {
                padding: 0 4rem;
            }
        }

        /* Animaciones */
        @keyframes heroTitleReveal {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
                filter: blur(8px);
            }
            50% {
                opacity: 0.8;
                transform: translateY(10px) scale(0.98);
                filter: blur(2px);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        @keyframes highlightGlow {
            0% {
                opacity: 0;
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes subtitleFade {
            0% {
                opacity: 0;
                transform: translateY(30px);
                filter: blur(4px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        @keyframes buttonsFade {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes productSlideIn {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }
            33% {
                transform: translateY(-20px) rotate(5deg);
                opacity: 0.5;
            }
            66% {
                transform: translateY(10px) rotate(-3deg);
                opacity: 0.2;
            }
        }

        @keyframes twinkle {
            0%, 100% {
                opacity: 0.2;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.5);
            }
        }

        /* Animaciones de entrada para elementos */
        .step {
            animation: fadeInUp 0.8s ease-out both;
        }

        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.2s; }
        .step:nth-child(3) { animation-delay: 0.3s; }

        .benefit-modern {
            animation: fadeInUp 0.8s ease-out both;
        }

        .benefit-modern:nth-child(1) { animation-delay: 0.1s; }
        .benefit-modern:nth-child(2) { animation-delay: 0.2s; }
        .benefit-modern:nth-child(3) { animation-delay: 0.3s; }
        .benefit-modern:nth-child(4) { animation-delay: 0.4s; }

        .testimonial {
            animation: fadeInUp 1s ease-out both;
        }

        /* Accesibilidad */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        *:focus-visible {
            outline: 2px solid var(--verde-principal);
            outline-offset: 2px;
        }

        /* Scroll suave */
        html {
            scroll-behavior: smooth;
        }

        /* --- RastroCero: ampliar imágenes en sección Producto --- */
        .demo-section .product-visual-side .image-container img{
            width: 140%;
            max-width: none;     /* evita límites de ancho anteriores */
        }

        /* Dashboard (clase .desktop-view) aún más grande */
        .demo-section .desktop-view img{
            width: 160%;
            max-width: none;
        }

        /* Producto 1 (App Bancaria) el más protagonista */
        .demo-section .product-block[data-product="1"] .image-container img{
            width: 180%;
            max-width: none;
        }

        /* Glow acompaña el nuevo tamaño */
        .demo-section .image-glow{
            width: 120%;
            height: 120%;
        }

        /* Desktop amplio */
        @media (min-width: 1024px){
            .demo-section .product-visual-side .image-container img{ width: 180%; }
            .demo-section .desktop-view img{ width: 190%; }
            .demo-section .product-block[data-product="1"] .image-container img{ width: 210%; }
        }

        /* Mobile: también más grandes, sin límites estrechos */
        @media (max-width: 767px){
            .demo-section .product-visual-side .image-container img{ 
                width: 150%;
                max-width: none;
            }
            .demo-section .desktop-view img{ 
                width: 150%;
                max-width: none;
            }
            .demo-section .product-block[data-product="1"] .image-container img{ width: 170%; }
        }


.lang-root {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  overflow: hidden;
}

/* Anchors de sección (EN): en flujo normal para que el scroll vaya al lugar correcto */
.lang-anchor {
  position: static;      /* clave: NO absolutas */
  display: block;
  width: 0; height: 0;   /* no alteran el layout */
  overflow: hidden;
  /* opcional: compensar header fijo si lo tuvieras */
  scroll-margin-top: 80px; /* ajusta 80px si querés otro offset */
}

/* Español por defecto visible; Inglés oculto */
.t-en { display: none; }
.t-es { display: initial; }

/* Mostrar INGLÉS si cualquier :target empieza con "en" (ej: #en, #en-demo, #en-como-funciona) */
html:has([id^="en"]:target) .t-en { display: initial; }
html:has([id^="en"]:target) .t-es { display: none; }

/* Mostrar ESPAÑOL si cualquier :target empieza con "es" (ej: #es) */
html:has([id^="es"]:target) .t-en { display: none; }
html:has([id^="es"]:target) .t-es { display: initial; }

/* Botonera del selector */
.lang-switch {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  background: rgba(10, 15, 21, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 6px;
}

.lang-btn {
  font: 600 12px/1 'Montserrat', system-ui, sans-serif;
  color: var(--blanco);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.lang-btn:hover { color: var(--verde-principal); border-color: rgba(74,222,128,0.35); }
.lang-btn:focus-visible { outline: 2px solid var(--verde-principal); outline-offset: 2px; }

/* Estado ACTIVO por defecto: ES (sin hash) */
.lang-switch a[href="#es"] {
  background: var(--verde-principal);
  color: var(--negro);
  box-shadow: 0 6px 18px var(--verde-glow);
}

/* EN activo si cualquier :target empieza por "en" */
html:has([id^="en"]:target) .lang-switch a[href="#en"] {
  background: var(--verde-principal);
  color: var(--negro);
  box-shadow: 0 6px 18px var(--verde-glow);
}
html:has([id^="en"]:target) .lang-switch a[href="#es"] {
  background: transparent;
  color: var(--blanco);
  box-shadow: none;
  border-color: transparent;
}

/* ES activo si :target empieza por "es" */
html:has([id^="es"]:target) .lang-switch a[href="#es"] {
  background: var(--verde-principal);
  color: var(--negro);
  box-shadow: 0 6px 18px var(--verde-glow);
}
html:has([id^="es"]:target) .lang-switch a[href="#en"] {
  background: transparent;
  color: var(--blanco);
  box-shadow: none;
  border-color: transparent;
}
