/* ==========================================================================
   ESTILOS DE MARCA - ENCUENTRA EL DORADO (EED)
   Aventura Urbana Competitiva y Waitlist Cinematográfica (Barranquilla CO)
   ========================================================================== */

:root {
    /* Paleta Oficial de Colores EED */
    --eed-red: #c20c09;
    --eed-red-glow: rgba(194, 12, 9, 0.25);
    --eed-gold: #d4a437;
    --eed-gold-glow: rgba(212, 164, 55, 0.25);
    --eed-black: #050507;
    --eed-dark-card: #0d0e12;
    --eed-dark-input: #08080a;
    --eed-white: #ffffff;
    --eed-gray: #8892b0;
    --eed-gray-dark: #4b5563;
    
    /* Fuentes */
    --font-brand: 'Bungee Shade', cursive;
    --font-ui: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, monospace;

    /* Efectos */
    --glass-backdrop: blur(20px);
    --glass-border: rgba(212, 164, 55, 0.1);
    --glass-border-active: rgba(212, 164, 55, 0.3);
    --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(194, 12, 9, 0.05);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   1. Reset y Estilos Globales
   ========================================================================== */
body {
    background-color: var(--eed-black);
    color: var(--eed-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    letter-spacing: -0.1px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ui);
    font-weight: 700;
}

p {
    color: var(--eed-gray);
    line-height: 1.7;
}

a {
    color: var(--eed-gold);
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--eed-white);
}

/* ==========================================================================
   2. Fondo Cinematográfico y Radar
   ========================================================================== */
.bg-radar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1200px;
    background-image: 
        radial-gradient(rgba(212, 164, 55, 0.03) 1px, transparent 1px),
        radial-gradient(rgba(194, 12, 9, 0.02) 2px, transparent 2px);
    background-size: 40px 40px, 80px 80px;
    pointer-events: none;
    z-index: 1;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.bg-scanner-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.bg-glow-red {
    top: -100px;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--eed-red) 0%, transparent 80%);
}

.bg-glow-gold {
    top: 300px;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--eed-gold) 0%, transparent 80%);
}

/* ==========================================================================
   3. Navbar & Header
   ========================================================================== */
.main-header {
    background-color: rgba(5, 5, 7, 0.85);
    backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 90px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.brand-eed-logo {
    font-family: var(--font-brand);
    font-size: 2.25rem;
    color: var(--eed-red);
    text-shadow: 0 0 15px var(--eed-red-glow);
    letter-spacing: 2px;
}

.brand-eed-subtext {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--eed-gold);
    letter-spacing: 2.5px;
    margin-top: 0.15rem;
}

.pilot-city-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(194, 12, 9, 0.08);
    border: 1px solid rgba(194, 12, 9, 0.2);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--eed-white);
    letter-spacing: 0.2px;
    animation: gps-flicker 3s infinite;
}

.pilot-city-badge i {
    color: var(--eed-red);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px var(--eed-red));
}

@keyframes gps-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; border-color: rgba(194, 12, 9, 0.4); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    color: var(--eed-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--eed-white);
}

.nav-btn-primary {
    background: linear-gradient(135deg, var(--eed-red) 0%, #800000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--eed-white) !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.65rem 1.35rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--eed-red-glow);
    transition: var(--transition-smooth);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 12, 9, 0.5);
    background: linear-gradient(135deg, #e60e0a 0%, var(--eed-red) 100%);
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.hero-content-col {
    position: relative;
    z-index: 10;
}

.adventure-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 164, 55, 0.08);
    border: 1px solid rgba(212, 164, 55, 0.2);
    color: #ffd666;
    padding: 0.45rem 1.15rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 850;
    line-height: 1.1;
    margin: 1.5rem 0;
    letter-spacing: -1.5px;
}

.red-gold-glow-text {
    background: linear-gradient(90deg, var(--eed-red) 0%, var(--eed-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    filter: drop-shadow(0 0 10px rgba(212, 164, 55, 0.2));
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--eed-gray);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

/* Botones Generales */
.btn {
    font-family: var(--font-ui);
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-transform: uppercase;
}

.btn-lg {
    padding: 1.05rem 2.25rem;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.8rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--eed-red) 0%, #850000 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--eed-white);
    box-shadow: 0 8px 24px var(--eed-red-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(194, 12, 9, 0.5);
    background: linear-gradient(135deg, #e60e0a 0%, var(--eed-red) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--eed-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--eed-gray);
    font-weight: 600;
}

.feat-item i {
    font-size: 1.25rem;
    color: var(--eed-gold);
}

/* Visual de Hero: Radar de Barranquilla */
.hero-visual-col {
    display: flex;
    justify-content: center;
    position: relative;
}

.map-coordinates-radar {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(212, 164, 55, 0.1);
    position: relative;
    background: radial-gradient(circle, rgba(13, 14, 18, 0.6) 0%, rgba(5, 5, 7, 0.8) 100%);
    box-shadow: 0 0 50px rgba(0,0,0,0.6);
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed rgba(212, 164, 55, 0.15);
}

.circle-1 { width: 240px; height: 240px; }
.circle-2 { width: 140px; height: 140px; }
.circle-3 { 
    width: 50px; 
    height: 50px; 
    border: 2px solid var(--eed-red); 
    background-color: var(--eed-red-glow);
    animation: radar-pulse 2s infinite; 
}

@keyframes radar-pulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

.coordinates-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 14, 18, 0.85);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    width: 220px;
    box-shadow: var(--shadow-premium);
    z-index: 20;
}

.c-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--eed-gray);
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.gps-blink {
    width: 6px;
    height: 6px;
    background-color: var(--eed-red);
    border-radius: 50%;
    animation: beacon 1.5s infinite;
}

@keyframes beacon {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.c-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.coord-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
}

.coord-lbl {
    color: var(--eed-gray-dark);
}

.coord-val {
    font-family: var(--font-mono);
}

.text-gold { color: var(--eed-gold); }
.text-red { color: var(--eed-red); text-shadow: 0 0 5px var(--eed-red); }

.border-top-glow {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.4rem;
}

/* Markers Flotantes en el Radar */
.map-marker-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--eed-gold);
    animation: float-slow 4s ease-in-out infinite;
}

.pin-malecon {
    top: 50px;
    right: 40px;
}

.pin-prado {
    bottom: 80px;
    left: 20px;
    animation-delay: 2s;
}

.map-marker-pin i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px var(--eed-gold-glow));
}

.pin-txt {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--eed-white);
    background-color: var(--eed-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-top: 0.15rem;
    white-space: nowrap;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ==========================================================================
   5. Sección Qué es EED
   ========================================================================== */
.what-is-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 10;
}

.section-tag-red {
    display: inline-block;
    color: var(--eed-red);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-tag-gold {
    display: inline-block;
    color: var(--eed-gold);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title-premium {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.section-paragraph {
    font-size: 1.05rem;
    color: var(--eed-gray);
    margin-bottom: 2rem;
}

.concept-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.pillar-icon {
    background-color: rgba(194, 12, 9, 0.06);
    border: 1px solid rgba(194, 12, 9, 0.15);
    color: var(--eed-red);
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 1.35rem;
    display: flex;
}

.pillar-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--eed-white);
    margin-bottom: 0.15rem;
}

.pillar-info p {
    font-size: 0.85rem;
    color: var(--eed-gray);
    margin-bottom: 0;
}

/* Tarjeta del Cofre Visual */
.visual-chest-card {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 12, 0.9) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.gold-chest-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 164, 55, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.chest-box {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chest-icon {
    font-size: 5rem;
    color: var(--eed-gold);
    filter: drop-shadow(0 0 15px rgba(212, 164, 55, 0.4));
    animation: chest-pulse 3s ease-in-out infinite;
}

@keyframes chest-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(212, 164, 55, 0.3)); }
    50% { transform: scale(1.06); filter: drop-shadow(0 0 25px rgba(212, 164, 55, 0.6)); }
}

.chest-title {
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    margin: 1.5rem 0 0.5rem 0;
    color: var(--eed-white);
}

.chest-desc {
    font-size: 0.85rem;
    color: var(--eed-gray);
    max-width: 260px;
    line-height: 1.6;
}

/* ==========================================================================
   6. Cómo funciona Section
   ========================================================================== */
