/* ═══════════════════════════════════════════════════════════════
   Ágora Cultural — Landing Page
   Paleta de marca + sistema de diseño
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand gradient */
  --magenta: #E91E8C;
  --pink:    #FF3D7F;
  --orange:  #FF6B3D;
  --amber:   #FFB23D;
  --yellow:  #FFD93D;

  /* Surfaces */
  --bg:       #0B0612;
  --bg-deep:  #050309;
  --surface:  #14091C;
  --card:     #1C1024;
  --elev:     #241530;

  /* Lines / text */
  --border:   rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.12);
  --text:     #FFFFFF;
  --mute:     rgba(255,255,255,0.62);
  --dim:      rgba(255,255,255,0.42);

  --grad:     linear-gradient(95deg, #E91E8C 0%, #FF3D7F 25%, #FF6B3D 55%, #FFB23D 85%, #FFD93D 100%);
  --grad-btn: linear-gradient(135deg, #E91E8C 0%, #FF6B3D 60%, #FFB23D 100%);

  --maxw: 1180px;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--magenta); color: #fff; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* ─── Ambient glows ─────────────────────────────────────────── */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.35s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav.scrolled {
  background: rgba(11, 6, 18, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand img { width: 38px; height: 38px; }
.brand .brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mute);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
}
.lang-toggle button {
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--dim);
  transition: all 0.25s var(--ease);
}
.lang-toggle button.active {
  background: var(--grad-btn);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 14px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  padding: 11px 20px;
  font-size: 14px;
  box-shadow: 0 8px 24px -6px rgba(233,30,140,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -6px rgba(233,30,140,0.6); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
  color: #fff;
  padding: 11px 20px;
  font-size: 14px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero .glow-1 { top: -120px; left: -100px; width: 480px; height: 480px; background: rgba(233,30,140,0.34); }
.hero .glow-2 { top: 120px; right: -160px; width: 460px; height: 460px; background: rgba(255,178,61,0.22); }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  text-wrap: balance;
}
.hero p.sub {
  margin: 0 0 36px;
  font-size: 18px;
  color: var(--mute);
  max-width: 460px;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Store badges */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px 11px 16px;
  background: #fff;
  color: #0B0612;
  border-radius: 14px;
  transition: all 0.25s var(--ease);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(255,255,255,0.25); }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-badge .sb-small { font-size: 9px; font-weight: 500; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.5px; }
.store-badge .sb-big { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; margin-top: 1px; }

.hero-meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--dim);
}
.hero-meta .stars { color: var(--amber); letter-spacing: 2px; }

/* ─── Phone mockup ──────────────────────────────────────────── */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1600px;
}
.phone {
  position: relative;
  width: 310px;
  height: 640px;
  background: #0B0612;
  border-radius: 46px;
  padding: 9px;
  border: 2px solid #241530;
  box-shadow:
    0 0 0 3px #000,
    0 50px 90px -20px rgba(0,0,0,0.8),
    0 0 80px -10px rgba(233,30,140,0.3);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 16px;
  z-index: 50;
}

