:root {
  --red: #e30613;
  --red-dark: #b9040e;
  --red-soft: #fff1f2;
  --ink: #101218;
  --ink-2: #191c24;
  --muted: #6d7280;
  --line: #e8e9ed;
  --soft: #f6f5f3;
  --soft-2: #f1f2f4;
  --white: #fff;
  --sand: #f7f2ec;
  --shadow-sm: 0 12px 34px rgba(16, 18, 24, .07);
  --shadow: 0 24px 70px rgba(16, 18, 24, .14);
  --shadow-dark: 0 30px 90px rgba(0,0,0,.30);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
::selection { background: rgba(227,6,19,.16); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(227,6,19,.22);
  outline-offset: 3px;
}
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

/* Barra superior */
.topbar {
  position: relative;
  z-index: 60;
  background: #0c0e13;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  letter-spacing: .02em;
}
.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__inner > span { color: rgba(255,255,255,.70); }
.topbar__links { display: flex; gap: 26px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: #fff; }

/* Cabecera */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(16,18,24,.06);
  backdrop-filter: blur(18px) saturate(1.15);
}
.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand__logo {
  display: block;
  width: 118px;
  height: 62px;
  object-fit: contain;
  border-radius: 8px;
}
.brand__logo--footer { width: 138px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 750;
}
.main-nav a { position: relative; padding: 30px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: var(--ink); display: block; margin: 5px 0; transition: .2s ease; }

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(227,6,19,.23);
}
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 16px 36px rgba(227,6,19,.30); }
.btn--large { min-height: 56px; padding-inline: 28px; border-radius: 15px; }
.btn--glass {
  border-color: rgba(255,255,255,.38);
  color: #fff;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.btn--glass:hover { background: #fff; color: var(--ink); }
.btn--outline-light { border-color: rgba(255,255,255,.30); color: #fff; background: rgba(255,255,255,.04); }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--outline { border-color: var(--line); background: #fff; color: var(--ink); }
.btn--outline:hover { border-color: #ffb5ba; color: var(--red); }
.btn--full { width: 100%; }

/* Hero */
.hero {
  min-height: 700px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img {
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.015);
  animation: hero-in 1.4s ease both;
}
@keyframes hero-in {
  from { transform: scale(1.055); filter: saturate(.9); }
  to { transform: scale(1.015); filter: saturate(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 70%, rgba(227,6,19,.14), transparent 26%),
    linear-gradient(90deg, rgba(8,10,15,.82) 0%, rgba(8,10,15,.64) 38%, rgba(8,10,15,.25) 66%, rgba(8,10,15,.08) 100%),
    linear-gradient(0deg, rgba(8,10,15,.30), transparent 40%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(0deg, rgba(6,7,10,.38), transparent);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; padding-block: 92px 118px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2.1px;
  font-size: 11px;
  font-weight: 950;
}
.eyebrow--light { color: #fff; opacity: .82; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(227,6,19,.6);
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .94;
  letter-spacing: -4.2px;
  text-wrap: balance;
  text-shadow: 0 2px 26px rgba(0,0,0,.18);
}
.hero h1 span { color: #ff2a36; }
.hero__lead {
  max-width: 650px;
  margin: 28px 0 34px;
  padding-left: 18px;
  border-left: 2px solid rgba(255,255,255,.48);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,.88);
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__mini-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 999px;
  padding: 13px 19px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: #24b35a; box-shadow: 0 0 0 5px rgba(36,179,90,.13); }

/* Características rápidas */
.quick-features {
  position: relative;
  z-index: 6;
  margin-top: -48px;
  background: transparent;
  border: 0;
}
.quick-features__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  overflow: hidden;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(16,18,24,.07);
  border-radius: 22px;
  box-shadow: 0 24px 66px rgba(16,18,24,.14);
  backdrop-filter: blur(14px);
}
.quick-features article {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px 26px;
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}
.quick-features article:last-child { border-right: 0; }
.quick-features article:hover { background: #fffafa; }
.feature-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid #ffd4d7;
  background: var(--red-soft);
  font-weight: 900;
}
.feature-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon--letter { font-size: 20px; }
.quick-features strong, .quick-features small { display: block; }
.quick-features strong { font-size: 14px; }
.quick-features small { color: var(--muted); margin-top: 4px; font-size: 12px; }

/* Secciones */
.section { position: relative; padding: 104px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: #0d0f14; color: #fff; }
.section-heading { margin-bottom: 42px; }
.section-heading h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  text-wrap: balance;
}
.section-heading h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 20px;
  border-radius: 99px;
  background: var(--red);
}
.section-heading--split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 52px;
}
.section-heading__text {
  position: relative;
  max-width: 520px;
  margin: 0 0 4px;
  padding: 16px 0 16px 22px;
  color: var(--muted);
  line-height: 1.72;
  border-left: 2px solid rgba(227,6,19,.24);
}
.section-heading code { color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 2px 6px; border-radius: 6px; }

/* Promociones */
#promociones {
  padding-top: 128px;
  background:
    radial-gradient(circle at 10% 10%, rgba(227,6,19,.045), transparent 26%),
    #fff;
}
.promotion-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.promotion-card {
  position: relative;
  border: 1px solid rgba(16,18,24,.07);
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  cursor: pointer;
  outline: none;
}
.promotion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.promotion-card:focus-visible { box-shadow: 0 0 0 4px rgba(227,6,19,.14), var(--shadow); border-color: rgba(227,6,19,.36); }
.promotion-card:hover { transform: translateY(-7px); box-shadow: 0 28px 74px rgba(16,18,24,.15); border-color: rgba(227,6,19,.15); }
.promotion-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eceef2;
  position: relative;
}
.promotion-card__image::after {
  content: "";
  position: absolute;
  inset: 46% 0 0 0;
  background: linear-gradient(0deg, rgba(8,9,13,.48), transparent);
  pointer-events: none;
}
.promotion-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.promotion-card:hover .promotion-card__image img { transform: scale(1.04); filter: saturate(1.04); }
.promotion-card__badge {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}

.promotion-card__status {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(14,16,21,.88);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  backdrop-filter: blur(8px);
}
.promotion-card__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3440;
  box-shadow: 0 0 0 3px rgba(255,52,64,.16);
}

