/* --- CORRECCIÓN DE RUTA --- */
@font-face {
    font-family: 'Burbank';
    /* Si el error dice que busca en /css/sources, probamos saliendo de la carpeta con ../ */
    src: url('sources/fonts/Burbank.woff') format('woff'),
         url('../sources/fonts/Burbank.woff') format('woff'); 
    font-weight: bold;
    font-display: swap;
}

:root {
    --bg-dark: #2c003f;
    --bg-purple: #520170;
    --orange: #f57c1b;
    --yellow: #ffe701;
    --green-neon: #00ff06;
}
/* --- CLASE MAESTRA CON KERNING --- */
.burbank-font {
    font-family: 'Burbank', 'Arial Black', sans-serif !important;
    letter-spacing: -1.5px; /* KERNING: Hace la fuente más compacta y pro */
    text-transform: uppercase;
}

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

body {
    background: radial-gradient(circle, var(--bg-purple), var(--bg-dark));
    color: white;
    font-family: 'Arial Black', sans-serif;
    overflow-x: hidden;
    line-height: 1.4;
}

h1, h2, h3, .subtitle, .bonus {
    font-family: 'Burbank', sans-serif !important;
    text-transform: uppercase;
    text-align: center;
}

/* LLUVIA DE MONEDAS OPTIMIZADA */
#rain-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;

}

.falling-coin {
    position: absolute;
    animation: fall linear forwards;
}

@keyframes fall {
    0% { transform: translateY(-100px) rotate(0deg); }
    100% { transform: translateY(110vh) rotate(360deg); }
}

/* HEADER Y LOGO */
header {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.logo-container { position: relative; width: 280px; }
.main-logo {
    width: 100%;
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 231, 1, 0.5));
    animation: logoBeat 3s ease-in-out infinite;
}

@keyframes logoBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); filter: brightness(1.4); }
}

.base-coins {
    position: absolute;
    width: 120%;
    bottom: -160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

/* HERO SECTION */
/* --- SECCIÓN HERO --- */
.hero-premium {
    text-align: center;
    padding: 60px 20px;
    z-index: 10;
    position: relative;
}

.hero-premium h1 {
    font-size: 5.5rem; /* TAMAÑO MÁS GRANDE */
    letter-spacing: 5px; /* KERNING AGRESIVO PARA H1 */
    color: var(--yellow);
    line-height: 0.9;
    
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1,5rem;
    letter-spacing: 5px; 
    
    color: #eee;
    margin-bottom: 50px;
}

/* CARDS */
.card h3 {
    font-size: 2.8rem; /* TAMAÑO MÁS GRANDE */
    letter-spacing: 5px;
    margin-bottom: 10px;

}
.offers {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(145deg, var(--bg-purple), var(--bg-dark));
    border: 4px solid var(--orange);
    border-radius: 25px;
    padding: 30px;
    width: 300px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px var(--orange);
    animation: fadeUp 0.8s ease-out forwards;
}

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

.card.platinium { border-color: var(--yellow); box-shadow: 0 0 25px var(--yellow); }
.card.premium { border-color: var(--green-neon); box-shadow: 0 0 25px var(--green-neon); }
.card:hover { transform: translateY(-10px) scale(1.05); }

.bonus {
    display: block;
    color: var(--green-neon);
    font-size: 1.6rem;
    letter-spacing: 5px;
    margin-top: 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 5px;
}

/* TESTIMONIOS */
.trust-section h2 { 
    color: var(--yellow); 
    font-size: 3.5rem; /* TAMAÑO MÁS GRANDE */
    letter-spacing: 5px;
    margin-bottom: 40px; 
}
.trust-section h2 { color: var(--yellow); 
                    margin-bottom: 40px; 
                    font-size: 2.2rem;
                    letter-spacing: 5px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    border-left: 5px solid var(--orange);
    transition: 0.3s;
}

.testi-card:hover { background: rgba(255,255,255,0.1); }

/* PROOF & CAROUSEL */
.proof { padding: 80px 10px; text-align: center; }
.proof h2 { color: var(--green-neon); margin-bottom: 40px; font-size: 3rem; letter-spacing: 5px; /* TAMAÑO MÁS GRANDE */ }
.carousel-container { overflow-x: auto; width: 100%; max-width: 1000px; margin: 0 auto; }
.carousel-track { display: flex; gap: 20px; width: max-content; padding: 20px; }
.carousel-track img { height: 300px; border-radius: 15px; border: 3px solid var(--yellow); cursor: zoom-in; }

/* MODAL */
.order-modal {
    display: none; position: fixed; z-index: 3000; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px); justify-content: center; align-items: center;
}

.order-content {
    background: var(--bg-dark); border: 3px solid var(--orange);
    padding: 40px; border-radius: 20px; width: 90%; max-width: 400px;
    text-align: center; position: relative;
}

.order-content input {
    width: 100%; padding: 15px; margin: 10px 0;
    background: rgba(255,255,255,0.05); border: 2px solid var(--bg-purple);
    border-radius: 10px; color: white; outline: none;
}

.btn-submit {
    width: 100%; padding: 18px; margin-top: 20px;
    background: transparent; border: 2px solid var(--green-neon);
    color: var(--green-neon); font-weight: bold; font-size: 1.2rem;
    border-radius: 50px; cursor: pointer; box-shadow: 0 0 15px var(--green-neon);
}

/* WHATSAPP FLOAT */
.btn-whatsapp {
    position: fixed; bottom: 30px; right: 30px;
    width: 65px; height: 65px; background: var(--green-neon);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 20px rgba(0, 255, 6, 0.5); z-index: 1000;
    animation: pulse 2s infinite;
}
.btn-whatsapp img { width: 60px; }

@keyframes pulse {
    0% { transform: scale(1); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.lightbox {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 4000; justify-content: center; align-items: center;
}
#lightbox-img { max-width: 90%; max-height: 80%; border: 3px solid var(--orange); }

footer { padding: 40px; text-align: center; opacity: 0.6; font-size: 0.8rem; }

@media (max-width: 768px) {
    .hero-premium h1 { font-size: 2.2rem; }
    .card { width: 100%; }
}

.trust-section {
    padding: 30px 15px;
    text-align: center;
}

.wa-carousel-container {
    position: relative;
    max-width: 450px; /* Evita que se estire en PC */
    margin: 20px auto;
    min-height: 120px; /* Espacio para que no salte el contenido */
}

.wa-bubble {
    display: none; /* Ocultamos por defecto para el carrusel */
    background: #ffffff;
    color: #333;
    padding: 15px 20px;
    border-radius: 0 18px 18px 18px;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.wa-bubble.active {
    display: block; /* Solo se ve la burbuja activa */
    animation: fadeIn 0.4s ease-in;
}

/* El rabito de WhatsApp */
.wa-bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: -12px;
    width: 20px;
    height: 20px;
    background: linear-gradient(225deg, #ffffff 50%, transparent 50%);
}

.wa-meta {
    display: flex;
    justify-content: flex-end;
    font-size: 0.7rem;
    color: #999;
    margin-top: 5px;
}

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

/* RESPONSIVE: Para que en móvil no sea gigante */
@media (max-width: 480px) {
    .wa-carousel-container {
        width: 85%; /* No ocupa todo el ancho del celu */
    }
    .wa-bubble {
        font-size: 0.85rem;
    }
}