/* VARIABLES SEGÚN TU MOODBOARD */
        :root {
            --verde-naturaleza: #0b3c39;
            --verde-acento: #26ffae;
            --amarillo-solar: #fdc358;
            --blanco-hueso: #F5F5F5;
            --font-tech: 'JetBrains Mono', monospace;
            --font-body: 'Inter', sans-serif;
        }

        /* ESTILOS GENERALES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--verde-naturaleza);
            color: var(--blanco-hueso);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow: hidden; 
        }

        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }

        .logo {
            font-family: var(--font-tech);
            font-size: 1.5rem;
            letter-spacing: 2px;
            font-weight: bold;
        }

        .hero {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            height: 100vh;
            padding: 0 10%;
            gap: 50px;
            background: 
                linear-gradient(rgba(11, 36, 30, 0.7), rgba(11, 36, 30, 0.8)), 
                url('../img/bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            margin-top: 50px; 
        }

        .hero-content h1 {
            font-family: var(--font-tech);
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem; /* Reducido para encajar la caja de oferta */
            color: rgba(245, 245, 245, 0.8);
        }

        /* ========================================= */
        /* ESTILOS DE MARKETING (NUEVO)              */
        /* ========================================= */
        .offer-box {
            background: #fdc3582b;
            border: 1px solid #fdc35838;
            border-left: 4px solid var(--amarillo-solar);
            border-radius: 6px;
            padding: 15px 20px;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .offer-text {
            font-size: 1rem !important;
            margin-bottom: 12px !important;
            color: var(--blanco-hueso) !important;
        }

        .price-strike {
            text-decoration: line-through;
            color: #ff6b6b;
            font-size: 0.9em;
            opacity: 0.8;
        }

        .scarcity-block {
            margin-top: 5px;
        }

        .progress-text {
            font-family: var(--font-tech);
            font-size: 0.85rem;
            margin-bottom: 6px;
            color: var(--amarillo-solar);
            letter-spacing: -0.5px;
        }

        .progress-bar-container {
            width: 100%;
            height: 8px;
            background-color: #fdc35838;
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            width: 0%; /* Inicia en 0 para la animación por JS */
            background: linear-gradient(90deg, #b89b00, var(--amarillo-solar));
            border-radius: 10px;
            transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* FORMULARIO Y BOTÓN */
        .cta-form {
            display: flex;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            padding: 8px; /* Ligeramente más compacto */
            border-radius: 8px;
            border: 1px solid #fdc35838;
        }

        .cta-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 4px;
            background: transparent;
            color: white;
            font-size: 1rem;
        }

        .cta-form input:focus {
            outline: none;
        }

        .btn-primary {
            background-color: var(--amarillo-solar);
            color: var(--verde-naturaleza); /* Mejor contraste de lectura */
            border: none;
            padding: 15px 25px;
            font-family: var(--font-tech);
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
            border-radius: 4px;
        }

        .btn-primary:hover {
            transform: scale(1.03);
            background-color: #d5a44a;
            box-shadow: 0 0 15px #d5a44a9e;
        }

        /* IMAGEN / MOCKUP */
        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-top: 50px;
        }

        .hero-visual img {
            width: 100%;
            max-width: 380px;
            filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
        }

        /* RESPONSIVE MEJORADO */
        @media (max-width: 968px) {
            body {
                overflow-y: auto; 
                overflow-x: hidden;
            }

            .hero {
                height: auto;
                min-height: 100vh;
                flex-direction: column;
                text-align: center;
                background-attachment: scroll; 
                padding-top: 100px;
                padding-bottom: 60px;
                gap: 30px;
            }

            .hero-content {
                margin-top: 0;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .offer-box {
                text-align: left; /* Mantener la caja alineada a la izq en móvil queda más premium */
            }

            .cta-form {
                flex-direction: column;
            }

            .hero-visual {
                margin-top: 10px;
            }

            .hero-visual img {
                max-width: 280px;
            }
        }
        
        /* ========================================= */
        /* FOOTER Y LEGALES                          */
        /* ========================================= */
        .site-footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 1.5rem;
            text-align: center;
            z-index: 10;
        }

        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            font-size: 0.85rem;
        }

        .footer-link {
            color: rgba(245, 245, 245, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--amarillo-solar);
        }

        .email-link {
            font-family: var(--font-tech);
            color: var(--blanco-hueso);
        }

        .separator {
            color: rgba(245, 245, 245, 0.3);
        }

        /* BANNER DE COOKIES */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(11, 60, 57, 0.95);
            border: 1px solid var(--verde-acento);
            padding: 15px 25px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            max-width: 90%;
            backdrop-filter: blur(5px);
        }

        .cookie-banner p {
            font-size: 0.85rem;
            margin: 0;
        }

        .btn-cookie {
            background: var(--verde-acento);
            color: var(--verde-naturaleza);
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            font-family: var(--font-tech);
        }

        /* MODAL POLÍTICA DE COOKIES */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: var(--blanco-hueso);
            color: #333;
            width: 90%;
            max-width: 600px;
            border-radius: 8px;
            padding: 30px;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-content h2 {
            font-family: var(--font-tech);
            color: var(--verde-naturaleza);
            margin-bottom: 15px;
        }

        .modal-content h3 {
            margin-top: 15px;
            font-size: 1.1rem;
            color: var(--verde-naturaleza);
        }

        .modal-content ul {
            margin-left: 20px;
            margin-top: 10px;
        }

        .modal-content p, .modal-content li {
            font-size: 0.95rem;
            margin-bottom: 10px;
            color: #444;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: #333;
            line-height: 1;
        }

        /* RESPONSIVE FOOTER */
        @media (max-width: 968px) {
            .site-footer {
                position: relative;
                padding-bottom: 30px;
            }
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }