:root {
    --bg-dark: #0a0a0a;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --gold: #fdd307;
    --gold-glow: rgba(253, 211, 7, 0.4);
    --red-accent: #e60000;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at -10% -10%, var(--gold-glow) 0%, transparent 40%),
        radial-gradient(circle at 110% 110%, var(--gold-glow) 0%, transparent 40%),
        radial-gradient(circle at 110% 40%, rgba(230,0,0,0.2) 0%, transparent 40%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    position: relative;
    padding-top: 80px; /* Space for the navbar so content isn't hidden */
}

/* Typography */
h1, h2, h3, h4, .badge {
    font-family: 'Montserrat', sans-serif;
}

.highlight {
    color: var(--gold);
}

/* Glow classes removed to prevent overflow */

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 60px;
}
.glow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 211, 7, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 0 15px var(--gold-glow);
    animation: pulseBadge 2s infinite alternate;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 15px var(--gold-glow); background: rgba(253, 211, 7, 0.1); }
    100% { box-shadow: 0 0 35px var(--gold), 0 0 10px var(--gold) inset; background: rgba(253, 211, 7, 0.2); }
}

.star-icon {
    display: inline-block;
    animation: spinStar 3s linear infinite;
    font-size: 1.2rem;
}

@keyframes spinStar {
    0% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 2px #fff); }
    50% { transform: rotate(180deg) scale(1.3); filter: drop-shadow(0 0 8px #fff); }
    100% { transform: rotate(360deg) scale(1); filter: drop-shadow(0 0 2px #fff); }
}
.main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}
.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.cta-container {
    margin-top: 20px;
}
.urgency-text {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-style: italic;
}

/* Buttons */
.btn-premium {
    display: inline-block;
    background: linear-gradient(90deg, #ff0000 0%, #cc0000 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    padding: 18px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}
.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255,0,0,0.5);
}
.sub-cta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Animations */
.pulse {
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}
.pulse-wa {
    animation: pulseGlowWa 2s infinite;
}
@keyframes pulseGlowWa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.support-section {
    padding: 60px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Description Section */
.description {
    padding: 60px 0;
}
.separator {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 30px 0;
}

/* Section Shared */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Professors */
.professors {
    padding: 60px 0;
}
.carousel {
    padding: 20px;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}
.carousel-track::-webkit-scrollbar {
    height: 8px;
}
.carousel-track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
.carousel-track img {
    height: 300px;
    border-radius: 10px;
    scroll-snap-align: center;
}

/* Pricing */
.pricing {
    padding: 60px 0;
    text-align: center;
}
.pricing-card {
    border: 1px solid var(--gold);
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.8));
}
.old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 20px 0 10px;
}
.new-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
}
.glow-text {
    text-shadow: 0 0 20px var(--gold-glow);
}

/* Timer */
.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}
.time-box {
    background: rgba(0,0,0,0.5);
    border: 1px solid #0396FF;
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
}
.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}
.time-box span#milliseconds {
    color: var(--red-accent);
}
.time-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Theater Scarcity */
.theater-scarcity {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
}
.theater-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main);
}
.theater-text .highlight {
    color: var(--gold);
    font-weight: 800;
    font-size: 1.3rem;
}
.seat-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}
.seat-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px 6px 2px 2px; /* Forma de butaca simple */
    margin: 0 auto;
    transition: background-color 0.3s, transform 0.3s;
}
.seat-icon.available {
    background-color: #25D366; /* Verde disponible */
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.5);
}
.seat-icon.occupied {
    background-color: #222; /* Gris apagado/negro */
    opacity: 0.8;
    border: 1px solid #444;
}
.seat-icon.just-taken {
    animation: flashRed 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes flashRed {
    0% { background-color: #fff; transform: scale(1.5); box-shadow: 0 0 20px #fff; }
    50% { background-color: #ff0000; transform: scale(1.2); box-shadow: 0 0 15px #ff0000; }
    100% { background-color: #222; transform: scale(1); box-shadow: none; }
}
.seat-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bonuses */
.bonuses {
    padding: 60px 0;
}
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.bonus-card {
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
}
.bonus-card h3 {
    margin: 20px 0 15px;
    font-size: 1.2rem;
}
.bonus-card .value {
    margin-top: 20px;
    font-size: 0.9rem;
}
.bonus-card strong {
    color: #26ff00;
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
    text-align: center;
}
.border-gold {
    border: 2px solid var(--gold);
}
.mt-20 {
    margin-top: 20px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.testimonial-grid img {
    width: 100%;
    border-radius: 10px;
}

/* FAQ */
.faq {
    padding: 60px 0;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.faq-question h4 {
    font-size: 1.1rem;
}
.faq-answer {
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
    opacity: 1;
}
.faq-item.active .icon {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: 40px;
}
.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 15px auto;
}
.privacy-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}
.privacy-link:hover {
    color: var(--gold);
}

/* Media Queries */
@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
    .new-price { font-size: 3.5rem; }
    .btn-premium { font-size: 1.1rem; padding: 15px 20px; width: 100%; }
    .timer { gap: 3px; flex-wrap: nowrap; justify-content: center; width: 100%; }
    .time-box { flex: 1; min-width: 0; padding: 8px 2px; }
    .time-box span { font-size: 1.1rem; }
    .time-box p { font-size: 0.6rem; }
    
    .seat-grid { gap: 8px; }
    .seat-icon { width: 10px; height: 10px; border-radius: 3px 3px 1px 1px; }
}

.currency-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px 0;
    width: 100%;
}
.marquee-content {
    display: flex;
    animation: scrollMarquee 30s linear infinite;
}
.marquee-content span {
    padding: 0 25px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
    opacity: 0;
}

.social-proof-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.sp-icon {
    font-size: 2rem;
    background: rgba(253, 211, 7, 0.2);
    padding: 10px;
    border-radius: 50%;
}

.sp-content p {
    margin: 0;
    line-height: 1.3;
}

.sp-name {
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
}

.sp-action {
    font-size: 0.85rem;
    color: var(--text-main);
}

.sp-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px !important;
}

/* Navigation Bar */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed navbar */
}

body {
    padding-top: 80px; /* Space for the navbar so content isn't hidden */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--gold);
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-small {
    padding: 10px 20px;
    font-size: 1rem;
}

@media (max-width: 900px) {
    body {
        background-image: none; /* Eliminar gradientes amarillos en móvil */
    }
    .nav-links {
        display: none; /* Hide links on mobile for simplicity, keep logo and CTA */
    }
    .navbar {
        padding: 15px 20px;
    }
    .nav-logo {
        font-size: 1.2rem;
    }
    .btn-small {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}