.promotion-card__gallery-hint {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,16,21,.80);
  color: #fff;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}
.promotion-card__body { padding: 24px 24px 27px; }
.promotion-card__topline { display: block; }
.promotion-card h3, .promotion-card__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px,1.9vw,31px);
  line-height: 1;
  letter-spacing: -1.6px;
  font-weight: 850;
}
.promotion-card__location { color: var(--muted); margin: 10px 0 18px; line-height: 1.5; }
.promotion-card__price { color: var(--red); font-weight: 950; font-size: 25px; white-space: nowrap; letter-spacing: -.7px; margin-top: 14px; }
.promotion-card__price small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; font-size: 9px; margin-bottom: 4px; }
.promotion-card__facts { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 0; }
.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f6f6f7;
  border: 1px solid #ededf0;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 11px;
  font-weight: 750;
}
.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.card-actions .btn--details { min-width: 176px; justify-content: center; font-size: 14px; position: relative; z-index: 2; }
.card-actions__hint { color: #8a8e98; font-size: 10px; line-height: 1.4; text-align: right; max-width: 170px; }

/* Detalle de promoción */
.detail-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(227,6,19,.16), transparent 25%),
    radial-gradient(circle at 10% 78%, rgba(255,255,255,.05), transparent 24%),
    #0d0f14;
}
.detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.detail-layout { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.detail-media {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 540px;
  background: #23262e;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255,255,255,.10);
}
.detail-media::after {
  content: "";
  position: absolute;
  inset: 55% 0 0 0;
  background: linear-gradient(0deg, rgba(0,0,0,.45), transparent);
  pointer-events: none;
}
.detail-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.detail-media__badge {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: 12px 15px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.detail-copy { position: relative; }
.detail-copy::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 2px;
  width: 4px;
  height: 64px;
  border-radius: 99px;
  background: var(--red);
}
.detail-copy h2 { margin: 0; font-size: clamp(42px,5vw,66px); line-height: .95; letter-spacing: -3px; }
.detail-copy__location { margin: 16px 0 24px; color: #ff7c84; font-weight: 800; }
.detail-copy__description {
  max-width: 610px;
  color: #c8cbd4;
  line-height: 1.78;
  font-size: 16px;
  margin: 0;
}
.detail-facts { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0; }
.detail-facts .fact-chip { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.10); }
.detail-price { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 24px; }
.detail-price span { display: block; color: #aeb2bd; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 900; }
.detail-price strong { display: block; margin-top: 5px; color: #fff; font-size: 39px; letter-spacing: -1.7px; }
.detail-actions { display: flex; gap: 12px; margin-top: 27px; flex-wrap: wrap; }
.detail-gallery-trigger { cursor: pointer; }
.detail-gallery-trigger:focus-visible { outline: 3px solid rgba(255,255,255,.9); outline-offset: 5px; }
.detail-media__gallery-label {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(13,15,20,.78);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 850;
}

/* Beneficios */
.section--soft { background: #f7f7f6; }
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.benefit-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  min-height: 245px;
  box-shadow: 0 10px 28px rgba(16,18,24,.035);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .24s ease;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(227,6,19,.14); }
.benefit-card:hover::before { transform: scaleY(1); }
.benefit-card > span {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid #ffd4d7;
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 950;
}
.benefit-card h3 { margin: 23px 0 9px; font-size: 20px; letter-spacing: -.4px; }
.benefit-card p { margin: 0; color: var(--muted); line-height: 1.68; font-size: 14px; }

/* Viviendas */
#viviendas { background: #fff; }
.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafafa;
}
.filters select {
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  background: #fff;
  padding: 0 40px 0 14px;
  color: var(--ink);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--line);
}
.filter-reset {
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  padding: 0 15px;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.filter-reset:hover { color: var(--red); background: var(--red-soft); }
.table-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 52px rgba(16,18,24,.07);
}
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 780px; }
th, td { text-align: center; padding: 17px 19px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: middle; }
th { text-align: center; }
tbody td { text-align: center; }
th {
  color: rgba(255,255,255,.66);
  background: #151820;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 850;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background .18s ease; }
tbody tr:hover { background: #fff8f8; }
.status { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-weight: 800; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #20b45a; box-shadow: 0 0 0 4px rgba(32,180,90,.11); }
.table-link { border: 0; background: transparent; padding: 0; color: var(--red); font-weight: 900; white-space: nowrap; cursor: pointer; }
.table-empty { padding: 34px; text-align: center; color: var(--muted); }
.legal-note { color: var(--muted); font-size: 11px; margin: 14px 0 0; }


/* Leaflet critical layout styles: local fallback so the map keeps its grid even
   if the external Leaflet stylesheet is delayed or blocked. */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer { position: absolute; left: 0; top: 0; }
.leaflet-container { overflow: hidden; position: relative; outline-offset: 1px; font: 12px/1.5 Arial, Helvetica, sans-serif; }
.leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow { user-select: none; -webkit-user-drag: none; }
.leaflet-marker-icon, .leaflet-marker-shadow { display: block; }
.leaflet-container .leaflet-overlay-pane svg { max-width: none !important; max-height: none !important; }
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile { max-width: none !important; max-height: none !important; width: auto; padding: 0; }
.leaflet-tile { filter: inherit; visibility: hidden; }
.leaflet-tile-loaded { visibility: inherit; }
.leaflet-pane { z-index: 400; }
.leaflet-tile-pane { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane { z-index: 500; }
.leaflet-marker-pane { z-index: 600; }
.leaflet-tooltip-pane { z-index: 650; }
.leaflet-popup-pane { z-index: 700; }
.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg { z-index: 200; }
.leaflet-control { position: relative; z-index: 800; pointer-events: auto; }
.leaflet-top, .leaflet-bottom { position: absolute; z-index: 1000; pointer-events: none; }
.leaflet-top { top: 0; } .leaflet-right { right: 0; } .leaflet-bottom { bottom: 0; } .leaflet-left { left: 0; }
.leaflet-control { float: left; clear: both; }
.leaflet-right .leaflet-control { float: right; }
.leaflet-top .leaflet-control { margin-top: 10px; }
.leaflet-bottom .leaflet-control { margin-bottom: 10px; }
.leaflet-left .leaflet-control { margin-left: 10px; }
.leaflet-right .leaflet-control { margin-right: 10px; }
.leaflet-zoom-animated { transform-origin: 0 0; }
.leaflet-interactive { cursor: pointer; }
.leaflet-grab { cursor: grab; }
.leaflet-dragging .leaflet-grab, .leaflet-dragging .leaflet-grab .leaflet-interactive, .leaflet-dragging .leaflet-marker-draggable { cursor: grabbing; }
.leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-image-layer, .leaflet-pane > svg path, .leaflet-tile-container { pointer-events: none; }
.leaflet-marker-icon.leaflet-interactive, .leaflet-image-layer.leaflet-interactive, .leaflet-pane > svg path.leaflet-interactive { pointer-events: auto; }
.leaflet-bar { box-shadow: 0 1px 5px rgba(0,0,0,.45); border-radius: 6px; overflow: hidden; }
.leaflet-bar a { background: #fff; border-bottom: 1px solid #ddd; width: 30px; height: 30px; line-height: 30px; display: block; text-align: center; text-decoration: none; color: #111; }
.leaflet-bar a:last-child { border-bottom: 0; }
.leaflet-control-attribution { background: rgba(255,255,255,.86); margin: 0; padding: 0 5px; color: #333; line-height: 1.4; }
.leaflet-popup { position: absolute; text-align: center; margin-bottom: 20px; }
.leaflet-popup-content-wrapper { padding: 1px; text-align: left; border-radius: 12px; background: #fff; color: #333; box-shadow: 0 3px 14px rgba(0,0,0,.25); }
.leaflet-popup-tip-container { width: 40px; height: 20px; position: absolute; left: 50%; margin-left: -20px; overflow: hidden; pointer-events: none; }
.leaflet-popup-tip { width: 17px; height: 17px; margin: -10px auto 0; transform: rotate(45deg); background: #fff; box-shadow: 0 3px 14px rgba(0,0,0,.18); }
.leaflet-container a.leaflet-popup-close-button { position: absolute; top: 0; right: 0; border: 0; width: 24px; height: 24px; font: 16px/24px Arial, sans-serif; color: #757575; text-decoration: none; background: transparent; }

/* Mapa único */
#ubicacion { background: var(--sand); }
.combined-map-card {
  background: #fff;
  border: 1px solid rgba(16,18,24,.06);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(16,18,24,.11);
}
.promotions-map { width: 100%; height: 540px; background: #e9ecef; }
.map-fallback { margin: 0; padding: 60px 24px; text-align: center; color: var(--muted); }
.map-legend { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--line); }
.map-location-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  align-items: start;
  gap: 16px;
  padding: 24px 26px;
  background: #fff;
}
.map-location-card + .map-location-card { border-left: 1px solid var(--line); }
.map-location-card__marker {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(227,6,19,.24);
}
.map-location-card h3 { margin: 0; font-size: 21px; letter-spacing: -.5px; }
.map-location-card p:not(.eyebrow) { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.map-location-card .eyebrow { margin-bottom: 4px; font-size: 9px; }
.map-action {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
  margin-top: 2px;
}
.tuksa-map-marker-wrap { background: transparent; border: 0; }
.tuksa-map-marker {
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(16,18,24,.30);
  font-weight: 900;
  font-size: 14px;
}
.tuksa-map-marker span { transform: rotate(45deg); line-height: 1; }
.leaflet-popup-content-wrapper { border-radius: 14px; box-shadow: 0 16px 40px rgba(16,18,24,.18); }
.leaflet-popup-content { margin: 14px 16px; }
.map-popup { display: grid; gap: 5px; min-width: 190px; }
.map-popup strong { font-size: 15px; }
.map-popup span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.map-popup a { color: var(--red); font-weight: 850; font-size: 12px; margin-top: 4px; }

/* Contacto */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(227,6,19,.18), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(255,255,255,.045), transparent 22%),
    #0b0d12;
  color: #fff;
}
.contact-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(255,255,255,.02), 0 0 0 112px rgba(255,255,255,.014);
  pointer-events: none;
}
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .88fr 1.12fr; gap: 74px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(44px,5vw,66px); line-height: .96; letter-spacing: -3px; }
.contact-copy > p:not(.eyebrow) { color: #c7cad2; line-height: 1.74; max-width: 560px; font-size: 16px; }
.contact-methods { display: grid; gap: 10px; margin-top: 34px; }
.contact-methods a, .contact-methods > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  transition: background .2s ease, border-color .2s ease;
}
.contact-methods a:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }
.contact-methods span { width: 38px; height: 38px; border-radius: 12px; background: #fff; color: var(--red); display: grid; place-items: center; font-weight: 900; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: #969ba7; margin-bottom: 3px; }
.contact-form {
  background: rgba(255,255,255,.98);
  color: var(--ink);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 34px 90px rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.6);
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; font-size: 11px; font-weight: 850; color: #5d616b; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafafa;
  padding: 14px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #ff8a91; box-shadow: 0 0 0 4px rgba(227,6,19,.08); background: #fff; }
.checkbox-label { grid-template-columns: 18px 1fr !important; align-items: start; gap: 8px !important; font-weight: 650 !important; line-height: 1.45; }
.checkbox-label input { width: 16px; margin-top: 2px; }
.form-note { min-height: 18px; margin: 10px 0 0; font-size: 12px; color: var(--muted); line-height: 1.5; }
.form-note.is-error { color: var(--red); }
.form-note.is-success { color: #138a45; font-weight: 750; }
.form-note a { color: inherit; text-decoration: underline; font-weight: 850; }
.contact-form button:disabled { opacity: .65; cursor: wait; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.checkbox-label a { color: var(--red); text-decoration: underline; }

/* Pie */
.site-footer { background: #07080b; color: #fff; padding: 68px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 42px; }
.footer-grid > div:first-child p { max-width: 470px; color: #8f939c; line-height: 1.65; }
.footer-grid h4 { margin: 0 0 16px; font-size: 13px; letter-spacing: .02em; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 11px; }
.footer-grid > div:not(:first-child) a { color: #9da1aa; font-size: 14px; transition: color .2s ease; }
.footer-grid > div:not(:first-child) a:hover { color: #fff; }
.footer-bottom { margin-top: 52px; padding-top: 23px; border-top: 1px solid #24262d; display: flex; justify-content: space-between; gap: 20px; color: #747984; font-size: 11px; }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 40;
  background: #25D366;
  box-shadow: 0 15px 35px rgba(16,18,24,.24);
  border: 3px solid #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float img { width: 31px; height: 31px; filter: brightness(0) invert(1); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 38px rgba(16,18,24,.30); }

/* Galería emergente */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(5,6,9,.94); padding: 24px; overflow: auto; }
.lightbox[hidden] { display: none; }
.lightbox:not([hidden]) { display: flex; align-items: center; justify-content: center; }
.lightbox__panel {
  width: min(1180px,96vw);
  max-height: 94vh;
  display: grid;
  grid-template-rows: auto minmax(0,1fr) auto;
  gap: 14px;
  background: #111319;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
}
.lightbox__header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lightbox__header h2 { margin: 0; color: #fff; font-size: clamp(26px,3vw,38px); letter-spacing: -1.3px; }
.lightbox__header .eyebrow { margin-bottom: 5px; }
.lightbox__header-actions { display: flex; align-items: center; gap: 12px; }
.lightbox__counter { color: #c9ccd4; font-size: 13px; min-width: 52px; text-align: right; }
.lightbox__stage { position: relative; min-height: 0; display: grid; place-items: center; overflow: hidden; border-radius: 18px; background: #090a0e; }
.lightbox figure { margin: 0; width: 100%; height: 100%; min-height: 380px; display: grid; grid-template-rows: minmax(0,1fr) auto; align-items: center; justify-items: center; gap: 10px; padding: 18px 72px 14px; }
.lightbox img#lightboxImage { width: 100%; height: 100%; max-height: 62vh; object-fit: contain; border-radius: 10px; }
.lightbox__close, .lightbox__nav { border: 0; color: #fff; background: rgba(255,255,255,.10); backdrop-filter: blur(8px); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); }
.lightbox__close { width: 44px; height: 44px; border-radius: 50%; font-size: 29px; line-height: 1; }
.lightbox__nav { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); width: 48px; height: 62px; border-radius: 14px; font-size: 40px; line-height: 1; }
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }
.lightbox__thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 2px 2px 6px; scrollbar-width: thin; }
.lightbox__thumb { flex: 0 0 104px; height: 72px; border: 2px solid transparent; border-radius: 11px; overflow: hidden; padding: 0; background: #252832; cursor: pointer; opacity: .58; transition: opacity .2s,border-color .2s,transform .2s; }
.lightbox__thumb:hover { opacity: .9; transform: translateY(-1px); }
.lightbox__thumb.is-active { opacity: 1; border-color: var(--red); }
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1100px) {
  .promotion-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .promotion-card:last-child { grid-column: 1 / -1; width: min(100%, 610px); justify-self: center; }
  .map-legend { grid-template-columns: 1fr; }
  .map-location-card + .map-location-card { border-left: 0; border-top: 1px solid var(--line); }
  .nav-wrap { grid-template-columns: 132px 1fr auto; }
  .main-nav { gap: 18px; }
  .nav-cta { display: none; }
  .detail-layout, .contact-layout { gap: 46px; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 104px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .topbar__inner > span { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .topbar__links { width: 100%; justify-content: space-between; gap: 12px; }
  .nav-wrap { grid-template-columns: 1fr auto; min-height: 70px; }
  .brand__logo { width: 104px; height: 54px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 104px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 15px 14px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .hero { min-height: 650px; }
  .hero__media img { object-position: 62% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(8,10,15,.86), rgba(8,10,15,.48)); }
  .hero__content { padding-block: 72px 112px; }
  .hero h1 { letter-spacing: -3px; }
  .hero__mini-card { display: none; }
  .quick-features { margin-top: -42px; }
  .quick-features__grid { grid-template-columns: repeat(2,1fr); }
  .quick-features article:nth-child(2) { border-right: 0; }
  .quick-features article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 82px 0; }
  #promociones { padding-top: 112px; }
  .section-heading--split { display: block; }
  .section-heading__text { margin-top: 18px; }
  .promotion-grid, .detail-layout, .contact-layout { grid-template-columns: 1fr; }
  .detail-media { min-height: 400px; order: 2; }
  .detail-copy { order: 1; }
  .detail-copy::before { display: none; }
  .map-legend { grid-template-columns: 1fr; }
  .map-location-card + .map-location-card { border-left: 0; border-top: 1px solid var(--line); }
  .promotions-map { height: 440px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .promotion-card__badge { left: 14px; top: 14px; max-width: calc(100% - 124px); }
  .promotion-card__status { right: 14px; top: 14px; padding: 9px 11px; }
  .topbar__links { font-size: 10px; }
  .hero { min-height: 620px; }
  .hero__content { padding-block: 58px 108px; }
  .hero h1 { font-size: 47px; line-height: .97; letter-spacing: -2.5px; }
  .hero__lead { font-size: 15px; padding-left: 14px; margin: 23px 0 28px; }
  .hero__actions .btn { width: 100%; }
  .quick-features__grid { border-radius: 18px; }
  .quick-features article { padding: 16px 12px; gap: 10px; min-height: 88px; }
  .feature-icon { width: 38px; height: 38px; border-radius: 11px; }
  .feature-icon svg { width: 19px; height: 19px; }
  .section-heading h2 { font-size: 36px; letter-spacing: -1.8px; }
  .promotion-grid, .benefit-grid { grid-template-columns: 1fr; }
  .promotion-card { border-radius: 24px; }
  .promotion-card__body { padding: 24px; }
  .promotion-card__topline { display: block; }
  .promotion-card__price { margin-top: 16px; }
  .card-actions { align-items: stretch; flex-direction: column; }
  .card-actions .btn--details { width: 100%; }
  .card-actions__hint { max-width: none; text-align: left; }
  .detail-section { padding: 84px 0; }
  .detail-facts { display: flex; }
  .detail-media { min-height: 330px; border-radius: 22px; }
  .detail-copy h2 { font-size: 44px; letter-spacing: -2.2px; }
  .detail-price strong { font-size: 34px; }
  .detail-actions .btn { width: 100%; }
  .filters { width: 100%; margin-top: 22px; display: grid; }
  .filters select, .filter-reset { width: 100%; }
  .promotions-map { height: 360px; }
  .map-location-card { padding: 19px; }
  .contact-section { padding: 88px 0; }
  .contact-form { padding: 23px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .lightbox { padding: 8px; }
  .lightbox__panel { width: 100%; max-height: 98vh; padding: 13px; border-radius: 18px; }
  .lightbox__header { align-items: flex-start; }
  .lightbox__header h2 { font-size: 25px; }
  .lightbox__stage { min-height: 360px; }
  .lightbox figure { min-height: 350px; padding: 14px 48px 10px; }
  .lightbox img#lightboxImage { max-height: 58vh; }
  .lightbox__nav { width: 38px; height: 52px; font-size: 32px; }
  .lightbox__nav--prev { left: 5px; }
  .lightbox__nav--next { right: 5px; }
  .lightbox__thumb { flex-basis: 82px; height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* Galería de detalle responsive */
@media (max-width: 980px) {
  .detail-gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 190px; }
  .detail-gallery-item--featured { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 620px) {
  .detail-gallery-section { margin-top: 52px; }
  .detail-gallery-heading { align-items: stretch; flex-direction: column; }
  .detail-gallery-all { width: 100%; }
  .detail-gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 128px; gap: 8px; }
  .detail-gallery-item--featured { grid-column: span 2; grid-row: span 2; }
  .detail-media__gallery-label { right: 14px; bottom: 14px; }
}


/* Páginas legales */
.legal-page { background: #f6f6f4; color: var(--ink); min-height: 100vh; }
.legal-page .site-header { position: static; }
.legal-main { padding: 72px 0 96px; }
.legal-shell { max-width: 960px; }
.legal-hero { margin-bottom: 38px; }
.legal-hero .eyebrow { margin-bottom: 10px; }
.legal-hero h1 { margin: 0; font-size: clamp(38px, 6vw, 66px); line-height: .98; letter-spacing: -2.4px; }
.legal-hero p { max-width: 760px; margin: 18px 0 0; color: var(--muted); line-height: 1.7; }
.legal-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(26px, 5vw, 54px); box-shadow: 0 20px 60px rgba(16,18,24,.06); }
.legal-card h2 { margin: 34px 0 12px; font-size: 23px; letter-spacing: -.5px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: #555b66; line-height: 1.75; font-size: 15px; }
.legal-card ul { padding-left: 21px; }
.legal-card a { color: var(--red); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.legal-meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 24px 0; }
.legal-meta div { padding: 18px; border-radius: 16px; background: #f7f7f7; border: 1px solid var(--line); }
.legal-meta strong { display: block; margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.legal-meta span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.legal-back { display: inline-flex; margin-top: 26px; }
@media (max-width: 720px) { .legal-main { padding: 46px 0 70px; } .legal-meta { grid-template-columns: 1fr; } }


/* ===== Privacidad, cookies y seguridad ===== */
.privacy-banner[hidden], .privacy-modal[hidden] { display: none !important; }
.privacy-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  max-width: 1180px;
  margin: 0 auto;
  background: #101219;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.privacy-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 22px 24px;
}
.privacy-banner__eyebrow {
  margin: 0 0 7px;
  color: #ff3946;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 900;
}
.privacy-banner h2, .privacy-modal h2 { margin: 0 0 8px; line-height: 1.1; }
.privacy-banner p { margin: 0; color: rgba(255,255,255,.78); max-width: 760px; }
.privacy-banner__actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.privacy-banner .btn--outline { border-color: rgba(255,255,255,.55); background: transparent !important; color: #fff !important; }
.privacy-banner .btn--outline:hover, .privacy-banner .btn--outline:focus-visible { background: #fff !important; color: #11131a !important; border-color: #fff; }
.privacy-choice { min-width: 170px; }

.privacy-modal { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 20px; }
.privacy-modal__backdrop { position: absolute; inset: 0; background: rgba(5,7,11,.72); backdrop-filter: blur(8px); }
.privacy-modal__panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, 90vh);
  overflow: auto;
  background: #fff;
  color: #11131a;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}
.privacy-modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: #f1f2f4; color: #11131a; font-size: 1.6rem; cursor: pointer;
}
.privacy-category {
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
  padding: 18px 0; border-top: 1px solid #e8e9ed;
}
.privacy-category:first-of-type { margin-top: 22px; }
.privacy-category div { display: grid; gap: 4px; }
.privacy-category span:not(.privacy-status) { color: #626773; font-size: .92rem; }
.privacy-status {
  flex: 0 0 auto; padding: 7px 10px; border-radius: 999px;
  background: #f0f1f3; color: #5b606a; font-size: .76rem; font-weight: 800;
}
.privacy-status--on { background: #e6f8ed; color: #0a7b3b; }
.privacy-modal__note { color: #626773; font-size: .92rem; }
.privacy-modal__actions { display: flex; justify-content: flex-end; margin-top: 20px; }
.privacy-open { overflow: hidden; }
.footer-privacy-button {
  appearance: none; border: 0; background: none; color: inherit; padding: 0;
  font: inherit; text-align: left; cursor: pointer; opacity: .78;
}
.footer-privacy-button:hover, .footer-privacy-button:focus-visible { opacity: 1; text-decoration: underline; }
.form-privacy-summary {
  margin: 14px 0 10px; padding: 12px 14px; border: 1px solid #dfe1e6;
  border-radius: 12px; background: #f8f9fb; color: #555b66; font-size: .8rem; line-height: 1.45;
}
.form-privacy-summary strong { color: #15171c; }
.security-list { display: grid; gap: 14px; margin: 20px 0; padding: 0; list-style: none; }
.security-list li { padding: 15px 16px; border: 1px solid #e5e6ea; border-radius: 14px; background: #fafafb; }

@media (max-width: 760px) {
  .privacy-banner { left: 10px; right: 10px; bottom: 10px; border-radius: 18px; }
  .privacy-banner__content { grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .privacy-banner__actions { justify-content: stretch; }
  .privacy-banner__actions .btn { flex: 1 1 150px; text-align: center; }
  .privacy-modal__panel { padding: 24px 18px 20px; border-radius: 20px; }
  .privacy-category { align-items: flex-start; flex-direction: column; gap: 9px; }
}
