/* ── GEOSCORT · main.css ─────────────────────────────────── */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --black: #0A0A0A;
  --surface: #111111;
  --surface-2: #141414;
  --surface-3: #1A1A1A;
  --border: #1E1E1E;
  --border-2: #2A2A2A;
  --text: #C9A84C;
  --text-2: #CCCCCC;
  --text-3: #888888;
  --text-4: #555555;
  --green: #3D9E6A;
  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }
img { max-width: 100%; }
.is-hidden { display: none !important; }

/* ── TYPOGRAPHY ─────────────── */
h1 { font-size: 2rem; font-weight: 600; line-height: 1.2; }
h2 { font-size: 1.3rem; font-weight: 500; }
h3 { font-size: 1.05rem; font-weight: 500; }
h4 { font-size: 0.9rem; font-weight: 500; color: var(--text-3); }
.gold { color: var(--gold); }

/* ── BUTTONS ─────────────────── */
.btn-gold {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .15s;
  display: inline-block;
}
.btn-gold:hover { opacity: .88; }

.btn-gold--pulse {
  overflow: hidden;
}

.btn-gold--pulse span {
  display: inline-block;
  animation: buttonTextZoom 1.35s ease-in-out infinite;
  transform-origin: center;
}

.btn-gold--pulse:hover span {
  animation-play-state: paused;
  transform: scale(1.12);
}

