/* ============================================
   LANDING PAGE PREMIUM - GLASSMORPHISM DESIGN
   Font: Poppins | Colors: Violeta/Índigo/Dorado
   ============================================ */

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

:root {
    /* Color Palette - Violetas/Índigos Elegantes */
    --color-primary: #6366f1;
    --color-secondary: #8b5cf6;
    --color-accent: #c084fc;
    --color-gold: #fbbf24;
    --color-gold-light: #fcd34d;
    --color-dark: #1e1b4b;
    --color-darker: #1a1640;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--color-darker);
    /* Changed from --bg-primary to match existing variable */
    color: #fff;
    /* Changed from --text-light to match existing color */
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    min-height: 100vh;
}

/* ============================================
   ABSTRACT BACKGROUND SHAPES
   ============================================ */
.background-abstract {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: 50%;
    right: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    bottom: -15%;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    top: 30%;
    left: 50%;
    animation-delay: 15s;
}

.radial-gradient-1,
.radial-gradient-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.radial-gradient-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #6366f1 0%, transparent 60%);
    top: 20%;
    right: 10%;
}

.radial-gradient-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 60%);
    bottom: 10%;
    left: 10%;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ============================================
   NAVBAR - GLASSMORPHISM
   ============================================ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: calc(100% - 40px);
    z-index: 1000;

    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    box-shadow: var(--glass-shadow);

    padding: 18px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.12);
    padding: 14px 35px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24 0%, #fff 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.brand-question {
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-weight: 900;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 30px rgba(251, 191, 36, 0.4);
    }
}

.brand-text:hover {
    transform: scale(1.05);
}

.brand-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Nav Links Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-nav {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-dark) !important;
    font-weight: 600;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    margin-left: 10px;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    background: rgba(255, 255, 255, 0.15);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.btn-comprar {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-dark) !important;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.btn-comprar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(251, 191, 36, 0.6);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    position: relative;
}

/* Decorative Brand Image */
.hero-brand-image {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.floating-brand {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--glass-border);
    box-shadow:
        0 0 40px rgba(99, 102, 241, 0.4),
        0 0 80px rgba(139, 92, 246, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float-gentle 6s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    padding: 8px;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        box-shadow:
            0 0 40px rgba(99, 102, 241, 0.4),
            0 0 80px rgba(139, 92, 246, 0.3),
            0 20px 60px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
        box-shadow:
            0 0 60px rgba(99, 102, 241, 0.6),
            0 0 100px rgba(139, 92, 246, 0.5),
            0 30px 80px rgba(0, 0, 0, 0.4);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 10px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px 48px;
    min-width: 220px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SHARE BUTTON & MODAL
   ============================================ */
.btn-share {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-share:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Share Modal */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.share-modal-content {
    background: linear-gradient(135deg, rgba(26, 22, 64, 0.95), rgba(10, 10, 15, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.share-modal-content h3 {
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: var(--text-light);
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.share-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.share-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.share-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.share-btn.copy:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
}

.close-modal {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   CTA BUTTON
   ============================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-dark);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 40px rgba(251, 191, 36, 0.6);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

.btn-cta-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.carousel-section,
.info-section,
.features-section,
.cta-section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    font-weight: 400;
}

/* ============================================
   CAROUSEL - MODERN CARD DESIGN
   ============================================ */
.carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 24px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.carousel-slide {
    min-width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Prize Card */
.prize-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 0;
    max-width: 900px;
    width: 100%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Gradient Overlay */
.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right,
            rgba(99, 102, 241, 0.1) 0%,
            rgba(139, 92, 246, 0.05) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.prize-card:hover::before {
    opacity: 1;
}

.prize-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow:
        0 30px 80px rgba(251, 191, 36, 0.3),
        0 0 0 1px var(--color-gold) inset;
}

/* Image Section */
.prize-image-section {
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 28px 0 0 28px;
}

.prize-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
}

.prize-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle,
            rgba(251, 191, 36, 0.2) 0%,
            transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.prize-card:hover .prize-image-wrapper::before {
    opacity: 1;
}

.prize-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.prize-card:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow:
        0 30px 60px rgba(251, 191, 36, 0.4),
        0 0 0 1px var(--color-gold) inset;
}

/* Content Section */
.prize-content-section {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Prize Badge */
.prize-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
    }
}

.prize-card h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prize-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Prize Features */
.prize-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.prize-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.prize-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    transform: translateX(5px);
}

.prize-feature-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.prize-feature-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: -30px;
}

.carousel-btn.next {
    right: -30px;
}

.carousel-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

