/* ═══════════════════════════════════════════════════
   GemaGo Landing — Premium Dark Theme (Uber-inspired)
   ═══════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
    --pink: #E8286A;
    --magenta: #D946EF;
    --violet: #8B5CF6;
    --deep: #0a0a0f;
    --surface: #111118;
    --surface2: #18181f;
    --surface3: #1f1f2a;
    --border: rgba(255,255,255,0.07);
    --text: #F8F8FF;
    --text-muted: rgba(248,248,255,0.55);
    --green: #10B981;
    --amber: #F59E0B;
    --gradient: linear-gradient(135deg, var(--pink), var(--violet));
    --gradient-text: linear-gradient(90deg, var(--pink), var(--magenta), var(--violet));
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-glow: 0 0 40px rgba(232,40,106,0.15);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--deep); color: var(--text); overflow-x: hidden; cursor: none; }
@media (hover: none) { body { cursor: auto; } }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
input, select, button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Gradient Text ─── */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Section Labels ─── */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 16px;
    padding: 6px 12px;
    border: 1px solid rgba(232,40,106,0.3);
    border-radius: var(--radius-pill);
    background: rgba(232,40,106,0.06);
}

/* ─── Section Header Centered ─── */
.section-header.centered { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-header.centered h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.section-header.centered p { color: var(--text-muted); font-size: 18px; line-height: 1.7; }

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 12px 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.nav-logo-img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(232,40,106,0.4));
    animation: logoGlow 4s ease-in-out infinite;
}

.footer-logo-img {
    height: 64px;
    width: auto;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(232,40,106,0.3)); }
    50% { filter: drop-shadow(0 0 16px rgba(232,40,106,0.7)) brightness(1.15); }
}

.nav-links {
    display: flex;
    gap: 36px;
}
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-link-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-link-text:hover { color: var(--text); }

.nav-cta {
    background: var(--text);
    color: #000;
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(255,255,255,0.1);
}
.nav-cta:hover {
    background: var(--gradient);
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(232, 40, 106, 0.4);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--deep);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-size: 28px; font-weight: 700; color: var(--text-muted); }
.mobile-menu a:hover { color: var(--text); }
.mobile-cta {
    background: var(--gradient) !important;
    color: #fff !important;
    border-radius: var(--radius-pill);
    padding: 14px 36px !important;
    font-size: 18px !important;
}

/* ═══════════════ HERO ═══════════════ */
.hero-uber {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    position: relative;
}

.hero-uber-content {
    padding: 80px 48px 80px calc((100vw - 1200px)/2 + 24px);
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    /* opacity controlado por GSAP */
}

.hero-uber-content h1 {
    font-size: clamp(48px, 8vw, 84px);
    margin-bottom: 32px;
    /* opacity controlado por GSAP */
}

.hero-sub {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 40px;
    color: var(--text-muted);
    line-height: 1.7;
    /* opacity controlado por GSAP */
}

/* Tabs */
.hero-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    /* opacity controlado por GSAP */
}
.hero-tab {
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-tab:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.hero-tab.active {
    background: var(--text);
    color: #000;
    border-color: var(--text);
}

/* Tab content */
.hero-tab-content {
    /* opacity controlado por GSAP */
}
.hero-tab-content.hidden { display: none; }

.tab-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.hero-input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 14px 20px;
    color: var(--text);
    font-size: 15px;
    transition: border-color 0.2s;
    outline: none;
}
.hero-input::placeholder { color: var(--text-muted); }
.hero-input:focus { border-color: var(--pink); }

.hero-submit-btn {
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,40,106,0.4); }

/* Trust line */
.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* opacity controlado por GSAP */
}
.trust-item {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-item i { color: var(--green); }

/* Hero Visual */
.hero-uber-visual {
    position: relative;
    height: 100vh;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    min-height: 0;
}

/* Gradient overlay on the visual side */
.hero-uber-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(232,40,106,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 70%, rgba(139,92,246,0.1) 0%, transparent 60%);
    z-index: 0;
}

