/* ============================================================
   La noche suelta / Petunia — mobile-first, elegante.
   PALETA: variables de marca de la empresa (domopaco_company_colours),
   inyectadas por base.html en :root. Aquí solo los DEFAULTS de respaldo
   — no hardcodear colores de marca en las reglas: usar var(--brand*).
   TIPOGRAFÍA: la jerarquía la dan el TAMAÑO y el COLOR, no la negrita.
   Nada por encima de 600. Nunca 700/800.
   ============================================================ */
:root {
  /* defaults (los pisa el <style> de base.html con los de la empresa) */
  --brand: #2dccd3;
  --brand-dark: #1f8d93;
  --brand-rgb: 45, 204, 211;
  --accent: #ffde21;
  --ink: #202020;
  --bg: #f7f8f7;

  /* derivados neutros */
  --muted: #6f7680;
  --line: rgba(32, 35, 40, 0.10);
  --line-soft: rgba(32, 35, 40, 0.06);
  --card: #ffffff;
  --tint: rgba(var(--brand-rgb), 0.07);
  --radius: 14px;
  --shadow: 0 1px 3px rgba(20, 30, 25, 0.05), 0 6px 18px rgba(20, 30, 25, 0.05);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: none; opacity: .82; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-weight: 500; letter-spacing: -0.015em; }

/* ---------- cabecera / pie ---------- */
.site-head {
  background: var(--hd-bg, #ffffff);
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  position: sticky; top: 0; z-index: 500;
}
.hd {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0 1rem 0 0;
}
.hd-brand { display: flex; align-items: center; gap: .55rem; flex: none; color: var(--ink); min-width: 0; }
.hd-brand:hover { text-decoration: none; opacity: .85; }
.hd-logo { height: 80px; width: auto; display: block; margin-left: .4rem; }
.hd-brand-txt { color: var(--muted); font-size: .8rem; white-space: nowrap; }
.hd-brand-txt b { font-weight: 500; color: var(--brand-dark); }

.hd-right { display: flex; align-items: center; gap: 1rem; flex: none; }
.hd-contact { display: flex; align-items: flex-start; gap: 1.1rem; }
.hd-c { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: .76rem; font-weight: 500; line-height: 1; white-space: nowrap; color: var(--ink); }
.hd-c svg { width: 19px; height: 19px; color: var(--ink); }

.hd-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 42px; height: 36px; padding: 0 9px; flex: none; cursor: pointer;
  background: rgba(0, 0, 0, .05); border: 1px solid rgba(0, 0, 0, .2); border-radius: 8px;
}
.hd-burger:hover { background: rgba(0, 0, 0, .1); }
.hd-burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

.hd-panel {
  display: none; position: absolute; right: 1rem; top: 100%;
  min-width: 190px; flex-direction: column; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 12px 28px rgba(20, 30, 25, .12); padding: .35rem 0; margin-top: .35rem; z-index: 510;
}
.site-head.open .hd-panel { display: flex; }
.hd-panel a { padding: .7rem 1.15rem; color: var(--ink); font-size: .92rem; }
.hd-panel a:hover { background: var(--tint); color: var(--brand-dark); }

/* viewport más estrecho que la caja de 720px: el logo ya no va a ras del borde
   de pantalla — margencito IGUAL arriba/abajo/izquierda (petición usuario) */
@media (max-width: 719px) {
  .hd-logo { height: 60px; }
}
@media (max-width: 560px) {
  .hd-c span { display: none; }
}

/* anclas del menú: compensar la cabecera sticky para no quedar tapadas */
html { scroll-behavior: smooth; }
#donde, #fincas, #fechas, #suscribirse { scroll-margin-top: 96px; }

.wrap { max-width: 720px; margin: 0 auto; padding: 1rem 1rem 1.6rem; }