/* Floating cards next to phone */
.float-card {
  position: absolute;
  background: rgba(28,16,36,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 12px 14px;
  z-index: 3;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.6);
  animation: float 5s ease-in-out infinite;
}
.float-card.fc-1 { top: 90px; left: -30px; animation-delay: 0.5s; }
.float-card.fc-2 { bottom: 120px; right: -36px; animation-delay: 1.2s; }
.float-card .fc-row { display: flex; align-items: center; gap: 10px; }
.float-card .fc-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-btn);
  flex-shrink: 0;
}
.float-card .fc-title { font-size: 12.5px; font-weight: 700; }
.float-card .fc-sub { font-size: 10.5px; color: var(--mute); margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════════
   IN-PHONE APP UI (recreación del home)
   ═══════════════════════════════════════════════════════════════ */
.app {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 46px;
}
.app-glow {
  position: absolute;
  top: -40px; left: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.4), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.app-header {
  display: flex; align-items: center; gap: 9px;
  padding: 4px 16px 0;
  position: relative; z-index: 2;
}
.app-header img { width: 30px; height: 30px; }
.app-header .ah-name { font-size: 13px; font-weight: 700; }
.app-header .ah-loc { font-size: 9.5px; color: var(--mute); display: flex; align-items: center; gap: 3px; }
.app-bell {
  margin-left: auto;
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.app-hero {
  padding: 16px 16px 12px;
  position: relative; z-index: 2;
}
.app-hero .greet { font-size: 11px; color: var(--mute); margin-bottom: 4px; }
.app-hero h2 { margin: 0; font-size: 21px; font-weight: 700; line-height: 1.18; letter-spacing: -0.5px; }
.app-search {
  margin: 0 16px 14px;
  display: flex; gap: 8px;
  position: relative; z-index: 2;
}
.app-search .as-input {
  flex: 1; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; padding: 0 12px;
  font-size: 11px; color: var(--dim);
}
.app-search .as-btn {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
}
.app-chips {
  display: flex; gap: 7px; padding: 0 16px 16px;
  overflow: hidden;
  position: relative; z-index: 2;
}
.app-chip {
  flex-shrink: 0; padding: 8px 13px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--mute);
}
.app-chip.on { background: var(--grad-btn); border-color: transparent; color: #fff; }
.app-section-h {
  padding: 0 16px 10px;
  display: flex; justify-content: space-between; align-items: baseline;
  position: relative; z-index: 2;
}
.app-section-h h3 { margin: 0; font-size: 15px; font-weight: 700; letter-spacing: -0.3px; }
.app-section-h .link { font-size: 11px; font-weight: 600; color: var(--amber); }
.app-feature {
  margin: 0 16px;
  height: 168px; border-radius: 18px;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.app-feature img { width: 100%; height: 100%; object-fit: cover; }
.app-feature .af-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,6,18,0.96) 100%);
}
.app-feature .af-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 9px; border-radius: 7px;
  background: var(--grad-btn); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: 0.5px;
}
.app-feature .af-content { position: absolute; bottom: 12px; left: 12px; right: 12px; }
.app-feature .af-cat { font-size: 9px; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: 0.6px; }
.app-feature .af-title { font-size: 15px; font-weight: 700; line-height: 1.2; margin-top: 3px; }
.app-feature .af-meta { font-size: 10px; color: var(--mute); margin-top: 5px; display: flex; gap: 10px; }

.app-tabbar {
  margin: auto 12px 12px;
  height: 56px; border-radius: 20px;
  background: rgba(28,16,36,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 5px;
  position: relative; z-index: 2;
}
.app-tab {
  border-radius: 15px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: 8px; font-weight: 600; color: var(--dim);
}
.app-tab.on { color: #fff; background: linear-gradient(135deg, rgba(233,30,140,0.22), rgba(255,178,61,0.14)); }

/* ═══════════════════════════════════════════════════════════════
   SECTION GENERICS
   ═══════════════════════════════════════════════════════════════ */
section { position: relative; }
.section-pad { padding: 90px 0; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-intro {
  font-size: 17px;
  color: var(--mute);
  max-width: 560px;
  text-wrap: pretty;
}
.section-head { text-align: center; margin: 0 auto 56px; }
.section-head .section-intro { margin-left: auto; margin-right: auto; }

/* ─── Stats bar ─────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(233,30,140,0.08), rgba(255,178,61,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat { text-align: center; }
.stat .n { font-size: 38px; font-weight: 800; letter-spacing: -1.5px; }
.stat .l { font-size: 13px; color: var(--mute); margin-top: 4px; }

/* ─── Categories ────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat {
  padding: 26px 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.cat:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  background: var(--elev);
}
.cat-icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(233,30,140,0.2), rgba(255,178,61,0.12));
  border: 1px solid rgba(233,30,140,0.3);
}
.cat h4 { margin: 0 0 5px; font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }
.cat p { margin: 0; font-size: 13px; color: var(--mute); }

/* ─── How it works ──────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -6px rgba(233,30,140,0.5);
}
.step h4 { margin: 0 0 8px; font-size: 19px; font-weight: 700; letter-spacing: -0.4px; }
.step p { margin: 0; font-size: 14.5px; color: var(--mute); }

/* ─── Feature split rows ────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .fr-text { order: 2; }
.fr-text h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.8px; margin: 0 0 16px; line-height: 1.12; }
.fr-text p { font-size: 16px; color: var(--mute); margin: 0 0 22px; }
.fr-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fr-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.fr-list .check {
  width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0;
  background: rgba(233,30,140,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.fr-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--card), var(--surface));
  aspect-ratio: 4/3;
  position: relative;
}
.fr-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Organizers CTA ────────────────────────────────────────── */
.organizers {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(233,30,140,0.16), rgba(255,178,61,0.08));
  border: 1px solid rgba(233,30,140,0.3);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.organizers .glow-o { top: -100px; right: -60px; width: 360px; height: 360px; background: rgba(233,30,140,0.3); }
.organizers h3 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -1px; margin: 0 0 14px; line-height: 1.1; position: relative; z-index: 2; }
.organizers p { font-size: 16px; color: var(--mute); margin: 0 0 24px; position: relative; z-index: 2; }

/* ─── Playful banner ────────────────────────────────────────── */
.banner-fun {
  text-align: center;
  padding: 70px 0;
}
.banner-fun .q {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-2); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  font-size: 16px; font-weight: 600; text-align: left;
}
.faq-q .ic { transition: transform 0.3s var(--ease); flex-shrink: 0; color: var(--amber); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--mute); }