/* Phone scene */
.hero-phone-scene {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup-main {
    width: 270px;
    height: 560px;
    background: #0d0d15;
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 40px rgba(232,40,106,0.1);
}

.phone-screen { width: 100%; height: 100%; position: relative; }
.phone-screen-img { width: 100%; height: 100%; object-fit: cover; }

.phone-screen-fallback {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #0d0d15;
}

.map-sim {
    flex: 1;
    background: linear-gradient(135deg, #0f1a25 0%, #0d1520 100%);
    position: relative;
    overflow: hidden;
}

/* Simulated map grid lines */
.map-sim::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139,92,246,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-route {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 120px;
    background: linear-gradient(var(--pink), var(--violet));
    border-radius: 2px;
}

.map-pin {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
}
.map-pin.pickup { top: calc(40% - 16px); color: var(--green); }
.map-pin.dropoff { bottom: calc(40% - 16px); color: var(--pink); }

.car-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--amber);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(245,158,11,0.6);
    animation: carMove 4s ease-in-out infinite;
}
@keyframes carMove {
    0%, 100% { top: 45%; }
    50% { top: 55%; }
}

.app-bottom-card {
    background: var(--surface2);
    padding: 16px;
    border-top: 1px solid var(--border);
}

.driver-info-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}
.driver-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.mini-stars { color: var(--amber); font-size: 10px; }
.eta-badge {
    margin-left: auto;
    background: var(--green);
    color: #000;
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

/* Float pills on hero */
.float-pill {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.float-pill-1 { top: 28%; left: -60px; }
.float-pill-2 { top: 50%; right: -50px; }
.float-pill-3 { bottom: 28%; left: -50px; }
/* float animations controladas por GSAP */

.hero-fake-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 6px 6px 6px 20px;
    margin-bottom: 24px;
}
.hero-fake-input .placeholder {
    flex: 1;
    color: var(--text-muted);
    font-size: 15px;
}
.fake-btn {
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
}
/* Profile Action Pill */
.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius-pill);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 48px;
}
.hero-status-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,40,106,0.4);
}

.hero-trust {
    display: flex;
    gap: 32px;
    margin-top: 12px;
}.postulacion-section {
    padding: 120px 0;
    background: var(--surface);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}
.step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s;
}
.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.step-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: block;
}
.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
    .step-card { padding: 28px 20px; }
    .step-number { font-size: 36px; margin-bottom: 16px; }
}

/* ═══════════════ STATS STRIP ═══════════════ */
.stats-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.stats-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 32px;
}
.stat-item strong {
    display: block;
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item span {
    font-size: 14px;
    color: var(--text-muted);
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* ═══════════════ SPLIT SECTIONS ═══════════════ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    overflow: hidden;
}
.split-section.visible { opacity: 1; transform: translateY(0); }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.dark-section { background: var(--surface); }

.split-text {
    padding: 96px 64px 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-section.reverse .split-text { padding: 96px 48px 96px 64px; }

.split-text h2 {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.split-text > p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 460px;
}

/* Feature List */
.feature-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.feature-icon-box.pink { background: rgba(232,40,106,0.15); color: var(--pink); }
.feature-icon-box.violet { background: rgba(139,92,246,0.15); color: var(--violet); }
.feature-icon-box.amber { background: rgba(245,158,11,0.15); color: var(--amber); }
.feature-icon-box.green { background: rgba(16,185,129,0.15); color: var(--green); }
.feature-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.split-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    border-bottom: 2px solid var(--pink);
    padding-bottom: 2px;
    width: fit-content;
    transition: gap 0.2s, color 0.2s;
}
.split-cta:hover { gap: 14px; color: var(--pink); }

/* Split Visual */
.split-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 48px;
}

.dark-card { background: var(--surface2); }
.light-card { background: var(--surface3); }