.site-foot {
  max-width: 720px; margin: 0 auto; padding: 1.3rem 1rem 2.2rem;
  color: var(--muted); font-size: .82rem; text-align: center;
  border-top: 1px solid var(--line-soft);
}
.site-foot a { color: var(--muted); }
.foot-by { margin-top: .45rem; opacity: .75; font-size: .74rem; }
.foot-by a { color: var(--muted); }
.tg-mini { width: 13px; height: 13px; vertical-align: -2px; margin-right: .28rem; fill: #229ED9; }

/* ---------- hero ---------- */
.hero { text-align: center; padding: .9rem 0 .8rem; }
.hero h1 {
  font-size: 1.75rem; line-height: 1.2; margin: .1rem 0 .5rem;
  color: var(--ink);
}
.hero p { color: var(--muted); margin: 0 auto; font-size: 1rem; max-width: 30rem; }
.back-link { display: inline-block; font-size: .85rem; margin-bottom: .5rem; color: var(--muted); }

.count-pill {
  display: inline-block; margin-top: .6rem;
  background: var(--tint); color: var(--brand-dark);
  padding: .3rem .85rem; border-radius: 999px;
  font-size: .88rem; font-weight: 500;
}
.count-pill.zero { background: var(--line-soft); color: var(--muted); }

/* ---------- facetas ---------- */
.facet {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.1rem; margin: 1.1rem 0;
}
.facet-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: .6rem; margin-bottom: .85rem; flex-wrap: wrap;
}
.facet-head h2 {
  margin: 0; font-size: .78rem; text-transform: uppercase;
  letter-spacing: .09em; font-weight: 500; color: var(--muted);
}
.chip {
  border: 1px solid var(--line); background: transparent; color: var(--muted);
  border-radius: 999px; padding: .3rem .75rem; font-size: .8rem; font-weight: 400;
  cursor: pointer; transition: all .14s ease; font-family: inherit;
}
.chip:hover { border-color: var(--brand); color: var(--brand-dark); }
.chip.is-on {
  background: var(--tint); border-color: transparent; color: var(--brand-dark);
  font-weight: 500;
}

/* ---------- mapa ---------- */
.map {
  height: 230px; border-radius: 10px; overflow: hidden; margin-bottom: 1rem;
  border: 1px solid var(--line-soft); background: #eef1ef; z-index: 1;
}
.leaflet-container { font: inherit; }
.finca-pin-wrap { background: none; border: none; }
.finca-pin {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 500;
  border: 2px solid #fff; box-shadow: 0 1px 5px rgba(0,0,0,.28);
  transition: transform .12s ease, background .15s ease;
}
.finca-pin b { font-weight: 500; }
.finca-pin-label {
  position: absolute; top: 29px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: .66rem; font-weight: 400; color: var(--ink);
  background: rgba(255,255,255,.82); padding: 0 .25rem; border-radius: 3px;
}
.finca-pin-wrap.is-on .finca-pin { background: var(--brand-dark); transform: scale(1.22); }
.finca-pin-wrap.is-off { opacity: .4; }