.how-it-works-section {
    padding: 6rem 0;
    background-color: rgba(13, 14, 18, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 10;
}

.section-desc {
    color: var(--eed-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background-color: rgba(5, 5, 7, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    height: 100%;
}

.step-card:hover {
    border-color: var(--glass-border-active);
    transform: translateY(-5px);
    background-color: rgba(13, 14, 18, 0.7);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.step-badge-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--eed-gold);
    color: var(--eed-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 0 10px rgba(212, 164, 55, 0.5);
}

.step-icon-wrapper {
    font-size: 2.25rem;
    color: var(--eed-gold);
    margin-bottom: 1.25rem;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--eed-white);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--eed-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   7. Diferenciadores Section
   ========================================================================== */
.diferenciadores-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.diff-card {
    background-color: rgba(13, 14, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    height: 100%;
    transition: var(--transition-smooth);
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: rgba(194, 12, 9, 0.2);
    background-color: rgba(13, 14, 18, 0.7);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.diff-icon {
    font-size: 1.75rem;
    padding: 0.65rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.diff-icon.d-blue { background-color: rgba(66, 133, 244, 0.08); color: #4285f4; }
.diff-icon.d-gold { background-color: rgba(212, 164, 55, 0.08); color: var(--eed-gold); }
.diff-icon.d-red { background-color: rgba(194, 12, 9, 0.08); color: var(--eed-red); }
.diff-icon.d-emerald { background-color: rgba(16, 185, 129, 0.08); color: #10b981; }

.diff-card h3 {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--eed-white);
    margin-bottom: 0.75rem;
}

.diff-card p {
    font-size: 0.85rem;
    color: var(--eed-gray);
    margin-bottom: 0;
}

/* ==========================================================================
   8. Formulario Waitlist Glassmorphic y Boleto Dorado
   ========================================================================== */
.waitlist-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.waitlist-card-glass {
    background: rgba(13, 14, 18, 0.65);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.card-glow-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--eed-red) 0%, var(--eed-gold) 100%);
}

.ticket-icon-glow {
    font-size: 3rem;
    color: var(--eed-gold);
    filter: drop-shadow(0 0 10px rgba(212, 164, 55, 0.3));
    margin-bottom: 1rem;
}

.waitlist-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--eed-white);
    margin-bottom: 0.5rem;
}

.waitlist-header p {
    font-size: 0.9rem;
    color: var(--eed-gray);
    margin-bottom: 2.25rem;
}

/* Custom inputs */
.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-custom label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--eed-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1rem;
    font-size: 1.25rem;
    color: var(--eed-gray-dark);
}

.input-icon-wrapper input,
.input-icon-wrapper select {
    width: 100%;
    background-color: var(--eed-dark-input);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--eed-white);
    padding: 0.95rem 1rem 0.95rem 2.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.input-icon-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-icon-wrapper input:focus,
.input-icon-wrapper select:focus {
    outline: none;
    border-color: var(--eed-gold);
    box-shadow: 0 0 0 4px rgba(212, 164, 55, 0.15);
}

/* Custom checkbox terms */
.check-label-custom {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--eed-gray);
    user-select: none;
}

.check-label-custom input {
    display: none;
}

.custom-chk {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.check-label-custom input:checked + .custom-chk {
    background-color: var(--eed-gold);
    border-color: var(--eed-gold);
}

.custom-chk:after {
    content: "✓";
    font-size: 0.65rem;
    color: var(--eed-black);
    display: none;
    font-weight: 900;
}

.check-label-custom input:checked + .custom-chk:after {
    display: block;
}

.gold-link {
    color: var(--eed-gold);
    text-decoration: none;
}

.gold-link:hover {
    text-decoration: underline;
}

/* Database Logger Animation */
.database-console-log {
    background-color: rgba(5, 5, 7, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.db-dot-spinners {
    display: flex;
    gap: 0.3rem;
}

.db-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #555;
    animation: db-pulse 1.2s infinite;
}

.db-dot.red { animation-delay: 0s; }
.db-dot.yellow { animation-delay: 0.2s; }
.db-dot.green { animation-delay: 0.4s; }

@keyframes db-pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.4; background-color: #555; }
    50% { transform: scale(1.2); opacity: 1; background-color: var(--eed-gold); }
}

/* ==========================================================================
   EL BOLETO DORADO VIP (Visual Golden Ticket)
   ========================================================================== */
.success-header h4 {
    color: var(--eed-gold);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.success-check-circle {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.golden-ticket-card-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.golden-ticket-card {
    background: linear-gradient(135deg, #1b160a 0%, #3a2f10 50%, #151105 100%);
    border: 2px solid var(--eed-gold);
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    height: 200px;
    display: flex;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 164, 55, 0.25);
    overflow: hidden;
    animation: ticket-float 4s ease-in-out infinite;
}

@keyframes ticket-float {
    0%, 100% { transform: rotateX(5deg) translateY(0px) rotateY(-2deg); }
    50% { transform: rotateX(2deg) translateY(-8px) rotateY(2deg); }
}

/* Tira de Entrada (Tear-off notch) */
.ticket-side-strip {
    width: 60px;
    background-color: var(--eed-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 1.5px dashed rgba(0, 0, 0, 0.4);
}

.strip-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--eed-black);
    font-family: var(--font-ui);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 3px;
    white-space: nowrap;
}

.strip-notch {
    width: 16px;
    height: 16px;
    background-color: rgba(13, 14, 18, 1);
    border-radius: 50%;
    position: absolute;
    right: -8px;
    border: 1px solid var(--eed-gold);
    z-index: 10;
}

.strip-notch.top { top: -8px; }
.strip-notch.bottom { bottom: -8px; }

/* Cuerpo Principal del Ticket */
.ticket-main-body {
    flex: 1;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.ticket-brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid rgba(212, 164, 55, 0.2);
    padding-bottom: 0.4rem;
}

.t-eed-logo {
    font-family: var(--font-brand);
    font-size: 1.25rem;
    color: var(--eed-red);
}

.t-badge {
    background-color: var(--eed-red);
    color: var(--eed-white);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.t-info-row {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.t-lbl {
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.t-val {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--eed-white);
}

.ticket-qr-code {
    width: 60px;
    height: 60px;
    background-color: var(--eed-white);
    border-radius: 6px;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.qr-svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   9. Preguntas Frecuentes (FAQ Accordion)
   ========================================================================== */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: rgba(13, 14, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--eed-white);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question-btn:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.caret-icon {
    font-size: 1.25rem;
    color: var(--eed-gray-dark);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s;
    padding: 0 1.75rem;
}

.faq-answer-content p {
    color: var(--eed-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-bottom: 1.25rem;
}

/* FAQ State Open */
.faq-item.open {
    border-color: rgba(212, 164, 55, 0.2);
    background-color: rgba(13, 14, 18, 0.85);
}

.faq-item.open .caret-icon {
    transform: rotate(180deg);
    color: var(--eed-gold);
}

.faq-item.open .faq-answer-content {
    max-height: 200px;
    padding: 0 1.75rem;
}

/* ==========================================================================
   10. Footer
   ========================================================================== */
.main-footer {
    background-color: #030304;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-description-footer {
    color: var(--eed-gray-dark);
    font-size: 0.85rem;
    max-width: 380px;
}

.social-networks-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eed-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--eed-red-glow);
    border-color: var(--eed-red);
    color: var(--eed-white);
    transform: scale(1.08);
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h6 {
    color: var(--eed-white);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--eed-gray-dark);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--eed-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--eed-gray-dark);
}

.status-indicator-footer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-indicator-footer .status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
}

/* ==========================================================================
   11. Media Queries (Responsividad)
   ========================================================================== */
@media (max-width: 992px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-content-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual-col {
        order: -1;
    }
    
    .visual-concept-col {
        margin-top: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .step-card-col {
        margin-bottom: 2rem;
    }
    
    .step-card {
        padding: 2.25rem 2rem;
    }
    
    .waitlist-card-glass {
        padding: 2rem 1.5rem;
    }
    
    .golden-ticket-card {
        height: auto;
        flex-direction: column;
    }
    
    .ticket-side-strip {
        width: 100%;
        height: 38px;
        border-right: none;
        border-bottom: 1.5px dashed rgba(0, 0, 0, 0.4);
    }
    
    .strip-text {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        letter-spacing: 4px;
    }
    
    .strip-notch.top {
        top: auto;
        bottom: -8px;
        left: -8px;
        right: auto;
    }
    
    .strip-notch.bottom {
        bottom: -8px;
        right: -8px;
    }
    
    .ticket-main-body {
        padding: 1.25rem;
    }
}
