:root {
  --ink: #070d18;
  --panel: #121b2c;
  --panel-2: #182338;
  --line: rgba(255,255,255,.1);
  --gold: #f2c14e;
  --gold-soft: rgba(242,193,78,.16);
  --text: #eef3fb;
  --muted: #9aabc4;
  --teal: #3dd6c3;
  --display: "Space Grotesk", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
  --radius: 14px;
  --max: 1120px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.45;
}
a { color: inherit; }
.dir { min-height: 100vh; }
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; max-width: var(--max); margin: 0 auto; padding: .85rem 1.25rem;
}
.brand {
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  text-decoration: none;
}
.brand span { color: var(--gold); }
.topbar__links { display: flex; gap: .85rem; flex-wrap: wrap; font-size: .85rem; color: var(--muted); }
.topbar__links a { text-decoration: none; }
.topbar__links a:hover { color: var(--gold); }

.hero {
  position: relative; isolation: isolate;
  padding: 2rem 1.25rem 3.25rem; overflow: hidden;
  min-height: clamp(22rem, 52vh, 34rem);
  display: flex; align-items: flex-end;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.02);
}
.hero.has-photo {
  background: linear-gradient(105deg, rgba(7,13,24,.78) 0%, rgba(7,13,24,.55) 45%, rgba(7,13,24,.88) 100%);
}
.hero.has-photo,
.hero.has-photo.hero--ubeda,
.hero.has-photo.hero--jaen,
.hero.has-photo.hero--malaga,
.hero.has-photo.hero--madrid {
  background:
    linear-gradient(105deg, rgba(7,13,24,.8) 0%, rgba(7,13,24,.52) 48%, rgba(7,13,24,.9) 100%),
    var(--hero-photo) center 40% / cover no-repeat;
}

.hero__identity {
  display: flex; align-items: flex-start; gap: 1.1rem;
  margin-bottom: 1.15rem;
}
.hero__crest {
  width: clamp(108px, 18vw, 148px);
  height: auto;
  max-height: 168px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.55));
}
.hero__titles { min-width: 0; flex: 1; }
.hero__titles #city-title {
  margin: .15rem 0 .35rem;
}
.hero__moment {
  margin: 0 0 .35rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(.95rem, 2.4vw, 1.15rem);
  letter-spacing: .03em;
  color: #f6e7b4;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.hero__kicker {
  display: inline-flex; margin: 0; padding: .28rem .65rem;
  border: 1px solid rgba(242,193,78,.35); border-radius: 999px;
  font-size: .75rem; color: var(--gold); background: rgba(242,193,78,.08);
}
@media (max-width: 640px) {
  .hero__crest { width: 92px; max-height: 110px; }
  .hero__identity { gap: .75rem; }
}