/* ---------- badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.badge {
  display: flex; align-items: center; gap: .55rem; cursor: pointer;
  border: 1px solid var(--line); background: var(--card); border-radius: 11px;
  padding: .28rem .7rem .28rem .28rem; font-size: .88rem; color: var(--ink);
  font-weight: 400; font-family: inherit;
  transition: border-color .14s ease, background .14s ease, opacity .14s ease;
}
.badge:hover { border-color: var(--brand); }
.badge.is-on {
  border-color: var(--brand); background: var(--tint);
}
.badge.is-empty { opacity: .35; }
.badge-photo {
  width: 40px; height: 40px; border-radius: 8px; flex: none;
  background: var(--line-soft); background-size: cover; background-position: center;
}
.badge-txt { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.badge-txt b { font-weight: 500; }
.badge-count {
  display: inline-block; min-width: 1rem; text-align: center;
  color: var(--muted); font-size: .72rem; font-weight: 400;
  margin-left: .3rem;
}
.badge.is-on .badge-count { color: var(--brand-dark); }
.date-badge { padding: .42rem .75rem; }
.date-badges { gap: .45rem; }

/* ---------- resultados ---------- */
.results { margin-top: 1.6rem; }
.results-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: .7rem; color: var(--muted); font-size: .88rem;
}
#results-count { color: var(--ink); font-weight: 500; }
.results-list-link { font-size: .82rem; color: var(--muted); }
.opps { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.opps > .offer-card, .opps > .opp-card { flex: 0 1 100%; min-width: 0; }
@media (min-width: 620px) {
  .opps > .offer-card, .opps > .opp-card { flex-basis: calc(50% - .4rem); }
  .opps .offer-photo { width: 96px; }
  .opps .offer-side, .opps .opp-side { min-width: 82px; padding-left: .55rem; padding-right: .55rem; }
}

.offer-card, .opp-card {
  display: flex; align-items: stretch; background: var(--card);
  border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none; color: var(--ink);
  transition: transform .1s ease, box-shadow .14s ease;
}
.offer-card:hover, .opp-card:hover {
  transform: translateY(-1px); text-decoration: none;
  box-shadow: 0 2px 6px rgba(20,30,25,.06), 0 10px 26px rgba(20,30,25,.08);
}
.offer-photo {
  width: 100px; flex: none; background-size: cover; background-position: center;
  background-color: var(--line-soft);
}
.offer-photo-empty { background: linear-gradient(140deg, var(--tint), rgba(var(--brand-rgb), .22)); }
.offer-body, .opp-main {
  padding: .8rem .9rem; flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: .1rem;
}
.offer-place, .opp-place { font-weight: 500; font-size: 1rem; color: var(--ink); }
.offer-loc, .offer-when, .opp-loc, .opp-when { font-size: .82rem; color: var(--muted); line-height: 1.4; }
.offer-side, .opp-side {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: .7rem .85rem; background: var(--tint); border-left: 1px solid var(--line-soft);
  min-width: 94px; text-align: center;
}
.offer-price, .opp-price {
  font-size: 1.32rem; font-weight: 500; color: var(--brand-dark); line-height: 1.1;
  letter-spacing: -0.02em;
}
.opp-price small { font-size: .66rem; font-weight: 400; color: var(--muted); display: block; margin-top: .15rem; }
.offer-cta, .opp-cta { margin-top: .3rem; font-size: .76rem; font-weight: 500; color: var(--brand-dark); }
/* capacidad de la cabaña en la columna del precio */
.offer-cap, .opp-cap {
  display: inline-flex; align-items: center; gap: .18rem;
  margin-top: .3rem; font-size: .74rem; color: var(--muted);
}
.offer-cap svg, .opp-cap svg { width: 13px; height: 13px; fill: currentColor; opacity: .85; }
/* rótulo "desde" encima del precio en las tarjetas de listado */
.offer-price .from, .opp-price .from {
  display: block; font-size: .62rem; font-weight: 400; color: var(--muted);
  letter-spacing: 0; line-height: 1; margin-bottom: .12rem;
}

/* ---------- vacíos / avisos ---------- */
.empty {
  text-align: center; color: var(--muted); padding: 2.4rem 1rem;
  background: var(--card); border: 1px dashed var(--line); border-radius: var(--radius);
}
.empty .big { font-size: 2rem; opacity: .8; }
.db-down { text-align: center; color: var(--muted); padding: 2rem; }
.notice {
  background: rgba(var(--brand-rgb), .06); border: 1px solid var(--line-soft);
  border-left: 2px solid var(--brand); border-radius: 8px;
  padding: .9rem 1rem; color: var(--ink); margin: 1rem 0; font-size: .92rem;
}
.notice b { font-weight: 500; }
.gone {
  text-align: center; background: var(--line-soft); color: var(--muted);
  border-radius: 8px; padding: .75rem; font-weight: 400; margin: 1rem 0; font-size: .9rem;
}

/* ---------- ficha ---------- */
.ficha-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.4rem 1.2rem; margin: 1.1rem 0;
}

/* ---------- CTA (newsletter + Telegram): el "cierre" de la página ----------
   Se separa a propósito de las cards blancas de arriba: más aire, un lavado
   suave de marca y un borde/sombra de marca para que lea como remate, no como
   una card más. Dos columnas 50/50 en pantalla ancha; apilado en móvil. */
/* separador entre las oportunidades y la suscripción / Telegram: luna colgando
   de un hilo vertical fino, con MUCHO aire (petición usuario: respiro x10) */
.cta-sep {
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  margin: 9rem auto;
}
.cta-sep::before, .cta-sep::after {
  content: ""; width: 1px; height: 7.2rem; flex: none;
  background: linear-gradient(to bottom, transparent, var(--line), transparent);
}
.cta-sep-moon { width: 24px; height: 24px; flex: none; color: var(--brand-dark); opacity: .55; }

.cta-box {
  border-radius: var(--radius); padding: 1.7rem 1.5rem; margin: 0;
  background:
    radial-gradient(130% 150% at 0% 0%, rgba(var(--brand-rgb), .12), transparent 58%),
    var(--card);
  border: 1px solid rgba(var(--brand-rgb), .28);
  box-shadow: 0 6px 26px rgba(var(--brand-rgb), .10);
}
.cta-col { min-width: 0; position: relative; }
/* QR (comparte web / canal) en la esquina superior derecha de cada columna */
.cta-qr {
  position: absolute; top: 0; right: 0; width: 56px; height: 56px;
  padding: 4px; background: #fff; border-radius: 8px; display: block;
  box-shadow: 0 1px 4px rgba(20, 30, 25, .16);
}
/* En 2 columnas, el QR de la web (col. izquierda) se separa de la raya divisoria
   lo mismo que del borde superior del bloque (padding-top 1.7rem). */
