/* Variables CSS para consistencia de colores */
:root {
    --primary-color: #007bff; 
    --secondary-color: #1a1a1a; 
    --bg-dark: #000000; /* Fondo base negro puro */
    --bg-light: #1a1a1a; 
    --text-color: #f0f0f0; 
    --highlight-color: #FFC107; /* Asegurado que la variable tiene un valor */
    --shadow-color: rgba(0, 0, 0, 0.7); 
    --font-stack: 'Inter', 'Arial', sans-serif; 
    --secondary-button-color: #4CAF50; 
}

/* Estilos Globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-stack);
    background-color: #0d1b2a;
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    
    background-image: url('fondo-p.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    text-align: center;
}

h1 {
    font-size: 3.8em;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
    color: #4169E1;
}

.btn {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    transition: transform 0.2s, background-color 0.2s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}


/* --- Header --- */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    background: var(--bg-light);
    background-color: #000;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2e2e2e;
    position: relative;
}

.logo {
    left: 5%;
    margin: 0;
    top: 0;
    z-index: 1001;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0 50px;
}

.header-logo {
    max-height: 200px; 
    height: auto;
    width: auto;
    display: block;
    transition: height 0.3s ease;
    margin: 0; 
}   
  
/* 💥 CORRECCIÓN CRÍTICA: Alineación horizontal con flex 💥 */
.navbar {
    display: flex; 
    align-items: center; 
    flex-wrap: wrap; 
    margin: 0; 
}

.navbar a {
    align-items: center;
    gap: 20px;
    margin: 0;
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    padding: 8px 10px;
    transition: color 0.3s, border-bottom 0.3s;
}

.navbar a:hover {
    color: var(--highlight-color);
    border-bottom: 2px solid var(--highlight-color);
}


/* --- Hero Section --- */
.hero {
    background: transparent; 
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
}

.hero-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.hero-center-content img {
    max-width: 300px; 
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2); 
}

.hero-subtitle {
    font-size: 1.2em;
    color: #e81919;
    margin-bottom: 60px;
}

/* Base de la oferta, las propiedades de diseño profesional están al final */
.offer {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 550px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 10px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    max-width: 100px;
    margin-bottom: 15px;
}