.btn-gold-sm {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

.btn-ghost {
  background: transparent;
  color: var(--text-3);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
  transition: color .15s;
}
.btn-ghost:hover { color: var(--text); }

.btn-filter {
  background: #3D9E6A;
  color: #07130D;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  transition: opacity .15s;
}
.btn-filter:hover { opacity: .88; }

.btn-full { width: 100%; text-align: center; }

.btn-primary {
  flex: 1;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.btn-icon {
  padding: 8px 10px;
  background: var(--surface-3);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text-3);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.btn-icon-danger {
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 16px;
}
.btn-icon-danger:hover { color: #E24B4A; }

.btn-sm {
  padding: 5px 10px;
  font-size: 11px;
  border: 0.5px solid var(--border-2);
  border-radius: 6px;
  color: var(--text-3);
  background: transparent;
  cursor: pointer;
}
.btn-sm--gold { background: var(--gold); color: #000; border-color: var(--gold); }
.btn-sm--video { color: var(--gold); border-color: rgba(201,168,76,0.3); }

.link-gold { color: var(--gold); font-size: 13px; }

/* ── FLASH MESSAGES ──────────── */
.flash {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  margin: 0;
}
.flash--success { background: rgba(61,158,106,.12); color: #3D9E6A; border-bottom: 0.5px solid rgba(61,158,106,.2); }
.flash--error { background: rgba(226,75,74,.1); color: #E24B4A; border-bottom: 0.5px solid rgba(226,75,74,.2); }

/* ── LEGAL ───────────────────── */
.legal-page {
  min-height: calc(100vh - 56px);
  padding: 48px 20px 72px;
  background: var(--black);
}
.legal-shell {
  width: min(860px, 100%);
  margin: 0 auto;
  color: var(--text-2);
}
.legal-shell h1 {
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}
.legal-shell h2 {
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 8px;
}
.legal-shell p {
  color: var(--text-2);
  margin-bottom: 12px;
}
.legal-updated {
  color: var(--text-3);
  font-size: 13px;
  margin-bottom: 24px;
}

/* ── NAVBAR ──────────────────── */
.navbar {
  background: var(--gold);
  border-bottom: 0.5px solid rgba(0,0,0,.18);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 0;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: auto;
  height: 48px;
  display: block;
  object-fit: contain;
}
.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}
.navbar-links {
  display: flex;
  gap: 28px;
  margin-left: 40px;
}
.nav-link {
  font-size: 13px;
  color: rgba(0,0,0,.72);
  transition: color .15s;
}
.nav-link:hover, .nav-link.active { color: #000; }
.navbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #000;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}
.navbar .btn-ghost {
  color: #000;
  border-color: rgba(0,0,0,.25);
}
.navbar .btn-gold {
  background: #000;
  color: var(--gold);
}

/* ── HERO ────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: calc(100vh - 56px);
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-content: start;
  align-items: start;
  border-radius: 0 0 18px 18px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/img/fondo-2.jpg') center 42% / cover no-repeat;
  opacity: .58;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,.28), rgba(10,10,10,.48) 62%, rgba(10,10,10,.82)),
    radial-gradient(circle at 50% 12%, rgba(201,168,76,.12), transparent 38%);
}
.hero-left {
  max-width: 860px;
  text-align: center;
  margin: 28px auto 0;
}
.hero-logo {
  width: min(260px, 58vw);
  max-height: 285px;
  height: auto;
  display: block;
  object-fit: contain;
  margin: -8px auto -52px;
  filter: brightness(0) saturate(100%) invert(70%) sepia(34%) saturate(596%) hue-rotate(8deg) brightness(91%) contrast(88%) drop-shadow(0 10px 28px rgba(201,168,76,.18));
  transform-origin: center;
  transform-style: preserve-3d;
  animation: heroLogoSpin 5s linear infinite;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-title {
  font-size: 2.05rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.12;
  color: var(--gold);
  text-shadow: 0 10px 28px rgba(201,168,76,.12);
  margin-bottom: 22px;
}
.hero-subtitle {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 24px;
}
.search-form { }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero-actions .btn-gold,
.hero-actions .btn-ghost,
.hero-actions .btn-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 170px;
}
.hero-actions--split {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-actions--split .btn-gold,
.hero-actions--split .btn-filter {
  min-height: 118px;
  border-radius: var(--radius-lg);
  font-size: 1.05rem;
  font-weight: 600;
  flex-direction: row;
}
.hero-actions--split .btn-filter {
  background: rgba(201,168,76,.08);
  color: var(--gold);
  border: 0.5px solid rgba(201,168,76,.34);
}
.hero-actions--split .btn-filter:hover {
  opacity: 1;
  background: rgba(201,168,76,.14);
  border-color: rgba(201,168,76,.58);
}
.hero-actions--split i {
  font-size: 26px;
}
.search-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius);
  padding: 0 12px;
  flex: 1;
  min-width: 140px;
}
.search-field i { color: var(--text-4); font-size: 15px; flex-shrink: 0; }
.search-field input,
.search-field select {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 13px;
  padding: 10px 0;
}
.search-field select option { background: var(--surface-2); }
.search-field--location { border-color: rgba(201,168,76,.25); flex: 0 0 auto; }
.search-field--location i { color: var(--gold); }
.search-field--location select { color: var(--gold); }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 20px;
}
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-4);
}

/* MAP */
.hero-map { width: 100%; }
.map-header { margin-bottom: 14px; }
.map-header h2 { margin-bottom: 4px; }
.map-helper {
  color: var(--text-3);
  font-size: 13px;
}
.map-container {
  background: #0F0F0F;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  position: relative;
}
#home-map {
  width: 100%;
  height: 100%;
}
.map-status {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 500;
  background: rgba(10,10,10,.88);
  border: 0.5px solid var(--border);
  border-radius: 7px;
  padding: 7px 12px;
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.map-status i { color: var(--gold); }
.map-locate-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 500;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 0.5px solid var(--border-2);
  background: rgba(10,10,10,.9);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-locate-btn:hover { border-color: rgba(201,168,76,.45); }
.map-pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 8px;
  border: 2px solid #0A0A0A;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}
.map-pin span { transform: rotate(45deg); }
.map-pin--user {
  background: #F5F5F0;
  color: #0A0A0A;
}
.leaflet-container {
  background: #101010;
  color: #111;
  font-family: inherit;
}
.leaflet-container img,
.leaflet-tile {
  max-width: none !important;
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: var(--surface-2);
  color: var(--text);
  border: 0.5px solid var(--border-2);
}
.leaflet-popup-content {
  margin: 10px 12px;
  font-size: 12px;
}
.leaflet-popup-content strong { color: var(--gold); }
.leaflet-control-attribution {
  background: rgba(10,10,10,.75) !important;
  color: var(--text-4) !important;
}

/* ── NEARBY MAP PAGE ─────────── */
.nearby-map-page {
  min-height: calc(100vh - 56px);
}
.nearby-map-shell {
  height: calc(100vh - 56px);
  min-height: 560px;
  position: relative;
}
#nearby-map {
  width: 100%;
  height: 100%;
}
.nearby-map-topbar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 500;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}
.nearby-map-topbar > * {
  pointer-events: auto;
}
.nearby-map-title {
  background: rgba(10,10,10,.88);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  text-align: center;
}
.nearby-map-title h1 {
  font-size: 18px;
  margin-bottom: 1px;
}
.nearby-map-title p {
  color: var(--text-3);
  font-size: 12px;
}
.google-html-marker {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}
.nearby-avatar-marker {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid #0A0A0A;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.72);
  font-weight: 700;
  font-size: 16px;
}
.nearby-avatar-marker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nearby-user-marker {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F5F5F0;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,168,76,.2);
}
.nearby-avatar-marker.is-active {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201,168,76,.35);
  transform: scale(1.08);
}
.nearby-carousel {
  position: absolute;
  top: 86px;
  left: 16px;
  right: 16px;
  z-index: 500;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 8px;
  scrollbar-width: none;
}
.nearby-carousel::-webkit-scrollbar { display: none; }
.nearby-card {
  flex: 0 0 230px;
  min-height: 76px;
  border: 0.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(10,10,10,.88);
  color: var(--text);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px;
  cursor: pointer;
  text-align: left;
  backdrop-filter: blur(10px);
}
.nearby-card.is-active {
  border-color: rgba(201,168,76,.85);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.nearby-card-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(0,0,0,.72);
  font-weight: 700;
}
.nearby-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nearby-card-text strong,
.nearby-card-text span {
  display: block;
}
.nearby-card-text strong {
  font-size: 13px;
  margin-bottom: 3px;
}
.nearby-card-text span {
  color: var(--text-3);
  font-size: 11px;
}
.nearby-detail {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
}
.nearby-detail.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nearby-modal-open {
  overflow: hidden;
}
.nearby-detail-card {
  position: relative;
  width: min(1040px, calc(100vw - 28px));
  max-height: min(780px, calc(100dvh - 36px));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  background: rgba(12,12,12,.98);
  border: 0.5px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0,0,0,.62);
  transform: scale(.98) translateY(12px);
  transition: transform .18s;
}
.nearby-detail.is-open .nearby-detail-card {
  transform: scale(1) translateY(0);
}
.nearby-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,.16);
  background: rgba(10,10,10,.82);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.nearby-detail-close:hover,
.nearby-detail-close:focus-visible {
  border-color: rgba(201,168,76,.45);
  color: var(--gold);
  outline: none;
}
.nearby-detail-media {
  display: block;
  min-height: 0;
  overflow-y: auto;
  background: #070707;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.nearby-media-viewer {
  height: min(58vh, 520px);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  overflow: hidden;
}
.nearby-media-viewer img,
.nearby-media-viewer video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}
.nearby-cover-empty {
  width: 100%;
  height: 100%;
  color: rgba(0,0,0,.7);
  font-size: 38px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.nearby-media-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #080808;
  border-top: 0.5px solid rgba(255,255,255,.08);
  border-bottom: 0.5px solid rgba(255,255,255,.08);
}
.nearby-media-tab {
  border: 0;
  background: transparent;
  color: var(--text-4);
  padding: 9px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.nearby-media-tab.is-active {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}
.nearby-media-panel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 104px;
  gap: 10px;
  overflow-x: auto;
  padding: 14px;
  background: #090909;
}
.nearby-media-thumb {
  position: relative;
  width: 104px;
  height: 86px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  padding: 0;
  background: #050505;
  overflow: hidden;
  cursor: pointer;
}
.nearby-media-thumb.is-active {
  border-color: rgba(201,168,76,.78);
  box-shadow: 0 0 0 2px rgba(201,168,76,.12);
}
.nearby-media-thumb img,
.nearby-media-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nearby-media-thumb span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(0,0,0,.25);
  font-size: 22px;
}
.nearby-media-empty {
  color: var(--text-4);
  font-size: 12px;
  padding: 16px 4px;
}
.nearby-detail-body {
  min-height: 0;
  overflow-y: auto;
  padding: 28px 24px 24px;
}
.nearby-detail-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.nearby-detail-heading h2 {
  font-size: 24px;
  margin-bottom: 3px;
}
.nearby-detail-price {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}
.nearby-detail-heading p {
  font-size: 12px;
  color: var(--text-3);
}
.nearby-detail-rating {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 13px;
}
.nearby-detail-description {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.nearby-detail-services {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.nearby-detail-group h3 {
  color: var(--text-4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 7px;
}
.nearby-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.nearby-detail-service {
  border: 0.5px solid var(--border-2);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--text-2);
  font-size: 11px;
}
.nearby-detail-price-list {
  display: grid;
  gap: 6px;
}
.nearby-detail-price-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  background: rgba(255,255,255,.035);
  border: 0.5px solid rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: 12px;
}
.nearby-detail-price-list strong {
  color: var(--text-2);
  font-weight: 600;
}
.nearby-detail-price-list em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}
.nearby-detail-video {
  border: 0.5px solid rgba(201,168,76,.22);
  border-radius: var(--radius);
  background: rgba(201,168,76,.08);
  color: var(--text);
  cursor: pointer;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
.nearby-detail-video:hover,
.nearby-detail-video:focus-visible {
  border-color: rgba(201,168,76,.48);
  background: rgba(201,168,76,.14);
  outline: none;
}
.nearby-detail-video i {
  color: var(--gold);
  font-size: 24px;
}
.nearby-detail-video strong,
.nearby-detail-video span {
  display: block;
}
.nearby-detail-video strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}
.nearby-detail-video span {
  color: var(--text-3);
  font-size: 12px;
}
.nearby-detail-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.nearby-detail-actions .btn-gold,
.nearby-detail-actions .btn-ghost {
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
}