@media (min-width: 620px) {
  .cta-cols .cta-col-sub .cta-qr { right: 1.7rem; }
}
/* badge de icono al frente de cada columna (sobre / avión de Telegram) */
.cta-ic {
  width: 40px; height: 40px; border-radius: 11px; margin-bottom: .7rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--tint); color: var(--brand-dark);
}
.cta-ic svg { width: 22px; height: 22px; display: block; }
.cta-ic-tg { background: rgba(34, 158, 217, .12); color: #229ED9; }
/* apilado (móvil): el bloque Telegram se separa del de email con una línea */
.cta-cols .cta-col-tg {
  margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--line);
}
@media (min-width: 620px) {
  .cta-cols { display: grid; grid-template-columns: 1fr 1fr; }
  .cta-cols .cta-col-sub { padding-right: 1.8rem; }
  .cta-cols .cta-col-tg {
    margin-top: 0; padding-top: 0; border-top: none;
    padding-left: 1.8rem; border-left: 1px solid var(--line);
  }
}
.ficha-place { font-size: 1.45rem; font-weight: 500; color: var(--ink); margin: 0; letter-spacing: -0.02em; }
.ficha-loc { color: var(--muted); margin: .25rem 0 1.2rem; font-size: .9rem; }
.ficha-rows { margin: 1rem 0; }
.ficha-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .6rem 0; border-bottom: 1px solid var(--line-soft);
}
.ficha-row .k { color: var(--muted); font-size: .88rem; }
.ficha-row .v { font-weight: 500; }
.ficha-price { font-size: 1.8rem; color: var(--brand-dark); letter-spacing: -0.02em; }
.loc-badge {
  display: inline-block; font-family: ui-monospace, "SF Mono", Menlo, monospace;
  background: var(--tint); border-radius: 6px;
  padding: .1rem .45rem; font-weight: 500; letter-spacing: .08em; font-size: .92rem;
}

/* ---------- formularios ---------- */
.cta-box h2 { margin: 0 0 .35rem; font-size: 1.1rem; color: var(--ink); padding-right: 4.2rem; }
.cta-box p { color: var(--muted); margin: .2rem 0 1rem; font-size: .92rem; }
.field { margin: .5rem 0; }
.field input[type=text], .field input[type=email],
.field input[type=tel], .field select {
  width: 100%; padding: .78rem .85rem; font-size: 1rem; font-family: inherit;
  border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--tint); }

/* ---------- Checkout F3 (form comprador / pago / gracias) ---------- */
/* Cabecera de ficha/checkout: título a la izquierda + FOTO en miniatura a la
   derecha (pequeña y elegante, no un hero — decisión del usuario 2026-07-22) */
