 :root {
            --primary: #FF8C00;
            --primary-dark: #E67E00;
            --secondary: #FF6B00;
            --accent: #FF5722;
            --accent-light: #FF8A65;
            --success: #4CAF50;
            --warning: #FF9800;
            --danger: #F44336;
            --dark: #212121;
            --darker: #000000;
            --light: #F5F5F5;
            --gray: #757575;
            --gray-light: #E0E0E0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background-color: #FAFAFA;
            color: var(--dark);
            line-height: 1.7;
        }

        .naranja-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .naranja-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 1.5rem 0;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .naranja-header::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--warning));
        }

        .oferta-limitada {
            margin: 2rem 0;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            color: white;
            padding: 1.25rem;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .oferta-limitada::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
            z-index: -1;
        }

        .oferta-limitada h2 {
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .gratis {
            color: #FFF9C4;
            font-weight: 800;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .titulo-principal {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin: 2rem 0;
            text-align: center;
            line-height: 1.2;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .titulo-principal::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            margin: 1rem auto;
            border-radius: 2px;
        }

        .rendimiento {
            margin: 2rem 0;
            font-size: 1.2rem;
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-left: 0px solid var(--success);
            position: relative;
        }

        .destacado {
            color: var(--accent);
            font-weight: 700;
        }

        .movimientos-alza {
            color: var(--success);
            font-weight: 700;
        }

        .info-breakout {
            margin: 2rem 0;
            font-size: 1.2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .info-breakout::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
        }

        .breakout {
            color: var(--primary);
            font-weight: 700;
        }

        .fiebre-compra {
            color: var(--accent);
            font-weight: 700;
        }

        .info-alerta {
            margin: 3rem 0;
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
            position: relative;
        }

        .info-alerta::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
            border-radius: 2px;
        }

        .texto-naranja {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.4rem;
            margin: 1.5rem 0;
            position: relative;
            display: inline-block;
        }

        .texto-naranja::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .texto-naranja:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .plataforma a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .plataforma a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .plataforma a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .texto-cta {
            margin: 2.5rem 0;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--dark);
            text-align: center;
            position: relative;
        }

        .texto-cta::after {
            content: "";
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            margin: 1rem auto;
            border-radius: 2px;
        }

        @keyframes pulso {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4);
            }
            70% {
                transform: scale(1.03);
                box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
            }
        }

        .boton-whatsapp {
            display: block;
            margin: 1.5rem auto;
            padding: 1.25rem;
            border-radius: 50px;
            text-align: center;
            color: white;
            font-size: 1.25rem;
            font-weight: 600;
            text-decoration: none;
            width: 100%;
            max-width: 400px;
            transition: all 0.3s ease;
            animation: pulso 2s infinite;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .boton-whatsapp::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
            z-index: -1;
            transition: all 0.3s ease;
        }

        .boton-whatsapp:hover::before {
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
        }

        .seccion-unirse {
            margin: 4rem 0 2rem;
        }

        .titulo-unirse {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
            color: var(--dark);
            text-align: center;
            position: relative;
        }

        .titulo-unirse::after {
            content: "";
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            margin: 1rem auto;
            border-radius: 2px;
        }

        .tarjetas-caracteristicas {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .tarjeta {
            background-color: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .tarjeta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--accent));
        }

        .tarjeta:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
        }

        .icono-tarjeta {
            margin: 1.5rem 0;
            text-align: center;
            position: relative;
        }

        .icono-tarjeta::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 3px;
        }

        .tarjeta h3 {
            color: var(--dark);
            margin: 1.5rem 0;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
        }

        .tarjeta h4 {
            color: var(--success);
            margin: 1rem 0;
            font-size: 1.25rem;
            font-weight: 600;
            text-align: center;
        }

        .tarjeta p {
            color: var(--gray);
            margin: 1.5rem 0;
            line-height: 1.7;
            font-size: 1.1rem;
            text-align: center;
        }

        .imagen-responsive {
            max-width: 100%;
            height: auto;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .icono-imagen {
            height: 80px;
            width: auto;
            display: inline-block;
            vertical-align: middle;
            filter: drop-shadow(0 5px 15px rgba(255, 140, 0, 0.2));
        }

        .info-alerta .icono-imagen {
            height: 120px;
            margin-bottom: 1.5rem;
        }

        .icono-tarjeta img {
            height: 100px;
            width: auto;
            transition: all 0.3s ease;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        }

        .tarjeta:hover .icono-tarjeta img {
            transform: scale(1.1) rotate(5deg);
        }

        .naranja-footer {
            text-align: center;
            padding: 1.5rem 0;
            margin-top: 3rem;
            color: var(--gray);
            font-size: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            background: white;
        }

        .enlaces-footer {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .enlaces-footer a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem;
            position: relative;
        }

        .enlaces-footer a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .enlaces-footer a:hover::after {
            width: 100%;
        }

        .enlaces-footer a:hover {
            color: var(--primary);
        }

        .overlay-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay-popup.mostrar {
            opacity: 1;
        }

        @keyframes slideIn {
            from {
                transform: translate(-50%, -60%);
                opacity: 0;
            }
            to {
                transform: translate(-50%, -50%);
                opacity: 1;
            }
        }

        .caja-resultado {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            width: 90%;
            max-width: 450px;
            margin: 0 auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            text-align: center;
        }

        .caja-resultado .titulo {
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .resultado-contenido .contenido {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--gray);
            line-height: 1.7;
        }

        #boton-chat {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 1.25rem;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            display: block;
            width: 100%;
            margin: 0 auto;
            font-weight: 600;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
        }

        #boton-chat::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
            z-index: -1;
            transition: all 0.3s ease;
        }

        #boton-chat:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
        }

        #boton-chat:hover::before {
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
        }

        .boton-texto {
            background: none;
            border: none;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            padding: 0;
            font-size: inherit;
            position: relative;
        }

        .boton-texto::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .boton-texto:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .copyright {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .copyright p {
            margin: 0;
        }

        .copyright address {
            margin: 0.5rem 0 0;
            font-style: normal;
        }

        .copyright a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .copyright a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .copyright a:hover::after {
            width: 100%;
        }

        .whatsapp-fijo {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25d366, #128c7e);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            animation: pulso 2s infinite;
            transition: all 0.3s ease;
        }

        .whatsapp-fijo:hover {
            transform: scale(1.1);
        }

        .whatsapp-fijo i {
            color: white;
            font-size: 28px;
        }

        @media (max-width: 768px) {
            .titulo-principal {
                font-size: 1.8rem;
            }
            
            .texto-cta, .titulo-unirse {
                font-size: 1.4rem;
            }
            
            .tarjetas-caracteristicas {
                grid-template-columns: 1fr;
            }
            
            .boton-whatsapp {
                font-size: 1.1rem;
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .titulo-principal {
                font-size: 1.6rem;
            }
            
            .rendimiento, .info-breakout {
                font-size: 1.1rem;
                padding: 1.25rem;
            }
            
            .texto-naranja {
                font-size: 1.2rem;
            }
            
            .caja-resultado {
                padding: 1.5rem;
            }
            
            .whatsapp-fijo {
                bottom: 15px;
                right: 15px;
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-fijo i {
                font-size: 24px;
            }
        }