  <style>
    @font-face {
      font-family: 'Agenda';
      src: url('../Fonts/Agenda-Light.ttf') format('truetype');
      font-weight: 300;
      font-style: normal;
    }

    :root {
      --teal-950: #12302E;
      --teal-800: #075053;
      --teal-700: #2A6560;
      --teal-600: #35786F;
      --tan-500:  #C2823F;
      --tan-300:  #DDB27E;
      --sand-100: #EDE3CD;
      --cream-50: #FAF6EE;
      --ink:      #1C2E2C;
      --ink-soft: rgba(28,46,44,0.68);
      --white:    #FFFFFF;

      --font-display: 'Agenda', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --font-body: 'Agenda', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --font-accent: 'Agenda', 'Helvetica Neue', Helvetica, Arial, sans-serif;

      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { overflow-x: hidden; }

    body {
      font-family: var(--font-body);
      font-weight: 300;
      color: var(--ink);
      background: var(--cream-50);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ══ TIDELINE (elemento firma: la marea que vuelve) ═════════════ */
    .tide {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      height: 1px;
      position: relative;
      z-index: 3;
    }
    .tide span {
      display: block;
      width: 100%;
      max-width: 1200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, currentColor, transparent);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 1.4s var(--ease);
      opacity: 0.55;
    }
    .tide.in-view span { transform: scaleX(1); }
    .tide--light { color: var(--tan-500); }
    .tide--dark  { color: rgba(255,255,255,0.6); background: var(--teal-950); }

    /* ══ REVEAL ON SCROLL ════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    }
    .reveal.in-view { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .tide span { transition: none; transform: scaleX(1); }
      html { scroll-behavior: auto; }
    }

    /* ══ HERO ════════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 78vw;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      overflow: hidden;
      padding: 0 60px;
      background: url('../imagenes/calaos/optimized/render/hero-vista-frontal.jpg') center / cover no-repeat;
    }
    .hero-mobile-photo { display: none; }
    .hero-brand {
      position: absolute;
      top: 5%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
    }
    .hero-logo {
      height: 170px;
      margin: 0 auto 12px;
      display: block;
      opacity: 0;
      animation: fadeInUp 0.9s var(--ease) 0.1s forwards;
    }
    .hero-tagline {
      font-family: var(--font-accent);
      font-weight: 300;
      font-size: 1.75rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--teal-700);
      opacity: 0;
      animation: fadeInUp 0.9s var(--ease) 0.28s forwards;
    }
    .hero-tagline strong { font-weight: 700; color: var(--teal-800); }
    .hero-kicker {
      font-family: var(--font-accent);
      font-weight: 700;
      font-size: 1.6rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--teal-800);
      padding-top: 14px;
      opacity: 0;
      animation: fadeInUp 0.9s var(--ease) 0.42s forwards;
    }

    @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    /* ── Lead form card ── */
    .lead-card {
      position: relative;
      z-index: 2;
      width: 380px;
      flex-shrink: 0;
      box-shadow: 0 24px 60px rgba(12,24,23,0.28);
      opacity: 0;
      animation: fadeInUp 1s var(--ease) 0.5s forwards;
    }
    .lead-card__head { background: var(--sand-100); padding: 26px 30px 20px; }
    .lead-card__head h2 {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 2rem;
      line-height: 1.2;
      color: var(--teal-800);
      text-align: center;
    }
    .lead-card__body {
      background: rgba(31,78,74,0.86);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 26px 30px 30px;
    }
    .lead-form { display: flex; flex-direction: column; gap: 12px; }
    .lead-form input,
    .lead-form select {
      width: 100%;
      background: var(--white);
      border: none;
      outline: none;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 0.88rem;
      padding: 14px 20px;
      border-radius: 30px;
      -webkit-appearance: none;
      appearance: none;
    }
    .lead-form input::placeholder { color: var(--ink-soft); }
    .lead-form select { color: var(--ink-soft); cursor: pointer; }

    .policy-check {
      display: flex; align-items: flex-start; gap: 9px;
      padding: 4px 6px; cursor: pointer;
    }
    .policy-check input { position: absolute; opacity: 0; width: 0; height: 0; }
    .policy-box {
      flex-shrink: 0; width: 14px; height: 14px; margin-top: 2px;
      border: 1px solid rgba(255,255,255,0.55);
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, background 0.2s;
    }
    .policy-box::after {
      content: ''; width: 7px; height: 4px;
      border-left: 1px solid var(--teal-800); border-bottom: 1px solid var(--teal-800);
      transform: rotate(-45deg) translateY(-1px); opacity: 0; transition: opacity 0.2s;
    }
    .policy-check input:checked ~ .policy-box { background: var(--sand-100); border-color: var(--sand-100); }
    .policy-check input:checked ~ .policy-box::after { opacity: 1; }
    .policy-text { font-size: 0.72rem; line-height: 1.4; color: rgba(255,255,255,0.7); }
    .policy-text a { text-decoration: underline; text-underline-offset: 2px; color: rgba(255,255,255,0.85); }

    .btn-submit {
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center; gap: 14px;
      width: 100%; margin-top: 4px;
      background: var(--sand-100); border: none; border-radius: 30px;
      padding: 15px 24px; cursor: pointer;
      transition: background 0.3s;
    }
    .btn-submit:hover { background: var(--tan-300); }
    .btn-submit .btn-text {
      font-family: var(--font-accent); font-weight: 300; font-size: 0.82rem;
      letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal-800);
    }
    .btn-submit .btn-arrow { width: 20px; height: 9px; color: var(--teal-800); transition: transform 0.3s; }
    .btn-submit:hover .btn-arrow { transform: translateX(5px); }
    .btn-submit[disabled] { opacity: 0.6; cursor: default; }

    .lead-success {
      display: none; text-align: center; padding: 30px 4px;
      font-family: var(--font-display); font-size: 1.05rem; color: var(--white);
    }
    .lead-success.is-shown { display: block; }
    .lead-form.is-hidden { display: none; }

    /* ══ SECTION SCAFFOLDING ═════════════════════════════════════════ */
    section { position: relative; }
    .sec-pad { padding: 100px 0; }
    .bg-cream { background: var(--cream-50); }
    .bg-sand  { background: var(--sand-100); }
    .bg-teal  { background: var(--teal-800); color: var(--white); }

    .eyebrow-tag {
      font-family: var(--font-accent);
      font-weight: 300;
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--tan-500);
    }

    /* ══ INTRO BANNER (panel beis sobre el final del hero) ═══════════ */
    .intro-banner {
      position: relative;
      z-index: 3;
      margin-top: -90px;
    }
    .intro-banner__inner {
      background: var(--sand-100);
      border-radius: 36px 0 36px 0;
      padding: 44px 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .intro-banner h2 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 2.6rem;
      letter-spacing: 0.04em;
      color: var(--teal-800);
      text-transform: uppercase;
    }
    .intro-banner p {
      font-size: 2rem;
      line-height: 1.3;
      color: var(--teal-800);
      text-align: center;
    }

    /* ══ CONCEPTO (centrado) ══════════════════════════════════════════ */
    .concept {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }
    .concept h2 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 2.3rem;
      line-height: 1.32;
      color: var(--teal-800);
      margin-bottom: 24px;
    }
    .concept p {
      font-size: 1.05rem;
      color: var(--ink-soft);
      max-width: 620px;
      margin: 0 auto;
    }

    /* ══ INVERSIÓN ═══════════════════════════════════════════════════ */
    .invest {
      position: relative;
      min-height: 640px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 64px 56px 100px;
      background: url('../imagenes/calaos/optimized/render/fachada-media-lateral.jpg') center / cover no-repeat;
    }
    .invest-inner {
      position: relative;
      z-index: 2;
      text-align: right;
      color: var(--white);
    }
    .invest-label {
      font-size: 2.1rem;
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 0;
    }
    .invest-amount {
      font-weight: 700;
      font-size: 3.2rem;
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .btn-invest {
      display: inline-block;
      background: var(--teal-800);
      color: var(--white);
      border: 2px solid var(--white);
      padding: 16px 40px;
      border-radius: 8px;
      font-size: 1.4rem;
      transition: background 0.3s;
    }
    .btn-invest:hover { background: var(--teal-700); }

    /* ══ BANNER "UN LUGAR PARA VOLVER" ════════════════════════════════ */
    .invest-banner {
      position: relative;
      z-index: 3;
      margin-top: -70px;
      margin-bottom: 70px;
      text-align: center;
    }
    .invest-banner .container { text-align: center; }
    .invest-banner__inner {
      display: inline-block;
      background: var(--sand-100);
      border-radius: 0 32px 0 32px;
      padding: 34px 64px;
    }
    .invest-banner__inner p {
      font-size: 1.9rem;
      text-align: center;
      color: var(--teal-800);
      white-space: nowrap;
    }

    /* ══ CONFIANZA / UBICACIÓN ═══════════════════════════════════════ */
    .trust { background: var(--white); padding-bottom: 90px; }
    .trust-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
    .trust-strip img { aspect-ratio: 4/3; object-fit: cover; width: 100%; cursor: pointer; transition: opacity 0.25s; }
    .trust-strip img:hover { opacity: 0.9; }

    /* ══ LIGHTBOX ════════════════════════════════════════════════════ */
    .lightbox {
      position: fixed; inset: 0; z-index: 300;
      background: rgba(18,48,46,0.92);
      display: flex; align-items: center; justify-content: center;
      padding: 40px;
      opacity: 0; visibility: hidden;
      transition: opacity 0.3s var(--ease), visibility 0.3s;
    }
    .lightbox.is-open { opacity: 1; visibility: visible; }
    .lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
    .lightbox-close {
      position: absolute; top: 26px; right: 34px;
      background: none; border: none; cursor: pointer;
      color: var(--white); width: 40px; height: 40px;
    }
    .trust-body { padding-top: 56px; text-align: center; }
    .trust-body p { font-size: 1.35rem; color: var(--ink-soft); max-width: 780px; margin: 0 auto 40px; }

    /* ══ ÁREAS PILL BANNER ═══════════════════════════════════════════ */
    .areas-banner {
      display: inline-block;
      background: var(--tan-500);
      color: var(--white);
      text-align: center;
      padding: 6px 30px;
      border-radius: 50px;
    }
    .areas-banner p {
      margin: 0;
      font-family: var(--font-display); font-weight: 400; font-size: 2.1rem; line-height: 1;
      letter-spacing: 0.01em; color: var(--white);
    }

    /* ══ AMENIDADES ══════════════════════════════════════════════════ */
    #amenidades { padding-top: 44px; padding-bottom: 80px; }
    .amenities-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
    .amenities-head h2 {
      font-family: var(--font-display); font-weight: 400; font-size: 2.4rem; color: var(--teal-800);
      margin-top: 14px;
    }
    .amenity-tabs { display: none; }
    .amenities-cols {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
    }
    .amenity-col h3 {
      font-family: var(--font-accent); font-weight: 300; font-size: 1.05rem;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-800);
      margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(28,46,44,0.12);
    }
    .amenity-col ul { list-style: none; }
    .amenity-col li {
      font-size: 1.2rem; color: var(--teal-800); padding: 7px 0;
    }

    .gallery-wide { margin: 0; }
    .gallery-wide img { width: 100%; height: 720px; object-fit: cover; display: block; }

    /* ══ TIPOLOGÍAS ══════════════════════════════════════════════════ */
    .typo-head { text-align: center; margin-bottom: 48px; }
    .typo-head h2 {
      font-family: var(--font-display); font-weight: 400; font-size: 2.4rem; color: var(--teal-800);
      margin-top: 14px;
    }
    .typo-tabs {
      display: flex; justify-content: center; gap: 8px; margin-bottom: 56px;
    }
    .typo-tab {
      background: none; border: 1px solid rgba(28,46,44,0.22); cursor: pointer;
      padding: 11px 30px;
      font-family: var(--font-accent); font-weight: 300; font-size: 0.8rem;
      letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
      transition: background 0.25s, color 0.25s, border-color 0.25s;
    }
    .typo-tab.is-active { background: var(--teal-800); border-color: var(--teal-800); color: var(--white); }

    .typo-panel { display: none; }
    .typo-panel.is-active { display: block; }
    .typo-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
    .typo-viewer { background: var(--white); border: 1px solid rgba(28,46,44,0.1); }
    .typo-viewer img { width: 100%; cursor: pointer; }
    .typo-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
    .typo-thumbs button {
      width: 62px; height: 62px; padding: 0; border: 1px solid rgba(28,46,44,0.15);
      background: var(--white); cursor: pointer; overflow: hidden;
      opacity: 0.6; transition: opacity 0.25s, border-color 0.25s;
    }
    .typo-thumbs button img { width: 100%; height: 100%; object-fit: contain; }
    .typo-thumbs button.is-active { opacity: 1; border-color: var(--teal-800); }

    .typo-info h3 {
      font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; color: var(--teal-800);
      margin-bottom: 6px;
    }
    .typo-tipo { display: block; font-size: 1.3em; margin-top: 4px; font-weight: 600; }
    .typo-info .typo-area {
      font-family: var(--font-accent); font-weight: 300; font-size: 0.95rem;
      color: var(--tan-500); letter-spacing: 0.04em; margin-bottom: 22px;
    }
    .typo-info ul { list-style: none; margin-bottom: 28px; }
    .typo-info li {
      font-size: 0.98rem; color: var(--ink-soft); padding: 8px 0;
      border-bottom: 1px solid rgba(28,46,44,0.08);
    }
    .typo-info li::before { content: '• '; color: var(--teal-800); }
    .typo-info p.typo-note { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 22px; }
    .btn-solid {
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--teal-800); color: var(--white);
      padding: 14px 30px;
      font-family: var(--font-accent); font-weight: 300; font-size: 0.8rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      transition: background 0.3s;
    }
    .btn-solid:hover { background: var(--teal-700); }

    /* ══ MAQUETA VIRTUAL 3D ══════════════════════════════════════════ */
    #maqueta { background: var(--white); }
    .tour-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
    .tour-head h2 {
      font-family: var(--font-display); font-weight: 400; font-size: 2.4rem; color: var(--teal-800);
      margin-top: 14px;
    }
    .tour-head p { font-size: 1.05rem; color: var(--ink-soft); margin-top: 16px; }
    .tour-frame {
      position: relative;
      width: 100%;
      height: 780px;
      background: var(--teal-950);
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(12,24,23,0.22);
    }
    .tour-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
    .tour-fallback { text-align: center; margin-top: 28px; }
    .tour-fallback a {
      display: inline-flex; align-items: center; gap: 12px;
      border: 1px solid rgba(28,46,44,0.3);
      padding: 14px 34px;
      font-family: var(--font-accent); font-weight: 300; font-size: 0.8rem;
      letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal-800);
      transition: background 0.3s, color 0.3s;
    }
    .tour-fallback a:hover { background: var(--teal-800); color: var(--white); }

    /* ══ FOOTER ══════════════════════════════════════════════════════ */
    .footer { background: var(--teal-950); color: rgba(255,255,255,0.85); text-align: center; padding: 90px 0 0; }
    .footer-logo img { width: 150px; margin: 0 auto 22px; }
    .footer-tag {
      font-family: var(--font-accent); font-weight: 300; font-size: 1.3rem;
      letter-spacing: 0.24em; text-transform: uppercase; color: var(--white);
      margin-bottom: 52px;
    }
    .footer-contact-label {
      font-family: var(--font-accent); font-weight: 300; font-size: 0.75rem;
      letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 18px;
    }
    .footer-contacts {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
      font-family: var(--font-display); font-size: 1.6rem; color: var(--white);
      margin-bottom: 48px;
    }
    .footer-contacts a { display: inline-flex; align-items: center; gap: 10px; transition: color 0.25s; }
    .footer-contacts a:hover { color: var(--tan-300); }
    .footer-contacts svg { width: 26px; height: 26px; flex-shrink: 0; }

    .footer-partners {
      display: flex; align-items: flex-start; justify-content: center; gap: 44px;
      padding-top: 40px; margin-bottom: 40px;
      border-top: 1px solid rgba(255,255,255,0.12);
      flex-wrap: wrap;
    }
    .partner-block { text-align: center; }
    .partner-block span {
      display: block; font-family: var(--font-accent); font-weight: 300; font-size: 0.62rem;
      letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.42);
      margin-bottom: 10px;
    }
    .partner-block img { height: 48px; display: block; margin: 0 auto; }
    .partner-block img[src*="alianza"] { height: 70px; }
    .partner-block img[src*="logo-pj"] { height: 30px; width: auto; margin-top: 24px; }

    .footer-disclaimer {
      max-width: 560px; margin: 0 auto; font-size: 0.72rem; line-height: 1.6;
      color: rgba(255,255,255,0.36);
    }
    .footer-bottom-bar { height: 14px; background: var(--tan-500); margin-top: 40px; }

    /* ══ RESPONSIVE ══════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .container { padding: 0 28px; }
      .hero {
        flex-direction: column; justify-content: flex-end; padding: 0 28px 0; min-height: 0;
        background: linear-gradient(180deg, #B7C9CE 0%, #CFDCDD 55%, #E3E7E1 100%);
      }
      .hero-brand { position: static; transform: none; padding-top: 48px; margin-bottom: 28px; }
      .hero-logo { height: 150px; }
      .hero-tagline { font-size: 1.3rem; }
      .hero-kicker { font-size: 1.35rem; }
      .hero-mobile-photo { display: block; width: calc(100% + 56px); margin: 32px -28px 0; }
      .lead-card { width: 100%; }
      .amenities-cols { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
      .amenity-col:last-child { grid-column: span 2; }
      .gallery-wide img { height: 460px; }
      .tour-frame { height: 560px; }
      .typo-layout { grid-template-columns: 1fr; gap: 32px; }
      .typo-info { order: 2; }
      .typo-layout > div:last-child { order: 1; }
      .sec-pad { padding: 72px 0; }
    }

    @media (max-width: 640px) {
      .container { padding: 0 20px; }
      .hero { padding: 0 20px 0; }
      .hero-brand { padding-top: 44px; margin-bottom: 24px; }
      .hero-logo { height: 118px; }
      .hero-tagline { font-size: 1.1rem; letter-spacing: 0.09em; }
      .hero-kicker { font-size: 1.1rem; }
      .hero-mobile-photo { width: calc(100% + 40px); margin: 28px -20px 0; }
      .intro-banner { margin-top: 0; }
      .intro-banner__inner { flex-direction: column; text-align: center; padding: 32px 24px; border-radius: 0; gap: 16px; }
      .intro-banner p { text-align: center; }
      .lead-card { width: 100%; }
      .lead-card__head, .lead-card__body { padding-left: 22px; padding-right: 22px; }
      .concept h2 { font-size: 1.85rem; }
      .invest { min-height: 56vh; padding: 40px 24px 80px; }
      .invest-label { font-size: 1.5rem; }
      .invest-amount { font-size: 2.2rem; }
      .btn-invest { font-size: 1.15rem; padding: 14px 30px; }
      .invest-banner { margin-top: -40px; }
      .invest-banner__inner { display: block; width: 100%; border-radius: 0 28px 0 28px; padding: 26px 20px; text-align: center; }
      .invest-banner__inner p { white-space: normal; font-size: 1.45rem; }
      .trust-strip {
        display: flex; grid-template-columns: unset;
        overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
        gap: 10px; padding: 0 20px 4px; scrollbar-width: none;
      }
      .trust-strip::-webkit-scrollbar { display: none; }
      .trust-strip img { flex: 0 0 82%; aspect-ratio: 16/10; scroll-snap-align: center; }
      .trust-body { padding-top: 40px; }
      .amenities-head h2, .typo-head h2 { font-size: 1.85rem; }
      .amenity-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
      .amenity-tab {
        background: none; border: 1px solid rgba(28,46,44,0.22); cursor: pointer;
        padding: 9px 16px;
        font-family: var(--font-accent); font-weight: 300; font-size: 0.68rem;
        letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
        transition: background 0.25s, color 0.25s, border-color 0.25s;
      }
      .amenity-tab.is-active { background: var(--teal-800); border-color: var(--teal-800); color: var(--white); }
      .amenities-cols { grid-template-columns: 1fr; }
      .amenity-col { display: none; }
      .amenity-col.is-active { display: block; }
      .gallery-wide img { height: 280px; }
      .tour-frame { height: 420px; }
      .tour-head h2 { font-size: 1.85rem; }
      .typo-tabs { gap: 6px; }
      .typo-tab { padding: 10px 18px; font-size: 0.72rem; }
      .footer-contacts { flex-direction: column; gap: 18px; }
      .footer-partners { gap: 30px; }
    }

    /* ══ FORMULARIO — campos de seguridad (antibot/OTP) ══════════════ */
    .lead-form__row {
      display: flex;
      gap: 8px;
    }
    .lead-form__code {
      flex: 0 0 92px;
      padding-left: 12px !important;
      padding-right: 6px !important;
    }
    .lead-form__row input[type="tel"] {
      flex: 1;
      min-width: 0;
    }

    .campo-honeypot {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .cf-turnstile {
      display: flex;
      justify-content: center;
      margin: 2px 0;
    }

    .form-error {
      display: none;
      font-size: 0.78rem;
      color: #ffb4b4;
      text-align: center;
      padding: 2px 4px;
    }
    .form-error.visible { display: block; }

    .lead-form.is-hidden { display: none; }

    .otp-panel { display: flex; flex-direction: column; gap: 12px; }
    .otp-panel .otp-instruccion {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.75);
      text-align: center;
    }
    .otp-panel input {
      width: 100%;
      background: var(--white);
      border: none;
      outline: none;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 0.88rem;
      padding: 14px 20px;
      border-radius: 30px;
      text-align: center;
      letter-spacing: 0.3em;
    }

    .lead-success { display: none; }
    .lead-success.is-shown { display: block; }

    @keyframes calaos-shake {
      10%, 90%      { transform: translateX(-2px); }
      20%, 80%      { transform: translateX(3px); }
      30%, 50%, 70% { transform: translateX(-4px); }
      40%, 60%      { transform: translateX(4px); }
    }
    .lead-form input.is-invalid,
    .lead-form select.is-invalid,
    .lead-form__row.is-invalid input,
    .lead-form__row.is-invalid select {
      box-shadow: 0 0 0 2px #ff3b3b;
      animation: calaos-shake 0.4s cubic-bezier(0.36,0.07,0.19,0.97) both;
    }
    .policy-check.is-invalid .policy-box {
      border-color: #ff3b3b;
      animation: calaos-shake 0.4s cubic-bezier(0.36,0.07,0.19,0.97) both;
    }