/* App UI Preview */
.app-ui-preview {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.app-preview-img { width: 100%; height: auto; display: block; }
.plate-cover {
    display: none !important;
}
.app-ui-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}
.safety-badge-large {
    background: rgba(10,10,15,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.safety-badge-large i { font-size: 24px; color: var(--green); }
.safety-badge-large strong { display: block; font-weight: 700; margin-bottom: 2px; }
.safety-badge-large span { font-size: 13px; color: var(--text-muted); }

/* Earnings Preview */
.earnings-preview {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.earnings-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.earnings-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.earnings-period { font-size: 12px; color: var(--text-muted); }
.earnings-big {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
}
.apple-gradient-text {
    background: linear-gradient(
        to right,
        #ff2d55, 
        #af52de, 
        #5856d6,
        #ff2d55
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: appleShine 8s linear infinite;
}
@keyframes appleShine {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}
.earnings-bar-wrap {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 80px;
    margin-bottom: 8px;
}
.earnings-bar {
    flex: 1;
    background: rgba(139,92,246,0.2);
    border-radius: 4px 4px 0 0;
}
.earnings-bar.active { background: var(--gradient); }
.earnings-days {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.earnings-days span { flex: 1; text-align: center; font-size: 12px; color: var(--text-muted); }
.earnings-stats-row {
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.earnings-stats-row div { flex: 1; text-align: center; }
.earnings-stats-row strong { display: block; font-size: 22px; font-weight: 800; color: var(--text); }
.earnings-stats-row span { font-size: 12px; color: var(--text-muted); }

/* ═══════════════ SAFETY CARDS ═══════════════ */
.safety-section { padding: 120px 0; }
.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.safety-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.safety-card.visible { opacity: 1; transform: translateY(0); }
.safety-card:hover {
    border-color: rgba(232,40,106,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--shadow-glow);
}
.safety-icon {
    width: 52px;
    height: 52px;
    background: rgba(232,40,106,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--pink);
    margin-bottom: 20px;
}
.safety-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.safety-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════ GEMACOIN SECTION ═══════════════ */
.gemacoin-section {
    padding: 120px 0;
    background: var(--surface);
    overflow: hidden;
}
.gemacoin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.gemacoin-grid.visible { opacity: 1; transform: translateY(0); }

.gemacoin-text h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; }
.gemacoin-text > p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }

.coin-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.coin-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}
.coin-badge {
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 800;
    min-width: 48px;
    text-align: center;
}

.reward-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}
.reward-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 16px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.reward-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--pink);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.reward-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 40, 106, 0.4);
}
.reward-data { display: flex; flex-direction: column; }
.reward-number {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.reward-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* 3D Coin */
.gemacoin-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
}

.coin-3d {
    width: 160px;
    height: 160px;
    position: relative;
    z-index: 2;
    animation: coinSpin 8s linear infinite;
    transform-style: preserve-3d;
}
@keyframes coinSpin {
    0% { transform: rotateY(0deg) rotateX(15deg); }
    100% { transform: rotateY(360deg) rotateX(15deg); }
}

.coin-layer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(90deg, #E8286A, #8B5CF6, #E8286A);
    box-shadow: inset 0 0 16px rgba(0,0,0,0.8);
    opacity: 0.9;
}
.coin-layer.l-1 { transform: translateZ(-10px); }
.coin-layer.l-2 { transform: translateZ(-6px); }
.coin-layer.l-3 { transform: translateZ(-2px); }
.coin-layer.l-4 { transform: translateZ(2px); }
.coin-layer.l-5 { transform: translateZ(6px); }
.coin-layer.l-6 { transform: translateZ(10px); }

.coin-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, #180a22, #0d0414);
    border: 5px solid var(--magenta);
    box-shadow: inset 0 0 30px rgba(217, 70, 239, 0.3);
}
.coin-face.front { transform: translateZ(11px); }
.coin-face.back { transform: rotateY(180deg) translateZ(11px); }

.coin-g { 
    font-size: 56px; 
    font-weight: 900; 
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: -6px;
    filter: drop-shadow(0 2px 4px rgba(217, 70, 239, 0.4));
}
.coin-icon {
    font-size: 14px;
    color: var(--pink);
}