.offer h3 {
    color: var(--highlight-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.countdown {
    font-size: 2em;
    font-weight: bold;
    color: #f00;
}

.features-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: fit-content;
    margin: 20px auto 0;
}

.features-bar div {
    background: #252525;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-color);
}


/* --- How It Works Section --- */
.how-it-works {
    background-color: var(--bg-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.step {
    color: #000000;
    background: #fbf5f5;
    padding: 30px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border-left: 5px solid var(--primary-color);
}


/* --- Pricing Section --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.price-card {
    background: #fbf5f5;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 8px 25px var(--shadow-color);
    border: 1px solid #2e2e2e;
    transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
}

.price-card.popular {
    border: 3px solid var(--highlight-color);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.price-card.popular:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-color);
}

.price-card h3 {
    color: #060606;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.price {
    font-size: 3em;
    font-weight: 900;
    color: var(--primary-color);
    margin: 10px 0 20px;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-buy:hover {
    opacity: 0.9;
}

.btn-secondary-color {
    background-color: var(--secondary-button-color);
}

.btn-secondary-color:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}


/* --- Proof Section (Transacciones) --- */
.proof-section {
    background-color: transparent; 
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); 
    gap: 10px;
    margin-top: 30px;
    max-width: 1200px; 
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.proof-grid img {
    width: 100%; 
    max-width: 300px; 
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); 
    transition: transform 0.3s;
    margin: 0 auto; 
    display: block;
}

.proof-grid img:hover {
    transform: scale(1.05);
}

.guarantee {
    margin-top: 30px;
    font-size: 1.1em;
    color: #4169E1;
    font-weight: 500;
}


/* --- Footer --- */
.footer {
    background: #75757b;
    padding: 25px 0;
    font-size: 0.9em;
    border-top: 1px solid #2e2e2e;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-links a {
    color: #b0b0b0;
    text-decoration: none;
    margin: 0 10px;
}

.quick-links a:hover {
    color: var(--highlight-color);
}


/* Eliminamos este bloque ya que el HTML fue limpiado */
/* .telegram-info { display: inline-flex; ... } */

/* 💥 ANIMACIÓN PARA LOGO CENTRAL 💥 */
@keyframes zoom-intermitente {
    0% { 
        transform: scale(1); 
        box-shadow: 0 0 10px rgba(255, 255, 255, 0); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 20px 5px var(--highlight-color); 
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 0 10px rgba(255, 255, 255, 0); 
    }
}

.logo-animado {
    display: block; 
    animation: zoom-intermitente 1.5s ease-in-out infinite; 
}

/* Estilo para los botones de la Oferta Limitada */
.buy-buttons {
    display: flex; 
    gap: 15px; 
    margin-top: 25px; 
    justify-content: center; 
}

.offer .btn-buy {
    flex-grow: 1;
    max-width: 250px; 
    padding: 15px 20px;
}

/* --- OFERTA LIMITADA PROFESIONAL (AJUSTADA) --- */
.offer {
    padding: 30px; 
    max-width: 500px; 
    background: linear-gradient(135deg, #1a1a1a 0%, #0d1b2a 100%); 
    border-radius: 15px; 
    margin: 40px auto; 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); 
    border: 3px solid var(--highlight-color);
    position: relative;
    overflow: hidden;
}

/* Título de la oferta */
.offer h3 {
    font-size: 1.8em; 
    margin-bottom: 5px; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--highlight-color);
}

/* Descripción de la oferta */
.offer-description {
    font-size: 1.0em; 
    color: #b0b0b0;
    margin-bottom: 15px; 
}

/* Estilo para el TAG de precio */
.offer-price-tag {
    font-size: 1.4em; 
    padding: 8px 20px;
    margin-bottom: 20px; 
    font-weight: 700;
    color: var(--text-color);
    background-color: var(--primary-color);
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.offer-price-tag span {
    font-size: 1.1em; 
    font-weight: 900;
    color: var(--highlight-color);
}

/* Cuenta atrás (countdown) */
.countdown {
    font-size: 2.2em; 
    font-weight: bold;
    color: #fb0202;
    margin-top: 20px; 
    letter-spacing: 1px;
}

/* Botones de compra dentro de la oferta */
.buy-buttons {
    display: flex; 
    gap: 15px; 
    margin-top: 30px; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.offer .btn-buy {
    flex-grow: 1;
    max-width: 200px; 
    padding: 15px 20px; 
    font-size: 1.0em; 
    border-radius: 8px;
}

.price-card .package-usdt {
    color: #0d0d0d; 
    font-weight: 700; 
    font-size: 1.15em; 
    margin-bottom: 5px; 
}


/* --- Media Queries para Responsividad --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    
    h2 {
        font-size: 2em;
    }

    .header .container {
        flex-direction: column;
    }

    /* 💥 CORREGIDO: display: flex para el menú móvil 💥 */
    .navbar {
      display: flex; 
      align-items: center; 
      flex-wrap: wrap; 
      margin: 0;
      margin-top: 15px;
      justify-content: center;
    }

    .navbar a {
     color: var(--text-color);
     text-decoration: none;
     margin-left: 20px;
     padding: 8px 10px;
     transition: color 0.3s, border-bottom 0.3s;
    }

    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .features-bar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .price-card {
        width: 100%;
        max-width: 350px;
    }

    .proof-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)); 
        gap: 10px;
        margin-top: 0px; 
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-links {
        margin-top: 10px;
    }
    
    /* --- Estilos del Modal (Ventana Emergente) --- */
    .modal {
        display: none; 
        position: fixed; 
        z-index: 2000; 
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto; 
        background-color: rgba(0,0,0,0.8); 
    }

    .modal-content {
        background-color: var(--bg-dark); 
        margin: 15% auto; 
        padding: 30px;
        border: 1px solid #333;
        width: 90%; 
        max-width: 450px;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.9);
        text-align: center;
    }

    .close-btn {
        color: #aaa;
        float: right;
        font-size: 32px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-btn:hover,
    .close-btn:focus {
        color: var(--highlight-color);
        text-decoration: none;
    }

    .wallet-details {
        background-color: #222; 
        padding: 20px;
        margin: 20px 0;
        border-radius: 8px;
        text-align: left;
        word-break: break-all; 
    }

    .wallet-details p {
        margin: 10px 0;
        font-size: 1.1em;
        color: var(--text-color);
    }

    #copyWallet {
        margin-top: 15px;
        padding: 10px 20px;
        background-color: var(--primary-color);
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    #copyWallet:hover {
        background-color: #0056b3;
    }

    .warning-text {
        color: #ff4500; 
        font-weight: bold;
        margin-top: 20px;
    }
}
/* --------------------------------------------------------------------- */
/* --- 💥 ESTILOS ICONOS FLOTANTES (FUERA DEL MEDIA QUERY para que apliquen siempre) 💥 --- */

.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px; 
    z-index: 9999; 
}

.contact-icon {
    display: block;
    width: 55px; 
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    cursor: pointer;
    
    /* Configuración base para el ícono de imagen */
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #f0f0f0;
}

.contact-icon:hover {
    transform: scale(1.1) translateY(-3px);
}

/* Estilos específicos para cada plataforma usando tus nombres de archivo */

.floating-contact a.whatsapp {
    background-color: #25d366; 
    /* 🟢 RUTA CORREGIDA: WhapsApp.png */
    background-image: url('WhapsApp.png'); 
}

.floating-contact a.telegram {
    background-color: #0088cc; 
    /* 🟢 RUTA CORREGIDA: Telegram.png */
    background-image: url('Telegram.png'); 
}