/* ── BROADCAST BANNER ────────── */
.broadcast-banner {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.broadcast-inner {
  background: var(--surface);
  border: 0.5px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.bc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,168,76,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}
.bc-text { flex: 1; }
.bc-text h3 { margin-bottom: 3px; }
.bc-text p { font-size: 13px; color: var(--text-3); }

/* ── SECTIONS ────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title { text-align: center; margin-bottom: 36px; }
.text-center { text-align: center; }

/* ── MASAJISTAS GRID ─────────── */
.masajistas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.masajista-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .15s;
}
.masajista-card:hover { border-color: rgba(201,168,76,.3); }
.card-link {
  color: inherit;
  display: block;
  text-decoration: none;
}
.card-photo {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-initials {
  font-size: 42px;
  font-weight: 600;
  color: rgba(0,0,0,.7);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.card-body { padding: 12px; }
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-stars { font-size: 11px; color: var(--gold); }
.card-price { font-size: 16px; color: var(--gold); font-weight: 600; }
.card-footer {
  padding: 10px 12px;
  border-top: 0.5px solid var(--border);
  display: flex;
  gap: 7px;
}

/* ── PASOS ───────────────────── */
.pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.paso {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.paso-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  border: 0.5px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  margin: 0 auto 12px;
}
.paso-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.paso h3 { margin-bottom: 6px; }
.paso p { font-size: 13px; color: var(--text-3); }

/* ── BUSCAR ──────────────────── */
.filter-page {
  min-height: calc(100vh - 56px);
  background:
    linear-gradient(180deg, rgba(201,168,76,.07), transparent 220px),
    var(--black);
}
.filter-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px 42px;
}
.filter-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.filter-head .btn-icon {
  width: 40px;
  height: 40px;
  justify-content: center;
}
.filter-head-copy h1 {
  font-size: 1.55rem;
  line-height: 1.15;
}
.filter-head-copy p {
  color: var(--text-3);
  font-size: 13px;
  margin-top: 2px;
}
.filter-head .btn-filter {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.filter-panel {
  border-top: 0.5px solid rgba(201,168,76,.18);
  border-bottom: 0.5px solid rgba(255,255,255,.07);
  padding: 14px 0;
  margin-bottom: 18px;
}
.filter-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}
.filter-status {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,.035);
  border: 0.5px solid rgba(255,255,255,.08);
  border-radius: 999px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-status::-webkit-scrollbar { display: none; }
.filter-status-item {
  min-height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: var(--text-3);
  padding: 0 12px;
  font-size: 13px;
}
.filter-status-item small {
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--text-4);
  font-size: 11px;
}
.filter-status-item.active {
  background: var(--gold);
  color: #000;
}
.filter-status-item.active small {
  background: rgba(0,0,0,.14);
  color: #000;
}
.filter-select-wrap {
  width: min(260px, 100%);
}
.filter-select-wrap label {
  display: block;
  color: var(--text-4);
  font-size: 11px;
  margin-bottom: 5px;
}
.filter-select-wrap select {
  width: 100%;
  min-height: 40px;
  background: var(--surface);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0 34px 0 11px;
  font-size: 13px;
}
.filter-select-wrap select option { background: var(--surface); }
.filter-clear {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-3);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 13px;
}
.filter-clear:hover { color: var(--text); }
.filter-strip {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.filter-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-4);
  font-size: 11px;
  text-transform: uppercase;
}
.filter-zones {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.filter-zones::-webkit-scrollbar { display: none; }
.filter-zone {
  min-height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 0.5px solid var(--border-2);
  border-radius: 999px;
  color: var(--text-2);
  padding: 0 13px;
  cursor: pointer;
  font-size: 13px;
}
.filter-zone small {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.filter-zone.active {
  background: rgba(201,168,76,.13);
  color: var(--gold-light);
  border-color: rgba(201,168,76,.45);
}
.filter-zone.active small {
  background: var(--gold);
  color: #000;
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}
.filter-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.filter-card-media {
  aspect-ratio: 4 / 5;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.filter-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .18s ease;
}
.filter-card:hover .filter-card-media img { transform: scale(1.03); }
.filter-card-price {
  position: absolute;
  left: 10px;
  top: 10px;
  background: var(--gold);
  color: #000;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
}
.filter-card-body {
  padding: 12px;
}
.filter-card-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}
.filter-card-title h2 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 3px;
}
.filter-card-title p {
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.3;
}
.filter-live {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--green);
  font-size: 12px;
  white-space: nowrap;
}
.filter-live i { font-size: 17px; }
.filter-live--off {
  color: var(--text-4);
}
.filter-card-tags {
  min-height: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 11px 0 12px;
}
.filter-card-tags span {
  max-width: 100%;
  border: 0.5px solid var(--border-2);
  border-radius: 999px;
  color: var(--text-3);
  padding: 4px 8px;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filter-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.filter-card-actions .btn-gold,
.filter-card-actions .btn-ghost {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.resultados-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.empty-state {
  text-align: center;
  padding: 48px;
  color: var(--text-3);
}
.empty-state i { font-size: 40px; display: block; margin-bottom: 12px; }

/* ── PERFIL MASAJISTA ─────────── */
.perfil-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.perfil-hero {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.perfil-avatar {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  color: rgba(0,0,0,.7);
  flex-shrink: 0;
}
.perfil-info { flex: 1; }
.perfil-nombre { font-size: 1.4rem; margin-bottom: 4px; }
.perfil-spec { font-size: 13px; color: var(--text-3); margin-bottom: 10px; }
.perfil-badges { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.badge-gold {
  padding: 3px 10px;
  background: rgba(201,168,76,.1);
  color: var(--gold);
  border: 0.5px solid rgba(201,168,76,.25);
  border-radius: 6px;
  font-size: 12px;
}
.badge-green {
  padding: 3px 10px;
  background: rgba(61,158,106,.1);
  color: var(--green);
  border: 0.5px solid rgba(61,158,106,.2);
  border-radius: 6px;
  font-size: 12px;
}
.badge-gray {
  padding: 3px 10px;
  background: var(--surface-3);
  color: var(--text-4);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
}
.perfil-stats { display: flex; gap: 24px; }
.pstat-num { display: block; font-size: 1.2rem; font-weight: 600; color: var(--gold); }
.pstat-label { font-size: 11px; color: var(--text-4); }
.perfil-descripcion {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 24px;
}
.perfil-section {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.perfil-section h2 { margin-bottom: 14px; font-size: 1rem; }
.servicios-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.servicios-table th {
  text-align: left;
  padding: 6px 8px;
  color: var(--text-4);
  font-weight: 400;
  border-bottom: 0.5px solid var(--border);
  font-size: 11px;
}
.servicios-table td { padding: 10px 8px; border-bottom: 0.5px solid var(--border); }
.servicios-table tr:last-child td { border: none; }
.s-nombre { font-weight: 500; }
.s-dur { color: var(--text-4); }
.s-precio { color: var(--gold); font-weight: 500; }
.horarios-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.slot {
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 12px;
  border: 0.5px solid var(--border-2);
  color: var(--text-4);
}
.slot--available {
  border-color: rgba(201,168,76,.35);
  color: var(--gold);
}
.slot--taken {
  background: var(--surface-3);
  color: var(--text-4);
  opacity: .5;
}
.cert-list { list-style: none; }
.cert-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
  color: var(--text-2);
}
.cert-list li:last-child { border: none; }
.cert-list i { color: var(--gold); }

/* PERFIL ASIDE */
.perfil-aside { position: sticky; top: 70px; }
.aside-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.aside-price { margin-bottom: 14px; }
.aside-price-num { display: block; font-size: 1.6rem; font-weight: 600; color: var(--gold); }
.aside-price-label { font-size: 12px; color: var(--text-4); }
.aside-video {
  margin-top: 10px;
}
.btn-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px;
  background: transparent;
  border: 0.5px solid rgba(201,168,76,.3);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 13px;
  margin-top: 8px;
  cursor: pointer;
}
.btn-video:hover { background: rgba(201,168,76,.08); }
.aside-info { margin-top: 16px; }
.ainfo-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-3);
  padding: 5px 0;
  border-bottom: 0.5px solid var(--border);
}
.ainfo-row:last-child { border: none; }
.ainfo-row i { color: var(--text-4); font-size: 15px; }
.aside-otras h3 { font-size: 13px; margin-bottom: 10px; color: var(--text-3); }
.otra-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--border);
}
.otra-card:last-child { border: none; }
.otra-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,.7);
  flex-shrink: 0;
}
.otra-info { flex: 1; }
.otra-nombre { display: block; font-size: 13px; font-weight: 500; }
.otra-precio { display: block; font-size: 11px; color: var(--gold); }