.coin-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.coin-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(232,40,106,0.2);
    animation: ringPulse 4s ease-in-out infinite;
}
.r1 { width: 220px; height: 220px; animation-delay: 0s; }
.r2 { width: 290px; height: 290px; animation-delay: 0.7s; }
.r3 { width: 360px; height: 360px; animation-delay: 1.4s; }
@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.03); }
}

/* ═══════════════ COVERAGE ═══════════════ */
.coverage-section { padding: 120px 0; }
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.city-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.city-card.visible { opacity: 1; transform: translateY(0); }
.city-card.active-city {
    border-color: rgba(232,40,106,0.4);
    background: rgba(232,40,106,0.06);
}
.city-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.city-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    margin-bottom: 16px;
}
.city-status.launching { background: rgba(232,40,106,0.15); color: var(--pink); }
.city-status.soon { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.city-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.city-card p { font-size: 13px; color: var(--text-muted); }

/* ═══════════════ FAQ ═══════════════ */
.faq-section { padding: 120px 0; background: var(--surface); }
.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}
.faq-sidebar h2 { font-size: 40px; font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }
.faq-sidebar p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
}
.whatsapp-link:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--pink); }
.faq-question i { font-size: 14px; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-answer {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 24px; }
.faq-item.open .faq-question i { transform: rotate(45deg); color: var(--pink); }

/* ═══════════════ REGISTER SECTION ═══════════════ */
.register-section { padding: 120px 0; }
.register-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 64px;
    position: relative;
    overflow: hidden;
}
.register-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,40,106,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.register-text h2 { font-size: 40px; font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }
.register-text > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.register-perks { display: flex; flex-direction: column; gap: 10px; }
.register-perks span { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.register-perks i { color: var(--green); }

.register-form { display: flex; flex-direction: column; gap: 12px; }
.form-input {
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--pink); }
select.form-input option { background: var(--surface2); color: var(--text); }

.form-submit {
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,40,106,0.4); }
.form-legal { font-size: 12px; color: var(--text-muted); text-align: center; }
.form-legal a { color: var(--violet); }

.form-input-fake {
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--text-muted);
    font-size: 15px;
    width: 100%;
}
.visual-btn {
    margin-top: 8px;
    cursor: pointer;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer-uber {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand { margin-bottom: 20px; }
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(232,40,106,0.4));
}
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--pink); color: var(--pink); }

.footer-links-group h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-links-group { display: flex; flex-direction: column; gap: 0; }
.footer-links-group a { font-size: 14px; color: var(--text-muted); padding: 6px 0; transition: color 0.2s; }
.footer-links-group a:hover { color: var(--text); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ═══════════════ WHATSAPP FLOAT ═══════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: waPulse 3s ease-in-out infinite;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ═══════════════ TOAST ═══════════════ */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: rgba(16,185,129,0.4); color: var(--green); }
.toast.error { border-color: rgba(232,40,106,0.4); color: var(--pink); }

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
    .hero-uber { grid-template-columns: 1fr; min-height: auto; }
    .hero-uber-content { padding: 100px 24px 32px; max-width: 600px; margin: 0 auto; }
    .hero-uber-visual { height: 400px; width: 100%; }
    .float-pill-1 { left: 10px; top: 20px; }
    .float-pill-2 { right: 10px; top: 50%; }
    .float-pill-3 { left: 10px; bottom: 20px; top: auto; }
    .safety-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .safety-section { padding: 80px 0; }
    .gemacoin-section { padding: 80px 0; }
    .coverage-section { padding: 80px 0; }
    .faq-section { padding: 80px 0; }
    .postulacion-section { padding: 80px 0; }
}

