/* ── Captcha modal ───────────────────────────────────────────────────
   Where the Turnstile widget lives when Cloudflare wants a click from the
   visitor. Built by `contact-send.js` on the first send, shared by the
   front page and the two 360 tours. INVENTED: no board draws it. It borrows
   the tours' contact popup (`contact-popup.css`): white card, the 70 radius
   scaled to a small card, Lato, the same scrim, a Lato capital X to close.
   Most visitors never see it: `interaction-only` keeps the widget invisible
   unless the challenge turns interactive (Denis, 8-sep-2026: "en otro popup
   o similar, no dentro de la web así incrustado").
   ──────────────────────────────────────────────────────────────────── */

.fl-captcha {
  position: fixed;
  inset: 0;
  /* Above the tours' contact popup (500) — the widget belongs to the form
     inside it — and above everything on the front page. */
  z-index: 600;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.5);
  /* Not `display: none` while closed: Turnstile lays its iframe out in
     this card before the modal is ever shown, and a widget rendered into a
     `display: none` box stays 0 x 0. Hidden, out of the way, unclickable. */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.fl-captcha.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.fl-captcha,
.fl-captcha * {
  box-sizing: border-box;
}

.fl-captcha-card {
  position: relative;
  width: min(380px, 100vw - 32px);
  padding: 32px 40px 36px;
  border-radius: 36px;
  background: #fff;
  color: #000;
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

/* The X, a Lato capital as in `contact_POPUP`, with a 24-px touch box. */
.fl-captcha-close {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 24px;
  height: 29px;
  padding: 0;
  border: 0;
  background: none;
  color: #000;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.fl-captcha-title {
  margin: 0 24px 20px 0;
  font-size: 18px;
  letter-spacing: 0.04em;
}

/* Cloudflare's own box: 300 x 65 (normal) or 150 x 140 (compact when the
   card is narrower than 300). Centred; the iframe sizes itself. */
.fl-captcha-slot {
  display: flex;
  justify-content: center;
  min-height: 65px;
}