/* ── SOLICITUD ───────────────── */
.solicitud-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
.solicitud-form-wrap { }
.solicitud-header { margin-bottom: 24px; }
.solicitud-header h1 { margin-bottom: 6px; }
.solicitud-sub { font-size: 14px; color: var(--text-3); }
.broadcast-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(201,168,76,.07);
  border: 0.5px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--gold);
}
.solicitud-form {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.form-grupo { margin-bottom: 16px; }
.form-grupo label {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 6px;
}
.form-grupo input,
.form-grupo select,
.form-grupo textarea {
  width: 100%;
  background: var(--surface-2);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
  transition: border-color .15s;
}
.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus {
  border-color: rgba(201,168,76,.4);
}
.form-grupo select option { background: var(--surface-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}
.form-section-title {
  font-size: 1rem;
  margin: 24px 0 14px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid var(--border);
}
.aside-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-3);
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 12px;
}
.aside-price-row .aside-price { color: var(--gold); font-weight: 500; font-size: 15px; }
.aside-horarios h4 { font-size: 11px; color: var(--text-4); margin-bottom: 8px; }
.horarios-mini { display: flex; flex-wrap: wrap; gap: 5px; }
.slot-mini {
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 11px;
  border: 0.5px solid var(--border-2);
  color: var(--text-4);
}
.slot-mini--ok { border-color: rgba(201,168,76,.3); color: var(--gold); }
.slot-mini--no { opacity: .4; }
.masajista-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 12px;
}
.mini-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(0,0,0,.7);
}
.mini-nombre { display: block; font-size: 13px; font-weight: 500; }
.mini-stars { font-size: 12px; color: var(--gold); }

/* ── CONFIRMACIÓN ────────────── */
.confirmacion-layout {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}
.confirm-hero { margin-bottom: 32px; }
.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(61,158,106,.12);
  border: 0.5px solid rgba(61,158,106,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
  margin: 0 auto 16px;
}
.confirm-hero h1 { margin-bottom: 8px; }
.confirm-hero p { font-size: 15px; color: var(--text-3); }
.confirm-details {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}
.detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 14px;
  color: var(--text-3);
}
.detail-row:last-child { border: none; }
.detail-row strong { color: var(--text); }
.detail-row i { color: var(--gold); }
.respondiendo-section { margin-bottom: 24px; text-align: left; }
.respondiendo-section h2 { margin-bottom: 12px; }
.resp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 8px;
}
.resp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(0,0,0,.7);
  flex-shrink: 0;
}
.resp-info { flex: 1; }
.resp-nombre { display: block; font-size: 13px; font-weight: 500; }
.resp-precio { font-size: 12px; color: var(--gold); }
.resp-actions { display: flex; gap: 6px; }
.confirm-actions { display: flex; gap: 10px; justify-content: center; }