/* Dots Navigation */
.carousel-dots {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel {
        padding: 0 10px;
    }

    .prize-card {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .prize-image-section {
        border-radius: 28px 28px 0 0;
        padding: 30px 20px;
    }

    .prize-image-wrapper {
        max-width: 280px;
    }

    .prize-content-section {
        padding: 30px 24px;
    }

    .prize-card h3 {
        font-size: 1.6rem;
    }

    .prize-card p {
        font-size: 0.95rem;
    }

    .prize-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .prize-features {
        gap: 8px;
    }

    .prize-feature {
        padding: 10px 12px;
    }

    .prize-feature-text {
        font-size: 0.85rem;
    }

    .carousel-btn {
        width: 48px;
        height: 48px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-btn svg {
        width: 22px;
        height: 22px;
    }

    .carousel-dots {
        margin-top: 30px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .prize-image-wrapper {
        max-width: 220px;
    }

    .prize-content-section {
        padding: 24px 20px;
    }

    .prize-card h3 {
        font-size: 1.4rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   INFO GRID - GLASSMORPHISM CARDS
   ============================================ */
.info-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card,
.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover::before,
.feature-card:hover::before {
    opacity: 1;
}

.info-card:hover,
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3,
.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.info-card p,
.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ============================================
   CSS VARIABLES - DARK THEME (Default)
   ============================================ */
:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #13131a;
    --text-light: #ffffff;
    --text-muted: #a0a0b0;
    --color-primary: #6366f1;
    --color-secondary: #8b5cf6;
    --color-gold: #fbbf24;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.5);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --text-light: #1a1a1a;
    --text-muted: #6c757d;
    --color-primary: #4f46e5;
    --color-secondary: #7c3aed;
    --color-gold: #f59e0b;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1a1640, #0a0a0f);
    padding: 60px 20px 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 8px 0;
}

.footer-bottom strong {
    color: var(--color-gold);
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   LEGAL MODALS
   ============================================ */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.legal-modal-content {
    background: linear-gradient(135deg, rgba(26, 22, 64, 0.95), rgba(10, 10, 15, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.legal-modal-content h2 {
    color: var(--color-gold);
    margin-bottom: 24px;
    font-size: 2rem;
    text-align: center;
}

.legal-text {
    color: var(--text-light);
    line-height: 1.8;
}

.legal-text h3 {
    color: var(--text-light);
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.2rem;
    border-left: 4px solid var(--color-gold);
    padding-left: 12px;
}

.legal-text p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.close-legal-btn {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.close-legal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.4);
}

/* Scrollbar styling for modals */
.legal-modal-content::-webkit-scrollbar {
    width: 8px;
}

.legal-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.legal-modal-content::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 10px;
}

.legal-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

.admin-link {
    opacity: 0.5;
    font-size: 0.8rem;
}

/* ============================================
   HAMBURGER MENU (Mobile)
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.stat-number.updating {
    animation: pulse 0.3s ease;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        filter: invert(1);
    }
}

/* ============================================
   PUBLIC STATISTICS
   ============================================ */
.public-stats {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.stat-item.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: var(--color-gold);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 4px;
    color: var(--text-light);
}

.stat-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-content small {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: block;
    margin-top: 4px;
}

.progress-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.progress-header h3 {
    font-size: 1.2rem;
    color: var(--text-light);
}

.progress-header span {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-gold);
}

.progress-bar {
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    border-radius: 12px;
    transition: width 1s ease;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.progress-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   WINNERS GALLERY
   ============================================ */
.winners-gallery {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.winners-carousel {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 20px;
}

.winners-track {
    display: flex;
    transition: transform 0.5s ease;
}

.winner-slide {
    min-width: 100%;
    padding: 20px;
}

.winner-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.winner-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.winner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.winner-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.winner-prize {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.winner-raffle {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.winner-testimonial {
    font-style: italic;
    color: var(--text-light);
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
    text-align: left;
}

.winner-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {

    /* Navbar móvil más compacto */
    .navbar {
        padding: 10px 20px;
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 50px;
    }

    .nav-brand h2 {
        font-size: 1rem;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .brand-logo {
        height: 35px;
    }

    /* Mostrar hamburguesa, ocultar menú */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(30, 27, 75, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }

    /* Hero section móvil */
    .hero {
        padding: 100px 15px 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .floating-brand {
        width: 120px;
        height: 120px;
    }

    /* Stats cards en columna */
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        margin: 40px 0;
    }

    .stat-card {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 24px 32px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* CTA Button móvil */
    .btn-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }

    /* Sections padding */
    .carousel-section,
    .info-section,
    .features-section,
    .cta-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    /* Carousel móvil */
    .carousel-slide {
        padding: 40px 20px;
    }

    .carousel-slide img {
        max-width: 100%;
        height: 250px;
    }

    .carousel-slide h3 {
        font-size: 1.5rem;
    }

    .carousel-slide p {
        font-size: 0.95rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    /* Public Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 16px;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }

    .progress-section {
        padding: 20px;
    }

    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    /* Grids en 1 columna */
    .info-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-card,
    .feature-card {
        padding: 30px 20px;
    }

    .step-number {
        font-size: 2rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    /* CTA Card móvil */
    .cta-card {
        padding: 40px 20px;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .cta-card p {
        font-size: 1rem;
    }

    .btn-cta-large {
        padding: 16px 36px;
        font-size: 1.05rem;
    }

    /* Footer móvil */
    .footer {
        padding: 30px 15px;
    }

    .footer p {
        font-size: 0.85rem;
    }
}

/* Tablets y pantallas medianas */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 16px 32px;
    }

    .nav-brand h2 {
        font-size: 1.2rem;
    }

    .nav-menu a {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .stat-card {
        min-width: 200px;
    }

    .info-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pantallas muy pequeñas */
@media (max-width: 480px) {
    .navbar {
        padding: 8px 15px;
    }

    .nav-brand h2 {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-card {
        padding: 20px 24px;
        max-width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .carousel-slide img {
        height: 200px;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}