/* ─── Final CTA ─────────────────────────────────────────────── */
.cta-final {
  text-align: center;
  padding: 80px 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(233,30,140,0.14), rgba(255,107,61,0.08), rgba(255,178,61,0.06));
  border: 1px solid var(--border-2);
  position: relative;
  overflow: hidden;
}
.cta-final .glow-c { top: -120px; left: 50%; transform: translateX(-50%); width: 500px; height: 400px; background: rgba(233,30,140,0.25); }
.cta-final h2 { font-size: clamp(30px, 5vw, 52px); font-weight: 800; letter-spacing: -1.5px; margin: 0 0 18px; position: relative; z-index: 2; }
.cta-final p { font-size: 18px; color: var(--mute); margin: 0 0 32px; position: relative; z-index: 2; }
.cta-final .store-badges { justify-content: center; position: relative; z-index: 2; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  margin-top: 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer .brand { margin-bottom: 16px; }
.footer-about p { font-size: 14px; color: var(--mute); max-width: 280px; margin: 0 0 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--grad-btn); border-color: transparent; transform: translateY(-2px); }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin: 0 0 16px; color: var(--dim); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--mute); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--dim);
  flex-wrap: wrap; gap: 12px;
}

/* ─── Reveal animation ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   FORMULARIO DE CONTACTO
   ═══════════════════════════════════════════════════════════════ */
.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 40px;
}
.cf-field {
  margin-bottom: 24px;
}
.cf-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cf-field input,
.cf-field select {
  width: 100%;
  background: var(--elev);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.cf-field input:focus,
.cf-field select:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.15);
}
.cf-field input.error,
.cf-field select.error {
  border-color: #ef4444;
}
.cf-field select option { background: var(--card); }
.cf-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  padding: 0 2px;
  min-height: 20px;
}
.cf-error {
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
}
.cf-counter {
  font-size: 11.5px;
  color: var(--dim);
  white-space: nowrap;
  margin-left: auto;
}
.cf-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  font-size: 16px;
  gap: 10px;
  cursor: pointer;
}
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
#cf-result {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
#cf-result.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
#cf-result.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Hamburguesa ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Menú móvil ──────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(11,6,18,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.25s var(--ease);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--mute);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  gap: 12px;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-text { text-align: center; }
  .hero p.sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .steps { grid-template-columns: 1fr; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .fr-text { order: 0; }
  .organizers { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .organizers .btn { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .store-badges { justify-content: center; }
  .hero-cta { display: flex; justify-content: center; }
  .fr-visual img { max-height: 300px; object-fit: cover; border-radius: 16px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .hero { padding: 110px 0 50px; }
  .store-badges { flex-direction: column; align-items: center; }
  .store-badge { width: 100%; max-width: 240px; justify-content: center; }
  .float-card { display: none; }
  .organizers { padding: 32px 20px; }
  .cta-final { padding: 48px 20px; }
  .section-title { font-size: clamp(24px, 7vw, 36px); }
  .footer-social { justify-content: center; }
  .footer-about { text-align: center; }
  .footer-about p { max-width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
}
