@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap");

:root {
  --bg: #fdfcfa;
  --fg: #17150f;
  --card: #ffffff;
  --muted: #6d6a60;
  --border: #eae5db;
  --gold: #f0b429;
  --gold-soft: #fbe6b0;
  --gold-deep: #c98a10;
  --accent: #fbf3e2;
}

* { box-sizing: border-box; border-color: var(--border); }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

main { position: relative; min-height: 100vh; width: 100%; overflow-x: hidden; }
.bg-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.18;
  background-image: radial-gradient(circle, #b9a882 1px, transparent 1px);
  background-size: 14px 14px;
}
.bg-glow {
  position: absolute; top: -128px; left: 50%; transform: translateX(-50%);
  width: 420px; height: 420px; border-radius: 9999px; pointer-events: none;
  background: radial-gradient(circle, rgba(251,230,176,0.75) 0%, transparent 70%);
}
.wrap {
  position: relative; margin: 0 auto; display: flex; flex-direction: column;
  min-height: 100vh; width: 100%; max-width: 480px; padding: 32px 20px 40px;
}

.center { text-align: center; }
.logo { display: block; margin: 0 auto; width: 260px; max-width: 100%; height: auto; object-fit: contain; }
.logo-sm { width: 220px; }

.eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-deep); margin: 0; }
h1 { margin: 8px 0 0; font-size: 24px; line-height: 1.2; font-weight: 800; text-transform: uppercase; }
.sub { margin: 12px 0 0; font-size: 14px; color: var(--muted); }
.sub.narrow { max-width: 320px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.sub strong { font-weight: 800; text-transform: uppercase; color: var(--fg); }

.zones { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.zone {
  display: flex; align-items: center; gap: 12px; width: 100%;
  border: 0; cursor: pointer; text-align: left;
  border-radius: 9999px; background: var(--card); padding: 16px;
  box-shadow: 0 2px 10px -4px rgba(0,0,0,0.15);
  font-family: inherit; transition: background .2s, box-shadow .2s, transform .1s;
}
.zone:hover { background: var(--accent); box-shadow: 0 6px 18px -6px rgba(201,138,16,0.45); }
.zone:active { transform: scale(0.98); }
.zone-label { flex: 1; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.flag { font-size: 20px; }
.badge {
  display: flex; align-items: center; justify-content: center;
  height: 28px; width: 28px; flex-shrink: 0; border-radius: 9999px;
  border: 1px solid rgba(240,180,41,0.6); background: var(--gold-soft);
  font-size: 12px; font-weight: 700;
}
.chev { flex-shrink: 0; color: var(--gold-deep); transition: transform .3s; }
.chev.right { transform: rotate(-90deg); }

.group { overflow: hidden; border-radius: 9999px; background: var(--card); box-shadow: 0 2px 10px -4px rgba(0,0,0,0.15); transition: border-radius .2s; }
.group[data-open="true"] { border-radius: 24px; }
.group .zone { box-shadow: none; }
.group[data-open="true"] .chev { transform: rotate(180deg); }
.panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease-out; }
.group[data-open="true"] .panel { grid-template-rows: 1fr; }
.panel > div { overflow: hidden; }
.panel-inner { display: flex; flex-direction: column; gap: 8px; padding: 4px 12px 12px; }
.child {
  display: flex; align-items: center; gap: 12px; border-radius: 9999px;
  border: 1px solid rgba(240,180,41,0.4); background: rgba(251,230,176,0.4);
  padding: 12px 16px; font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.02em; transition: background .2s, transform .1s;
}
.child:hover { background: rgba(240,180,41,0.3); }
.child:active { transform: scale(0.98); }

.notice {
  margin-top: 32px; border-radius: 16px; border: 2px solid rgba(240,180,41,0.7);
  background: rgba(255,255,255,0.9); padding: 16px;
  box-shadow: 0 8px 24px -12px rgba(201,138,16,0.4);
  display: flex; gap: 12px; align-items: flex-start;
}
.notice-icon {
  height: 36px; width: 36px; flex-shrink: 0; border-radius: 9999px;
  background: rgba(240,180,41,0.2); display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.notice-body { flex: 1; font-size: 14px; line-height: 1.6; }
.notice-body p { margin: 0; }
.notice-body p + p { margin-top: 8px; }
.notice-title { font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-deep); }
.up { text-transform: uppercase; font-weight: 700; }

.divider { margin-top: 40px; display: flex; align-items: center; gap: 12px; color: var(--muted); }
.divider span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; }
.divider i { flex: 1; height: 1px; background: var(--border); display: block; }
.stores { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.store {
  position: relative; display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 12px; background: rgba(23,21,15,0.9);
  padding: 10px 12px; opacity: 0.85; color: var(--bg);
}
.store .soon {
  position: absolute; top: -8px; right: 8px; border-radius: 9999px; background: var(--gold);
  padding: 2px 8px; font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--fg); box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.store svg { width: 28px; height: 28px; }
.store .small { font-size: 9px; text-transform: uppercase; opacity: .7; display: block; }
.store .big { font-size: 14px; font-weight: 700; display: block; }

footer { margin-top: auto; padding-top: 40px; text-align: center; }
footer p { margin: 0; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }

/* otra zona */
.back {
  display: inline-flex; width: fit-content; align-items: center; gap: 6px;
  border-radius: 9999px; border: 1px solid var(--border); background: var(--card);
  padding: 6px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.back:hover { background: var(--accent); }
.section-title { margin: 28px 0 12px; display: flex; align-items: center; gap: 8px; }
.section-title h2 { margin: 0; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; }
.section-title svg { color: var(--gold-deep); }
.methods { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.methods li {
  border-radius: 16px; border: 1px solid rgba(240,180,41,0.4); background: var(--card);
  padding: 12px; box-shadow: 0 2px 10px -6px rgba(0,0,0,0.15);
}
.methods p { margin: 0; }
.methods .m-label { font-size: 14px; font-weight: 800; text-transform: uppercase; }
.methods .m-desc { margin-top: 2px; font-size: 11px; color: var(--muted); }
.actions { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 9999px; background: var(--gold); padding: 16px 20px;
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  box-shadow: 0 8px 22px -8px rgba(201,138,16,0.7); transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--gold-deep); }
.btn-primary:active, .btn-secondary:active { transform: scale(0.98); }
.btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 9999px; border: 1px solid var(--border); background: var(--card);
  padding: 16px 20px; font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; transition: background .2s, transform .1s;
}
.btn-secondary:hover { background: var(--accent); }

@media (min-width: 640px) {
  .wrap { padding-top: 48px; }
  h1 { font-size: 26px; }
}