.ficha-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: .6rem;
}
.ficha-head-txt { min-width: 0; }
.ficha-head .ficha-loc { margin-bottom: 0; }
.ficha-thumb {
  width: 108px; height: 108px; object-fit: cover; flex: none;
  border-radius: 14px; box-shadow: 0 2px 10px rgba(0, 0, 0, .14);
}
@media (max-width: 480px) { .ficha-thumb { width: 86px; height: 86px; } }
/* entrada / salida / noches / aforo en UNA fila (ficha unificada) */
.stay-row {
  display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin: 1.1rem 0 1.2rem;
  padding: .95rem 0; border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stay-cell { flex: 1 1 auto; min-width: 5rem; display: flex; flex-direction: column; gap: .12rem; }
.stay-cell .k { color: var(--muted); font-size: .75rem; }
.stay-cell .v { font-weight: 500; font-size: .92rem; letter-spacing: -0.01em; }
.pay-total { margin: .2rem 0 1rem; color: var(--muted); font-size: .95rem; }
.pay-total .ficha-price { font-size: 1.5rem; color: var(--brand-dark); margin-left: .35rem; }
.pax-hint-bad { color: #b3261e; }

.buy-form { margin-top: .3rem; }
.buy-form .field label {
  display: block; font-size: .82rem; color: var(--muted); margin-bottom: .3rem;
}
.pax-row { display: flex; gap: .8rem; }
.pax-row .field { flex: 1; }
.pax-hint { font-size: .78rem; color: var(--muted); margin: -.1rem 0 .5rem; }
.check-row {
  display: flex; align-items: flex-start; gap: .55rem; font-size: .85rem;
  color: var(--muted); margin: .7rem 0 1rem; line-height: 1.45;
}
.check-row input { margin-top: .18rem; flex: none; }
.check-row a { color: var(--brand-dark); }
.err-box {
  background: rgba(179, 38, 30, .07); border: 1px solid rgba(179, 38, 30, .25);
  border-radius: 9px; padding: .6rem .8rem .6rem 1.5rem; margin: .5rem 0 1rem;
  color: #8a1c16; font-size: .86rem;
}
.err-box ul { margin: 0; padding-left: .5rem; }
.pay-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: .6rem; }

/* aviso "no reembolsable" en la pantalla de compra */
.norefund {
  font-size: .82rem; color: var(--ink); line-height: 1.45;
  background: rgba(179, 38, 30, .06); border: 1px solid rgba(179, 38, 30, .18);
  border-radius: 9px; padding: .55rem .75rem; margin: .2rem 0 .9rem;
}
.norefund b { color: #8a1c16; }

/* modal (condiciones / privacidad, sin nueva ventana) */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 15, 12, .5); }
.modal-box {
  position: relative; background: var(--card); border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3); max-width: 30rem; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 1.6rem 1.5rem;
}
.modal-x {
  position: absolute; top: .5rem; right: .75rem; background: none; border: 0;
  font-size: 1.7rem; line-height: 1; color: var(--muted); cursor: pointer;
}
.modal-box h2 { margin: 0 0 .8rem; font-size: 1.2rem; }
.modal-box h3 { margin: 1.1rem 0 .3rem; font-size: 1rem; }
.modal-box p { font-size: .9rem; color: var(--muted); line-height: 1.55; margin: .3rem 0; }
.modal-norefund {
  background: rgba(179, 38, 30, .07); border: 1px solid rgba(179, 38, 30, .25);
  color: #8a1c16; border-radius: 9px; padding: .7rem .85rem; font-size: .9rem;
  line-height: 1.5; margin-bottom: 1rem;
}
.modal-list { margin: 0; padding-left: 1.1rem; color: var(--ink); font-size: .9rem; line-height: 1.55; }
.modal-list li { margin-bottom: .4rem; }
.modal-box .btn { margin-top: 1.2rem; }

/* Aviso del mini-refresco (opp-live.js) cuando el form está a medio rellenar */
.live-note {
  background: var(--tint); border: 1px solid var(--brand);
  border-radius: 9px; padding: .55rem .8rem; margin-bottom: .8rem;
  font-size: .86rem; color: var(--ink);
}
.live-note-bad {
  background: rgba(179, 38, 30, .07); border-color: rgba(179, 38, 30, .35);
  color: #8a1c16;
}

.gracias-card { text-align: center; padding: 2.4rem 1.6rem; }
.gr-spinner {
  width: 44px; height: 44px; margin: 0 auto 1.1rem; border-radius: 50%;
  border: 4px solid var(--line-soft, #eee); border-top-color: var(--brand);
  animation: gr-spin .8s linear infinite;
}
@keyframes gr-spin { to { transform: rotate(360deg); } }
.gr-check {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 1.9rem; line-height: 56px;
}
.gr-check-soft { background: var(--accent, #ffde21); color: #333; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn {
  display: inline-block; width: 100%; text-align: center; cursor: pointer;
  padding: .8rem 1rem; font-size: .98rem; font-weight: 500; border: none;
  border-radius: 9px; background: var(--brand); color: #fff; font-family: inherit;
  transition: background .14s ease, opacity .14s ease;
}
.btn:hover { background: var(--brand-dark); text-decoration: none; }
.btn:disabled { opacity: .55; cursor: default; }
.btn-tg { background: #229ED9; margin-top: .55rem; }
.btn-tg:hover { background: #1c88ba; }
.btn-outline {
  background: transparent; color: var(--brand-dark); border: 1px solid var(--brand);
}
.btn-outline:hover { background: var(--tint); }
.legal-check { font-size: .78rem; color: var(--muted); margin: .55rem 0; line-height: 1.45; }
.legal-check a { color: var(--brand-dark); }
.form-msg { margin-top: .6rem; font-size: .9rem; min-height: 1.2rem; }
.form-msg.ok { color: var(--brand-dark); font-weight: 500; }
.form-msg.err { color: #b3261e; }

/* ---------- páginas de mensaje ---------- */
.msg-page { text-align: center; padding: 3rem 1rem; }
.msg-page .ic { font-size: 2.6rem; }
.msg-page h1 { color: var(--ink); margin: .7rem 0 .4rem; font-size: 1.5rem; }
.msg-page p { color: var(--muted); max-width: 30rem; margin: .4rem auto 1.4rem; }

@media (min-width: 560px) {
  .hero h1 { font-size: 2.05rem; }
  .offer-photo { width: 118px; }
}