/* ── AUTH ────────────────────── */
.auth-layout {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 24px;
}
.auth-layout::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/img/fondo-2.jpg') center 42% / cover no-repeat;
  opacity: .38;
}
.auth-layout::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,.62), rgba(10,10,10,.78)),
    radial-gradient(circle at 50% 12%, rgba(201,168,76,.16), transparent 36%);
}
.auth-card {
  background: rgba(10,10,10,.78);
  border: 0.5px solid rgba(201,168,76,.20);
  border-radius: var(--radius-lg);
  padding: 34px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
}
.auth-logo {
  margin-bottom: -20px;
  text-align: center;
}
.auth-logo-img {
  width: min(260px, 58vw);
  height: auto;
  max-height: 285px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(70%) sepia(34%) saturate(596%) hue-rotate(8deg) brightness(91%) contrast(88%) drop-shadow(0 10px 28px rgba(201,168,76,.18));
  transform-origin: center;
  transform-style: preserve-3d;
  animation: heroLogoSpin 5s linear infinite;
}
.auth-logo-img--white {
  filter: brightness(0) saturate(100%) invert(70%) sepia(34%) saturate(596%) hue-rotate(8deg) brightness(91%) contrast(88%) drop-shadow(0 10px 28px rgba(201,168,76,.18));
}
.auth-title {
  text-align: center;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.9rem;
  font-weight: 400;
}
.auth-sub { font-size: 13px; color: var(--text-2); text-align: center; margin-bottom: 24px; }
.auth-form .form-grupo { margin-bottom: 14px; }
.auth-form .form-grupo label {
  display: block;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 5px;
}
.auth-form .form-grupo input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 0.5px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 12px 13px;
  font-size: 14px;
  outline: none;
}
.auth-form .form-grupo input:focus {
  border-color: rgba(201,168,76,.52);
  box-shadow: 0 0 0 3px rgba(201,168,76,.08);
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 46px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}
.password-toggle:hover,
.password-toggle:focus-visible {
  background: rgba(201,168,76,.12);
  outline: none;
}
.password-toggle i {
  font-size: 18px;
}
.form-help {
  color: var(--text-4);
  font-size: 11px;
  margin-top: 6px;
}
.media-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.media-option {
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--text-2);
  padding: 7px;
  cursor: pointer;
  text-align: center;
}
.media-option.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,.32);
}
.media-option img,
.media-option video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 6px;
}
.media-option span {
  display: block;
  font-size: 11px;
}
.media-option--video {
  opacity: .62;
  cursor: default;
}
.radio-group { display: flex; gap: 14px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
}
.auth-form .btn-gold {
  margin-top: 8px;
  padding: 12px 20px;
  font-weight: 700;
}
.auth-link { font-size: 13px; color: var(--text-3); text-align: center; margin-top: 16px; }
.auth-link a { color: var(--gold); }
.auth-layout--wide {
  align-items: flex-start;
  padding-top: 42px;
}
.auth-card--wide {
  max-width: 760px;
}
.phone-input {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 8px;
}
.phone-prefix {
  background: rgba(201,168,76,.14);
  border: 0.5px solid rgba(201,168,76,.35);
  border-radius: var(--radius-sm);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.checkbox-card {
  border: 0.5px solid var(--border-2);
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-2);
  font-size: 13px;
  cursor: pointer;
}
.checkbox-card input {
  accent-color: var(--gold);
}
.checkbox-card.is-disabled {
  opacity: .35;
  cursor: not-allowed;
}
.additional-price-input {
  width: 100%;
  background: var(--surface-2);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 9px 10px;
  font-size: 13px;
}
.address-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.address-results {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}
.address-result {
  border: 0.5px solid var(--border-2);
  background: var(--surface-2);
  color: var(--text-2);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
}
.address-result:hover,
.address-result.is-active {
  border-color: rgba(201,168,76,.45);
  color: var(--text);
}
.address-map-wrap {
  height: 300px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
#registro-address-map {
  width: 100%;
  height: 100%;
}
.address-map-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 500;
  background: rgba(10,10,10,.88);
  border: 0.5px solid var(--border);
  border-radius: 7px;
  color: var(--text-2);
  padding: 7px 10px;
  font-size: 12px;
}
.confirmed-addresses {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: rgba(255,255,255,.02);
}
.confirmed-addresses-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.confirmed-addresses-head h3 {
  font-size: 14px;
}
.confirmed-addresses-list {
  display: grid;
  gap: 8px;
}
.empty-addresses {
  color: var(--text-4);
  font-size: 13px;
}
.confirmed-address {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  background: var(--surface-2);
}
.confirmed-address strong,
.confirmed-address span {
  display: block;
}
.confirmed-address strong {
  font-size: 13px;
  color: var(--text-2);
}
.confirmed-address span {
  font-size: 11px;
  color: var(--text-4);
}
.profile-registration-summary {
  border: 0.5px solid rgba(201,168,76,.24);
  background: rgba(201,168,76,.08);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 16px;
}
.profile-registration-summary strong,
.profile-registration-summary span {
  display: block;
}
.profile-registration-summary strong {
  color: var(--gold);
  margin-bottom: 2px;
}
.profile-registration-summary span {
  color: var(--text-3);
  font-size: 12px;
}
.submit-loading {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,10,10,.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.submit-loading.is-active {
  display: flex;
}
.submit-loading-card {
  width: min(360px, 100%);
  background: var(--gold);
  color: #000;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.submit-loading-card img {
  height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  animation: loadingPulse 1.1s ease-in-out infinite;
}
.submit-loading-card p {
  font-size: 22px;
  font-weight: 600;
}
@keyframes loadingPulse {
  0%, 100% { transform: scale(1); opacity: .82; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes buttonTextZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.16); }
}