/* 🟢 NUEVO: Estilo específico para el icono de Soporte 🟢 */
.floating-contact a.Support {
    background-color: var(--primary-color); /* Usamos el color principal de la marca */
    /* 🟢 RUTA SUGERIDA: support-icon.png (asumiendo que tienes una imagen) */
    background-image: url('Support.png'); 
    /* Opcional: ajustar el tamaño del ícono si es diferente */
    background-size: 55%;
}


/* FIN DE ESTILOS ICONOS FLOTANTES */
/* --------------------------------------------------------------------- */
/* --- 💥 ESTILOS PARA EL CARRUSEL DE PRUEBAS (Loop Infinito) 💥 --- */

/* Contenedor que define el ancho visible (ajustado para que las imágenes no sean enormes) */
.slider-container {
    width: 100%;
    /* Define un ancho máximo para la imagen visible, ajusta este valor si deseas imágenes más grandes */
    max-width: 450px; 
    /* Altura fija para evitar saltos si las imágenes tienen diferente altura. Ajusta si es necesario */
    height: 350px; 
    margin: 30px auto;
    overflow: hidden; /* CRÍTICO: Esconde lo que no cabe */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid
}

/* --- 💥 ESTILOS PARA EL CARRUSEL DE MARQUESINA (Loop Infinito y Lento) 💥 --- */

/* --- 💥 ESTILOS PARA EL CARRUSEL DE MARQUESINA (Loop Infinito y Lento) 💥 --- */

/* 1. Contenedor visible (Con bordes y sombras reducidas) */
.slider-container {
    width: 100%;
    /* Muestra todas las 7 imágenes en un ancho razonable */
    max-width: 1000px; 
    margin: 30px auto;
    overflow: hidden; /* Oculta el contenido fuera del área visible */
    border-radius: 10px;
    border: 1px solid var(#00008B);
    
    /* Sombra Reducida (se mantiene el marco sutil) */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3); 
    
    
    padding: 25px 0; /* Espacio para centrar y más grande */
}
/* 2. Contenedor de las imágenes que se desplaza */
.slider {
    display: flex; 
    /* El ancho es 200% para que las 14 imágenes (duplicadas) ocupen el doble del espacio,
       permitiendo que la animación se desplace del 0% al -100% */
    width: 200%; 
    height: auto;
    align-items: center; 
    
    animation: marquee 40s linear infinite;
    /* Aplica la animación: 'marquee' es el nombre, 40s la duración (lenta), 'linear' es la velocidad uniforme, 'infinite' para el bucle. */
    animation: marquee 40s linear infinite; 
}

.slider img {
    /* Cada imagen debe ocupar 1/14 del ancho total del 'slider' (que es el doble del ancho de slider-container) 
       Esto hace que 7 imágenes llenen el 100% visible (100% / 7 ≈ 14.28%) */
    width: calc(200% / 14); /* 14.28% de 200% es 28.56%. Esto es lo que queremos. */
    flex-shrink: 0; /* Evita que las imágenes se encojan si hay poco espacio */
    height: 300px; /* Tamaño más pequeño y uniforme. Ajusta esta altura si la quieres diferente. */
    object-fit: contain; /* Mantiene la proporción de la imagen dentro de la altura/ancho. */
    padding: 0 5px; /* Pequeño espacio entre imágenes */
}

/* 3. Definición de la animación de Marquesina */
@keyframes marquee {
    0% { 
        /* Comienza en la posición original (la primera imagen de la copia 1) */
        transform: translateX(0%); 
    }
    100% { 
        /* Mueve el contenedor completo al inicio de la copia 2.
           Como el contenedor es 200% de ancho, moverlo -50% mueve 100% de la primera copia. */
        transform: translateX(-50%); 
    }
}

/* Ajuste para dispositivos móviles (muestra las 7 imágenes en una fila más pequeña) */
@media (max-width: 600px) {
    .slider img {
        height: 100px; /* Reducir altura en móvil */
    }
    .slider {
        animation-duration: 30s; /* Más rápido en móvil */
    }
/* Estilos para el ícono de Soporte en la barra de navegación */
.support-icon-img {
    /* Estilos para el ícono de Soporte en la barra de navegación */
.support-icon-img {
    /* Aumentamos el tamaño de 30px a 40px (o el valor que prefieras) */
    height: 40px; 
    width: auto; /* Mantiene la proporción */
    /* OPCIONAL: Añadir un margen a la izquierda si está muy pegada */
    margin-right: 15px;
}

/* Opcional: Centrar verticalmente si es necesario */
.navbar a {
    /* Asegura que todos los elementos de la navegación se alineen */
    display: inline-flex; 
    align-items: center;
}

/* Opcional: Ajustar el espaciado si la imagen de soporte se ve muy pegada */
.navbar .support-icon-link {
    margin-left: 15px; 
    padding: 0; /* Asegúrate de que no tenga padding excesivo */
}
}