@media (max-width: 768px) {
    .navbar { padding: 16px 20px; }
    .nav-links, .nav-right { display: none; }
    .nav-hamburger { display: flex; }
    .navbar.scrolled { padding: 12px 20px; }

    /* Hero */
    .hero-uber-content { padding: 88px 20px 28px; }
    .hero-uber-visual { height: auto; padding: 40px 0 60px; overflow: hidden; justify-content: flex-start; align-items: flex-start; }
    .phone-mockup-main { width: 230px; height: 480px; border-radius: 30px; margin: 0 auto; }
    .hero-sub { font-size: 16px; margin-bottom: 28px; }
    .hero-trust { flex-wrap: wrap; gap: 10px; margin-top: 24px; }

    /* Float pills — ocultar en mobile para evitar superposición */
    .float-pill-1, .float-pill-2, .float-pill-3 { display: none; }

    /* Sections padding */
    .safety-section { padding: 60px 0; }
    .gemacoin-section { padding: 60px 0; }
    .coverage-section { padding: 60px 0; }
    .faq-section { padding: 60px 0; }
    .postulacion-section { padding: 60px 0; }

    /* Split sections */
    .split-section { grid-template-columns: 1fr; min-height: 0; }
    .split-section.reverse { direction: ltr; }
    .split-text { padding: 40px 20px; }
    .split-section.reverse .split-text { padding: 40px 20px; }
    .split-visual { padding: 28px 20px; min-height: 240px; }
    .app-ui-preview { max-width: 260px; margin: 0 auto; }

    /* Grids */
    .safety-grid { grid-template-columns: 1fr; gap: 16px; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .register-box { grid-template-columns: 1fr; padding: 32px 24px; gap: 40px; }
    .register-box::before { display: none; }

    /* Stats */
    .stats-strip { padding: 24px 0; }
    .stats-strip-inner { flex-wrap: wrap; gap: 20px; padding: 0 20px; }
    .stat-divider { display: none; }
    .stat-item { flex: 1 1 40%; text-align: center; }
    .stat-item strong { font-size: 30px; }

    /* GemaCash */
    .gemacoin-grid { grid-template-columns: 1fr; gap: 32px; }
    .gemacoin-visual { height: 240px; }
    .r3 { display: none; }

    /* Section headers */
    .section-header.centered { padding: 0 20px; margin-bottom: 36px; }
    .section-header.centered h2 { font-size: 28px; }
    .section-header.centered p { font-size: 15px; }

    /* Steps */
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .hero-input-row { flex-direction: column; }
}

@media (max-width: 480px) {
    .cities-grid { grid-template-columns: 1fr; }
    .hero-tabs { flex-direction: column; }
    .hero-uber-content h1 { font-size: 36px; letter-spacing: -1px; }
    .hero-eyebrow { font-size: 13px; }
    .profile-selector { width: 100%; }
    .profile-tab { flex: 1; justify-content: center; padding: 10px 16px; font-size: 14px; }
    .safety-grid { grid-template-columns: 1fr; }
    .reward-card { padding: 12px 16px; }
    .stat-item { flex: 1 1 45%; }
    .earnings-big { font-size: 36px; }
    .split-text h2 { font-size: 28px; }
}

/* ═══════════════════════════════════════
   GSAP ANIMATION ENHANCEMENTS
   ═══════════════════════════════════════ */

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--pink), var(--magenta), var(--violet));
    z-index: 9999;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(232,40,106,0.6);
    pointer-events: none;
}

/* Custom Cursor (desktop only) */
#cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    mix-blend-mode: normal;
    transition: background 0.2s, width 0.2s, height 0.2s;
}
#cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(232,40,106,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
}
@media (hover: none) {
    #cursor-dot, #cursor-ring { display: none; }
    body { cursor: auto !important; }
}
/* Ocultar cursor nativo en elementos interactivos */
@media (hover: hover) {
    a, button, [onclick], .faq-question, .profile-tab, .city-card, .safety-card { cursor: none; }
}

/* Reveal classes para GSAP ScrollTrigger */
.gsap-reveal {
    opacity: 0;
    transform: translateY(40px);
}
.gsap-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}
.gsap-reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

/* Magnetic button wrapper */
.magnetic-wrap {
    display: inline-block;
    position: relative;
}

/* ═══════════════ PROFILE SELECTOR ═══════════════ */
.profile-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    padding: 6px;
    width: fit-content;
    margin-bottom: 32px;
}
.profile-tab {
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}
.profile-tab.active {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.profile-tab:not(.active):hover { color: #fff; }
.profile-tab i { font-size: 16px; }