@keyframes heroLogoSpin {
  from { transform: perspective(900px) rotateY(0deg); }
  to { transform: perspective(900px) rotateY(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo {
    animation: none;
    transform: none;
  }
}

.video-checkout {
  width: min(1080px, calc(100% - 32px));
  margin: 40px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}
.video-checkout-main h1 {
  font-size: 34px;
  margin: 14px 0 8px;
}
.video-sub,
.video-demo-note {
  color: var(--text-3);
}
.video-payment-card {
  margin-top: 20px;
  display: grid;
  gap: 14px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 18px;
}
.video-flow-steps,
.video-room-progress {
  display: grid;
  gap: 10px;
}
.video-room-progress {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}
.video-flow-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.02);
}
.video-room-progress .video-flow-step {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.05);
}
.video-flow-step i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  font-size: 18px;
}
.video-flow-step.is-active i {
  animation: videoPulse 1.15s ease-in-out infinite;
}
.video-flow-step.is-done i {
  background: rgba(35,170,108,.16);
  color: #23AA6C;
}
.video-flow-step.is-error i {
  background: rgba(210,70,70,.14);
  color: #D24646;
}
.video-flow-step strong,
.video-flow-step span {
  display: block;
}
.video-flow-step strong {
  font-size: 13px;
}
.video-flow-step span {
  color: var(--text-3);
  font-size: 12px;
}
@keyframes videoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.07); opacity: .7; }
}
.video-provider {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
.video-provider strong,
.video-provider span {
  display: block;
}
.video-provider span {
  color: var(--text-3);
  font-size: 13px;
}
.video-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid var(--border);
  padding-top: 12px;
}
.video-price-row span {
  color: var(--text-3);
}
.video-email-form {
  display: grid;
  gap: 10px;
  border-top: 0.5px solid var(--border);
  padding-top: 14px;
}
.video-email-form label {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}
.video-email-form input {
  width: 100%;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  background: #0A0A0A;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}
.video-room-page {
  min-height: calc(100vh - 72px);
  background: #050505;
  color: var(--gold);
  padding: 18px;
}
.video-room-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}
.video-eyebrow {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.video-room-top h1 {
  font-size: 24px;
}
.video-timer {
  min-width: 82px;
  text-align: center;
  border: 0.5px solid rgba(201,168,76,.45);
  border-radius: var(--radius-sm);
  color: var(--gold);
  padding: 9px 12px;
  font-size: 22px;
  font-weight: 700;
}
.video-stage {
  height: min(68vh, 720px);
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
}
.video-main-tile,
.video-self-tile {
  position: relative;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: #111;
}
.video-main-tile video,
.video-self-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--text-3);
  text-align: center;
}
.video-placeholder i {
  color: var(--gold);
  font-size: 38px;
}
.video-placeholder strong {
  color: var(--gold);
}
.video-self-tile {
  height: 180px;
  align-self: end;
}
.video-self-tile span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  color: var(--gold);
  font-size: 12px;
}
.video-room-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
.video-room-actions .is-off {
  opacity: .55;
}
.video-demo-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
}

@media (max-width: 820px) {
  .video-checkout {
    grid-template-columns: 1fr;
  }
  .video-room-progress {
    grid-template-columns: 1fr;
  }
  .video-stage {
    height: 62vh;
    grid-template-columns: 1fr;
  }
  .video-self-tile {
    width: 132px;
    height: 104px;
    position: absolute;
    right: 26px;
    bottom: 112px;
  }
}

/* ── ERROR PAGES ─────────────── */
.error-page {
  text-align: center;
  padding: 80px 24px;
}
.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201,168,76,.2);
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h1 { margin-bottom: 10px; }
.error-page p { color: var(--text-3); margin-bottom: 24px; }

/* ── FOOTER ──────────────────── */
.footer {
  border-top: 0.5px solid var(--border);
  padding: 40px 0 0;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 40px;
}
.footer-logo { font-size: 18px; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: var(--text-4); }
.footer-col h4 { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 7px;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding: 14px 24px;
  font-size: 12px;
  color: var(--text-4);
  text-align: center;
}