.hero--ubeda {
  background:
    linear-gradient(105deg, rgba(7,13,24,.55), rgba(7,13,24,.94)),
    radial-gradient(ellipse at 85% 20%, rgba(61,214,195,.22), transparent 45%),
    linear-gradient(160deg, #163528, #070d18);
}
.hero--jaen {
  background:
    linear-gradient(105deg, rgba(7,13,24,.5), rgba(7,13,24,.95)),
    radial-gradient(ellipse at 90% 0%, rgba(242,193,78,.2), transparent 42%),
    linear-gradient(160deg, #1a2438, #070d18);
}
.hero__glow {
  position: absolute; inset: auto -10% -40% 40%; height: 70%;
  background: radial-gradient(circle, var(--gold-soft), transparent 60%);
  pointer-events: none; z-index: -1;
}
.hero__inner { max-width: var(--max); margin: 0 auto; }
.hero h1 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 5.2rem);
  line-height: .9; color: #fff;
}
.hero__sub { max-width: 36rem; margin: 0 0 1.35rem; color: #c5d0e2; font-size: 1.05rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin-bottom: 1.4rem; }
.stat { display: flex; align-items: baseline; gap: .4rem; font-family: var(--display); }
.stat strong { font-size: 1.45rem; color: var(--gold); }
.stat span { color: var(--muted); font-size: .9rem; font-family: var(--body); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .55rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .72rem 1.1rem; border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: .92rem; border: 1px solid transparent;
}
.btn--primary { background: var(--gold); color: #111; }
.btn--ghost { border-color: rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.04); }

.nl-wrap {
  max-width: min(1320px, 100%);
  width: 100%;
  margin: -2.35rem auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 3;
}
.nl {
  display: grid;
  gap: .9rem;
  padding: 1.35rem 1.25rem 1.3rem;
  background: linear-gradient(180deg, #172338 0%, var(--panel) 55%);
  border: 1.5px solid rgba(242,193,78,.42);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(242,193,78,.08),
    0 22px 60px rgba(0,0,0,.55),
    0 8px 28px rgba(242,193,78,.08);
  text-align: center;
}
@media (min-width: 760px) {
  .nl {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem 1.15rem;
    padding: 1.45rem 1.6rem 1.4rem;
  }
  .nl__label { grid-column: 1 / -1; }
  .nl__field { grid-column: 1; }
  .nl button[type="submit"] {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    min-width: 9.5rem;
  }
  .nl__examples { grid-column: 1 / -1; }
}
.nl__label {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.nl__field {
  position: relative;
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .25rem;
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}
.nl__field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: 600 clamp(1.2rem, 2.4vw, 1.55rem)/1.35 var(--display);
  letter-spacing: -0.02em;
  caret-color: var(--gold);
  position: relative;
  z-index: 2;
  text-align: center;
}
.nl__field input::placeholder { color: transparent; }
.nl__ghost {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; color: #a9bbd4;
  font: 600 clamp(1.2rem, 2.4vw, 1.55rem)/1.35 var(--display);
  letter-spacing: -0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  z-index: 1;
  padding: 0 .85rem;
}
.nl__ghost.is-hidden { opacity: 0; }
.cursor {
  display: inline-block; width: 2px; height: 1.15em; margin-left: 2px;
  background: var(--gold); vertical-align: -0.15em; animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.nl button[type="submit"] {
  border: 0;
  border-radius: 14px;
  padding: 1rem 1.7rem;
  background: var(--gold);
  color: #111;
  font: 700 1.05rem var(--display);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(242,193,78,.28);
}
.nl button[type="submit"]:hover { filter: brightness(1.05); }
.nl__examples {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: .15rem 0 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}
.nl__examples button {
  appearance: none; border: 1px solid var(--line); background: rgba(255,255,255,.03);
  color: #b7c4d8; padding: .4rem .8rem; border-radius: 999px;
  font: 500 .8rem var(--body); cursor: pointer;
}
.nl__examples button:hover, .nl__examples button.is-live {
  border-color: rgba(242,193,78,.55); color: var(--gold);
  background: rgba(242,193,78,.08);
}

.shell { max-width: var(--max); margin: 0 auto; padding: 1.75rem 1.25rem 3rem; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 1rem; margin: 0 0 .85rem;
}
.section-head h2 { margin: 0; font-family: var(--display); font-size: 1.2rem; }
.section-head p { margin: .2rem 0 0; color: var(--muted); font-size: .88rem; }

.rated {
  display: grid; gap: .85rem; grid-template-columns: 1fr; margin-bottom: 2rem;
}
@media (min-width: 800px) { .rated { grid-template-columns: 1.35fr 1fr 1fr; } }
.rated-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 220px; border: 1px solid var(--line); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: #111 center/cover no-repeat;
}
.rated-card--lg { min-height: 280px; }
.rated-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(7,13,24,.92) 100%);
}
.rated-card__body { position: relative; z-index: 1; padding: 1rem 1.05rem 1.1rem; }
.badge {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .22rem .5rem; border-radius: 999px; font-size: .72rem; font-weight: 700;
  background: var(--gold); color: #111; margin-right: .35rem;
}
.badge--cat { background: rgba(255,255,255,.1); color: #d7e0ef; text-transform: uppercase; letter-spacing: .04em; }
.badge--web { background: rgba(61,214,195,.15); color: var(--teal); }
.rated-card h3 { margin: .45rem 0 .2rem; font-family: var(--display); font-size: 1.15rem; }
.rated-card p { margin: 0; color: #b7c4d8; font-size: .88rem; }
.rated-card__cta { margin-top: .55rem; color: var(--gold); font-weight: 700; font-size: .86rem; display: inline-block; }

.filters {
  position: sticky; top: 0; z-index: 5;
  display: flex; gap: .4rem; overflow-x: auto; padding: .55rem 0 .75rem;
  margin: 0 0 1rem; background: rgba(7,13,24,.96); scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; padding: .42rem .78rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted); text-decoration: none;
  font-size: .84rem; background: rgba(18,27,44,.8); cursor: pointer;
}
.chip.is-active { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

.grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .grid { grid-template-columns: 1fr 1fr 1fr; } }
.card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(242,193,78,.4); transform: translateY(-2px); }
.card__media {
  aspect-ratio: 16/10; background: #1a2438 center/cover no-repeat;
  display: block; text-decoration: none;
}
.card__body { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.card__cat { font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.card h3 { margin: 0; font-family: var(--display); font-size: 1.05rem; }
.card h3 a { text-decoration: none; }
.card p { margin: 0; color: var(--muted); font-size: .88rem; flex: 1; }
.card__foot { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .45rem; font-size: .88rem; }
.card__foot a { text-decoration: none; color: #d5deec; }
.card__foot .web { color: var(--gold); font-weight: 700; }
.empty { color: var(--muted); }
.foot {
  text-align: center; padding: 1.5rem; color: var(--muted); font-size: .82rem;
  border-top: 1px solid var(--line);
}
.foot a { color: var(--gold); text-decoration: none; }


.hero--malaga {
  background:
    linear-gradient(105deg, rgba(7,13,24,.5), rgba(7,13,24,.95)),
    radial-gradient(ellipse at 80% 10%, rgba(56,189,248,.18), transparent 45%),
    linear-gradient(160deg, #0c2a3a, #070d18);
}
.hero--madrid {
  background:
    linear-gradient(105deg, rgba(7,13,24,.5), rgba(7,13,24,.95)),
    radial-gradient(ellipse at 70% 0%, rgba(242,193,78,.22), transparent 40%),
    linear-gradient(160deg, #2a1a18, #070d18);
}
.visit-bar {
  position: sticky; bottom: 0; z-index: 40;
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; align-items: center;
  justify-content: space-between;
  padding: .65rem 1.25rem;
  background: rgba(8,12,20,.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  font-size: .85rem;
}
.visit-bar__loc { display: flex; align-items: center; gap: .45rem; color: #d7e0ef; }
.visit-bar__flag { font-size: 1.15rem; }
.visit-bar__stats strong { color: var(--gold); font-family: var(--display); }
.visit-bar__today { color: var(--teal); margin-left: .35rem; }
.visit-bar a { color: var(--muted); text-decoration: none; font-size: .78rem; }
.visit-bar a:hover { color: var(--gold); }

.btn-style {
  border: 1px solid rgba(242,193,78,.35);
  background: rgba(242,193,78,.08);
  color: var(--gold);
  border-radius: 999px;
  padding: .4rem .85rem;
  font: 600 .82rem var(--body);
  cursor: pointer;
}
.btn-style:hover { background: rgba(242,193,78,.16); }
.style-modal[hidden] { display: none !important; }
.style-modal {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center; padding: 1rem;
}
.style-modal__backdrop {
  position: absolute; inset: 0; background: rgba(4,8,16,.72);
  backdrop-filter: blur(4px);
}
.style-modal__panel {
  position: relative; z-index: 1; width: min(34rem, 100%);
  background: #121b2c; border: 1px solid rgba(242,193,78,.28);
  border-radius: 18px; padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.style-modal__x {
  position: absolute; top: .55rem; right: .7rem;
  border: 0; background: transparent; color: var(--muted);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.style-modal__panel h2 {
  margin: 0 0 .35rem; font-family: var(--display); font-size: 1.35rem;
}
.style-modal__lead { margin: 0 0 1rem; color: var(--muted); font-size: .95rem; }
.style-modal__choices { display: grid; gap: .75rem; }
@media (min-width: 640px) {
  .style-modal__choices { grid-template-columns: 1fr 1fr; }
}
.style-choice {
  display: grid; gap: .35rem; text-align: left;
  padding: .85rem; border-radius: 14px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03); color: inherit;
}
.style-choice strong { font-family: var(--display); font-size: 1.05rem; }
.style-choice span { color: var(--muted); font-size: .82rem; line-height: 1.35; }
.style-choice.is-active, .style-choice:hover {
  border-color: rgba(242,193,78,.55);
  background: rgba(242,193,78,.08);
}
.style-choice__preview {
  display: block; height: 72px; border-radius: 10px; margin-bottom: .25rem;
}

.style-modal__choices { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .style-modal__choices { grid-template-columns: 1fr 1fr 1fr; }
}
.style-choice__preview--editorial {
  background:
    linear-gradient(135deg, rgba(7,13,24,.35), rgba(7,13,24,.7)),
    linear-gradient(160deg, #3a2a18, #1a2438);
}

.style-choice__preview--classic {
  background:
    linear-gradient(135deg, rgba(7,13,24,.15), rgba(7,13,24,.35)),
    url("/img/categories/classic/restaurante.png") center/cover;
}
.style-choice__preview--minimal {
  background: linear-gradient(135deg, #3a4a3f, #1a2430 55%, #c4a574);
}
.card__media--min, .rated-card--min { background-image: none !important; }
.cover-min--mint, .rated-card--min.cover-min--mint { background: linear-gradient(145deg, #1e3a34, #2f6b5c); }
.cover-min--rose, .rated-card--min.cover-min--rose { background: linear-gradient(145deg, #3a2430, #8a5366); }
.cover-min--slate, .rated-card--min.cover-min--slate { background: linear-gradient(145deg, #1c2430, #4a5568); }
.cover-min--sand, .rated-card--min.cover-min--sand { background: linear-gradient(145deg, #3a2e22, #a6845a); }
.cover-min--green, .rated-card--min.cover-min--green { background: linear-gradient(145deg, #163028, #2f7a4f); }
.cover-min--leaf, .rated-card--min.cover-min--leaf { background: linear-gradient(145deg, #1a3020, #4f7a3a); }
.cover-min--sky, .rated-card--min.cover-min--sky { background: linear-gradient(145deg, #1a2a3a, #3d6f8f); }
.cover-min--gold, .rated-card--min.cover-min--gold { background: linear-gradient(145deg, #2a2416, #8a7340); }
.cover-min--terracotta, .rated-card--min.cover-min--terracotta { background: linear-gradient(145deg, #2e1c18, #9a5a3c); }
.cover-min--ink, .rated-card--min.cover-min--ink { background: linear-gradient(145deg, #141820, #3a4558); }
.cover-min--blue, .rated-card--min.cover-min--blue { background: linear-gradient(145deg, #182030, #3a5a8a); }
.cover-min--neutral, .rated-card--min.cover-min--neutral { background: linear-gradient(145deg, #1a2030, #465064); }
.section-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}


.place-modal[hidden] { display: none !important; }
.place-modal {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: end center;
  padding: 1rem;
}
@media (min-width: 640px) {
  .place-modal { place-items: center; }
}
.place-modal__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.62);
}
.place-modal__panel {
  position: relative; z-index: 1; width: min(520px, 100%);
  background: var(--panel); border: 1px solid rgba(242,193,78,.28);
  border-radius: 18px; padding: 1.25rem 1.25rem 1.4rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.place-modal__x {
  position: absolute; top: .55rem; right: .7rem;
  border: 0; background: transparent; color: var(--muted);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.place-modal__cat {
  margin: 0 0 .35rem; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold);
}
.place-modal__panel h2 {
  margin: 0 0 .55rem; font-family: var(--display);
  font-size: clamp(1.35rem, 4vw, 1.75rem); line-height: 1.15;
}
.place-modal__addr { margin: 0 0 1.1rem; color: #c5d0e2; }
.place-modal__actions {
  display: flex; flex-wrap: wrap; gap: .55rem;
}
.place-modal__actions a, .place-modal__actions button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1rem; border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: .92rem; border: 1px solid transparent;
  cursor: pointer; font-family: inherit;
}
.place-modal__actions .btn-primary { background: var(--gold); color: #111; }
.place-modal__actions .btn-ghost {
  border-color: rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.04);
}
.card__foot .web {
  border: 0; background: transparent; padding: 0; cursor: pointer;
  color: var(--gold); font-weight: 700; font-size: inherit; font-family: inherit;
}
.card { cursor: pointer; }
.rated-card { cursor: pointer; }


a.card, a.rated-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
a.rated-card { display: block; }

.board-page .board-hero { max-width: var(--max); margin: 0 auto; padding: 2.25rem 1.25rem 1rem; }
.board-hero__kicker { margin: 0 0 .35rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.board-hero h1 { margin: 0 0 .65rem; font-family: var(--display); font-size: clamp(1.75rem, 4vw, 2.4rem); }
.board-hero__sub { margin: 0; max-width: 38rem; color: var(--muted); }
.board-shell { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem 3rem; display: grid; gap: 1.75rem; }
@media (min-width: 900px) { .board-shell { grid-template-columns: minmax(280px, 360px) 1fr; align-items: start; } }
.board-form-card { padding: 1.15rem; border-radius: 16px; border: 1px solid rgba(242,193,78,.28); background: var(--panel); }
.board-form-card h2 { margin: 0 0 .35rem; font-family: var(--display); font-size: 1.2rem; }
.board-form-card__lead { margin: 0 0 1rem; color: var(--muted); font-size: .92rem; }
.board-form-card label { display: grid; gap: .35rem; margin-bottom: .85rem; font-size: .85rem; color: #c5d0e2; }
.board-form-card input, .board-form-card textarea { width: 100%; padding: .7rem .75rem; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); background: #0b1220; color: var(--text); font: 500 .95rem/1.4 var(--body); }
.board-form-card .btn { width: 100%; border: 0; cursor: pointer; }
.board-msg { margin: 0 0 .75rem; font-size: .9rem; }
.board-msg--ok { color: #8fd9a8; }
.board-msg--err { color: #ff8e8e; }
.board-list { display: grid; gap: .85rem; }
.board-idea { padding: 1rem 1.1rem; border-radius: 14px; border: 1px solid rgba(255,255,255,.1); background: rgba(18,27,44,.85); }
.board-idea__top { display: flex; justify-content: space-between; gap: .75rem; }
.board-idea__top h3 { margin: 0; font-family: var(--display); font-size: 1.1rem; }
.board-idea__votes { flex: 0 0 auto; padding: .35rem .55rem; border-radius: 999px; background: rgba(242,193,78,.16); color: var(--gold); font: 700 .85rem var(--display); }
.board-idea__body { margin: .65rem 0 .85rem; color: #d5deec; font-size: .95rem; }
.board-idea__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .65rem; color: var(--muted); font-size: .85rem; }


.empleo-shell { }
.empleo-auth-form label { margin-bottom: .65rem; }
.empleo-auth-form select,
.empleo-filter select {
  width: 100%;
  padding: .65rem .7rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: #0b1220;
  color: var(--text);
  font: 500 .95rem var(--body);
}
.empleo-hr { border: 0; border-top: 1px solid rgba(255,255,255,.1); margin: 1rem 0; }
.empleo-filter {
  display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1rem;
}
.empleo-filter input[type="search"] {
  flex: 1 1 180px;
  padding: .65rem .75rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: #0b1220;
  color: var(--text);
}


a.job-card,
.job-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(18, 27, 44, .72);
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
a.job-card:hover {
  border-color: rgba(242, 193, 78, .45);
  background: rgba(24, 36, 58, .92);
  transform: translateY(-1px);
}
.job-card__top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: baseline;
  margin-bottom: .35rem;
}
.job-card__source {
  font: 700 .72rem/1 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}
.job-card__go {
  font-size: .78rem;
  color: var(--muted);
  white-space: nowrap;
}
.job-card__title {
  margin: 0 0 .3rem;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
}
.job-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.35;
}
.home-empleo {
  margin: 1.25rem 0 1.75rem;
}
.home-empleo .section-head {
  margin-bottom: .85rem;
}
.home-empleo__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
}
@media (max-width: 640px) {
  .home-empleo__list { grid-template-columns: 1fr; }
}



.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 13, 24, 0.58) 0%,
    rgba(7, 13, 24, 0.74) 42%,
    rgba(7, 13, 24, 0.9) 100%
  );
}
.hero.has-photo .hero__bg { z-index: 0; }
.hero.has-photo .hero__glow { z-index: 1; }
.hero__inner { position: relative; z-index: 2; }
.hero.has-photo .hero__sub,
.hero.has-photo .hero__moment,
.hero.has-photo .hero__kicker,
.hero.has-photo h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.hero__meta .stat {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}
.hero__cta { gap: .5rem; }
.hero__cta .btn { white-space: nowrap; }
@media (max-width: 720px) {
  .hero__cta .btn { font-size: .82rem; padding: .62rem .85rem; }
}


.btn--accent {
  background: linear-gradient(135deg, #c4a35a, #f2c14e);
  color: #1a1206;
  border-color: rgba(242, 193, 78, 0.55);
}

.visit-bar {
  flex-direction: column;
  align-items: stretch;
  gap: .65rem;
}
.visit-bar__top {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.1rem;
  align-items: center;
  justify-content: space-between;
}
.visit-bar__cities-label {
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.visit-bar__cities {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.visit-bar__city {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8, 14, 28, .55);
  color: #d7e0ef;
  text-decoration: none;
  font-size: .78rem;
}
.visit-bar__city:hover { border-color: rgba(242,193,78,.45); color: #fff; }
.visit-bar__city.is-current {
  border-color: rgba(242,193,78,.55);
  background: rgba(242,193,78,.12);
}
.visit-bar__city-flag { font-size: .95rem; }
.visit-bar__city-name { max-width: 7.5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.visit-bar__city-count { color: var(--gold); font-weight: 700; font-family: var(--display); }
.visit-bar__hint { margin: 0; color: var(--muted); font-size: .8rem; }

.badge--feat {
  background: rgba(242,193,78,.18);
  color: #f2c14e;
  border: 1px solid rgba(242,193,78,.35);
}
.sponsor-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin: 0 0 2rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(242,193,78,.35);
  background:
    linear-gradient(120deg, rgba(242,193,78,.16), rgba(242,193,78,.04) 45%, rgba(20,32,52,.9)),
    #121b2c;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.sponsor-banner__eyebrow {
  margin: 0 0 .25rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.sponsor-banner h3 {
  margin: 0 0 .3rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: #fff;
}
.sponsor-banner__copy p:last-child {
  margin: 0;
  color: #c4d0e2;
  font-size: .95rem;
  max-width: 42rem;
}
.sponsor-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.25rem;
  border-radius: 12px;
  background: var(--gold);
  color: #15110a;
  font: 700 0.95rem var(--display);
  text-decoration: none;
  white-space: nowrap;
}
.sponsor-banner__cta:hover { filter: brightness(1.05); }

.card__media--icon {
  background: transparent !important;
  padding: 0;
  display: block;
}
.cat-logo {
  --cat-a: #1a2030;
  --cat-b: #465064;
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.14), transparent 42%),
    linear-gradient(145deg, var(--cat-a), var(--cat-b));
}
.cat-logo__mark {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  backdrop-filter: blur(2px);
}
.cat-logo__svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  opacity: .96;
}
.cat-logo__label {
  font: 700 .78rem/1 var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.rated-card--icon {
  background-image: none !important;
  background: #121b2c;
}
.rated-card--icon::after {
  background: linear-gradient(180deg, transparent 20%, rgba(7,13,24,.88) 100%);
}
.rated-card--icon .cat-logo {
  position: absolute;
  inset: 0;
  min-height: 100%;
  z-index: 0;
}
.rated-card--icon .cat-logo__mark {
  width: 88px;
  height: 88px;
  border-radius: 22px;
}
.rated-card--icon .cat-logo__svg {
  width: 48px;
  height: 48px;
}
.style-choice__preview--icons {
  background:
    linear-gradient(145deg, #2e1c18, #9a5a3c);
  position: relative;
}
.style-choice__preview--icons::after {
  content: "";
  position: absolute;
  inset: 28% 34%;
  border-radius: 10px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
}


/* SEO crawl index (visible, no cloaking) */
.seo-crawl {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7,13,24,.96);
  padding: 2rem 1.25rem 3rem;
  color: #c5d0e2;
}
.seo-crawl__inner { max-width: 960px; margin: 0 auto; }
.seo-crawl h2, .seo-crawl h3 {
  font-family: var(--display, "Space Grotesk", sans-serif);
  color: #eef3fb;
  margin: 0 0 .65rem;
}
.seo-crawl p { margin: 0 0 .75rem; line-height: 1.5; font-size: .95rem; }
.seo-crawl__nav {
  display: flex; flex-wrap: wrap; gap: .55rem .85rem;
  margin: 0 0 1.25rem;
}
.seo-crawl__nav a { color: var(--gold, #f2c14e); text-decoration: none; font-size: .9rem; }
.seo-crawl__nav a:hover { text-decoration: underline; }
.seo-crawl__list {
  columns: 2; column-gap: 1.5rem;
  margin: 0 0 1rem; padding-left: 1.2rem;
  font-size: .88rem;
}
.seo-crawl__list li { break-inside: avoid; margin: 0 0 .35rem; }
.seo-crawl__list a { color: #d7e0ef; text-decoration: none; }
.seo-crawl__list a:hover { color: var(--gold, #f2c14e); }
.seo-crawl__canon { font-size: .82rem; color: #8b9bb4; }
@media (max-width: 720px) {
  .seo-crawl__list { columns: 1; }
}