/* ── RESPONSIVE ──────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .pasos-grid { grid-template-columns: 1fr; }
  .perfil-layout { grid-template-columns: 1fr; }
  .perfil-aside { position: static; }
  .solicitud-layout { grid-template-columns: 1fr; }
  .solicitud-aside { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  .hero-title { font-size: 1.72rem; }
  .hero {
    min-height: calc(100svh - 56px);
    padding: 0 16px 22px;
  }
  .hero-left {
    margin-top: 22px;
  }
  .hero-logo {
    width: min(230px, 72vw);
    margin: -6px auto -44px;
  }
  .auth-layout {
    align-items: flex-start;
    min-height: calc(100svh - 56px);
    padding: 20px 14px 28px;
  }
  .auth-card {
    padding: 26px 18px 22px;
    border-radius: 12px;
  }
  .auth-logo-img {
    width: min(230px, 72vw);
    height: auto;
  }
  .auth-title {
    font-size: 1.65rem;
  }
  .auth-layout--wide {
    padding-top: 20px;
  }
  .auth-card--wide {
    max-width: 100%;
  }
  .phone-input {
    grid-template-columns: 74px 1fr;
  }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost,
  .hero-actions .btn-filter {
    width: 100%;
  }
  .hero-actions--split { grid-template-columns: 1fr; }
  .map-container { height: 360px; }
  .map-status {
    left: 10px;
    right: 58px;
    align-items: flex-start;
  }
  .section { padding: 0 16px 32px; }
  .masajistas-grid { grid-template-columns: 1fr 1fr; }
  .filter-shell {
    padding: 14px 12px 28px;
  }
  .filter-head {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .filter-head-copy h1 {
    font-size: 1.25rem;
  }
  .filter-head .btn-filter {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
  .filter-head .btn-filter i {
    font-size: 18px;
  }
  .filter-head .btn-filter {
    font-size: 0;
  }
  .filter-panel {
    margin-left: -12px;
    margin-right: -12px;
    padding: 12px;
  }
  .filter-panel-row {
    align-items: stretch;
    flex-direction: column;
  }
  .filter-status {
    width: 100%;
  }
  .filter-select-wrap {
    width: 100%;
  }
  .filter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .filter-card {
    border-radius: 12px;
  }
  .filter-card-media {
    aspect-ratio: 1 / 1.2;
  }
  .filter-card-body {
    padding: 9px;
  }
  .filter-card-title {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .filter-live {
    display: none;
  }
  .filter-card-tags {
    min-height: 0;
    max-height: 25px;
    overflow: hidden;
    margin: 8px 0;
  }
  .filter-card-actions {
    grid-template-columns: 1fr;
  }
  .filter-card-actions .btn-ghost {
    display: none;
  }
  .filter-card-actions .btn-gold {
    min-height: 36px;
    padding: 8px 6px;
    font-size: 12px;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .confirm-actions { flex-direction: column; }
  .nearby-map-shell {
    height: calc(100vh - 56px);
    min-height: 620px;
  }
  .nearby-map-topbar {
    top: 10px;
    left: 10px;
    right: 10px;
  }
  .nearby-carousel {
    top: 78px;
    left: 10px;
    right: 10px;
  }
  .nearby-card { flex-basis: 210px; }
  .nearby-detail {
    align-items: start;
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
    place-items: start center;
  }
  .nearby-detail-card {
    width: 100%;
    max-height: none;
    min-height: 0;
    display: block;
    overflow: visible;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .nearby-detail-media {
    overflow: visible;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .nearby-media-viewer {
    height: min(54dvh, 390px);
    min-height: 250px;
  }
  .nearby-media-panel {
    grid-auto-columns: 92px;
  }
  .nearby-media-thumb {
    width: 92px;
    height: 76px;
  }
  .nearby-detail-body {
    overflow: visible;
    padding: 18px 16px 16px;
  }
  .nearby-detail-heading {
    padding-right: 34px;
  }
  .nearby-detail-heading h2 {
    font-size: 21px;
  }
  .nearby-detail-actions {
    grid-template-columns: 1fr;
  }
}

/* ── ONLYSTREAM BRAND ─────────────────────────────────────── */
.brand-onlystream {
  --gold: #0EA5A4;
  --gold-light: #38BDF8;
  --black: #F6F8FB;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;
  --surface-3: #E8EEF5;
  --border: #DDE5EE;
  --border-2: #C9D6E4;
  --text: #122033;
  --text-2: #334155;
  --text-3: #64748B;
  --text-4: #94A3B8;
  --green: #22C55E;
}

.brand-onlystream .navbar {
  background: rgba(255,255,255,.94);
  border-bottom-color: rgba(15,23,42,.1);
  backdrop-filter: blur(14px);
}

.brand-onlystream .logo-img,
.brand-onlystream .hero-logo,
.brand-onlystream .auth-logo-img,
.brand-onlystream .sidebar-logo-img {
  filter: none;
}

.brand-onlystream .hero {
  background:
    linear-gradient(180deg, rgba(246,248,251,.72), rgba(246,248,251,.96)),
    url('/img/fondo-1.jpg') center 42% / cover no-repeat;
}

.brand-onlystream .hero::before,
.brand-onlystream .hero-logo {
  animation: none;
}

.brand-onlystream .hero::before {
  opacity: .32;
  background:
    linear-gradient(180deg, rgba(255,255,255,.2), rgba(246,248,251,.8)),
    radial-gradient(circle at 50% 12%, rgba(14,165,164,.22), transparent 42%);
}

.brand-onlystream .hero-logo {
  width: min(300px, 66vw);
  margin: 4px auto 18px;
}

.brand-onlystream .hero-title {
  max-width: 780px;
  margin: 0 auto 24px;
  color: #122033;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  text-shadow: none;
}

.brand-onlystream .hero-actions--split .btn-gold {
  background: linear-gradient(135deg, #0EA5A4, #2563EB);
  color: #fff;
  box-shadow: 0 18px 46px rgba(37,99,235,.22);
}

.brand-onlystream .hero-actions--split .btn-filter {
  background: #fff;
  color: #122033;
  border-color: rgba(15,23,42,.14);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.brand-onlystream .btn-filter {
  background: #2563EB;
  color: #fff;
}

.brand-onlystream .btn-gold {
  color: #fff;
}

.brand-onlystream .auth-layout,
.brand-onlystream .legal-page {
  background:
    linear-gradient(180deg, rgba(246,248,251,.96), rgba(226,242,248,.88)),
    url('/img/fondo-3.jpg') center / cover no-repeat;
}

.brand-onlystream .auth-card,
.brand-onlystream .legal-shell,
.brand-onlystream .filter-panel,
.brand-onlystream .filter-card,
.brand-onlystream .nearby-detail-card {
  background: rgba(255,255,255,.94);
  border-color: rgba(15,23,42,.12);
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
}

.brand-onlystream .footer {
  background: #0F172A;
  color: #E2E8F0;
}

.brand-onlystream .footer-tagline,
.brand-onlystream .footer a,
.brand-onlystream .footer-bottom {
  color: #CBD5E1;
}
