/* ══════════════════════════════════════════
   CALAOS — Landing de Expectativa
   Luxury Minimal · Apple Liquid Glass · Video BG
   ══════════════════════════════════════════ */

/* ─── FONTS ─── */
@font-face {
  font-family: 'Gotham';
  src: url('../Fonts/Gotham-Light.woff2') format('woff2'),
       url('../Fonts/Gotham-Light_0.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../Fonts/Gotham-Book.woff2') format('woff2'),
       url('../Fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Agenda';
  src: url('../Fonts/Agenda-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  background: #15100c;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── VIDEO BACKGROUND ─── */
.video-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #15100c;
}
.video-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.3s ease;
}
@media (max-width: 600px) {
  .video-bg { object-position: 35% center; }
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(8, 5, 2, 0.36) 0%,
    rgba(12, 8, 4, 0.50) 45%,
    rgba(8, 5, 2, 0.65) 100%
  );
}

/* ─── LANDING WRAPPER ─── */
.landing {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ══════════════════════════════
   PÁGINA INICIO (cal-2): hero-top + subtitle
   ══════════════════════════════ */
.hero-top, .content-section {
  display: grid;
  grid-template-columns: 3fr 2fr;
  padding-left:  clamp(32px, 6%, 110px);
  padding-right: clamp(32px, 6%, 110px);
}
.hero-top {
  padding-top: clamp(32px, 6vh, 80px);
  animation: fadeDown 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.col-hero .hero-title {
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(17px, 2.3vw, 42px);
  letter-spacing: 0.38em;
  line-height: 1.0;
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(14px, 2vh, 28px);
  display: block;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(22px, 3.2vw, 56px);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #ffffff;
  text-align: center;
  margin: 0 0 clamp(16px, 2.5vh, 36px) 0;
}
.form-content {
  width: 100%;
  padding-top: clamp(24px, 4vh, 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.tagline-bold {
  display: block;
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2px;
}

/* ══════════════════════════════
   PÁGINA INVERSIONISTA (cal-1): hero-title-wrap
   ══════════════════════════════ */
.hero-title-wrap {
  padding: clamp(40px, 8.5vh, 100px) clamp(32px, 8%, 140px) 0;
  text-align: right;
  animation: fadeDown 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-title-wrap .hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(18px, 3.2vw, 50px);
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: clamp(18px, 2.6vh, 38px);
  display: inline-block;
}

/* ══════════════════════════════
   REGLA COMPARTIDA
   ══════════════════════════════ */
.hero-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.30);
}

/* ══════════════════════════════
   CONTENT SECTION
   ══════════════════════════════ */
.content-section {
  flex: 1;
  align-items: start;
  animation: fadeUp 1.1s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.col-void { /* espacio vacío izquierdo — el video respira */ }
.col-form {
  padding: 5vh 0 clamp(40px, 5.5vh, 72px);
}

/* ══════════════════════════════
   HOME — page flex (col-left + col-right)
   ══════════════════════════════ */
.home-hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vh, 80px) clamp(32px, 6%, 110px) clamp(40px, 5.5vh, 72px);
  animation: fadeUp 1.1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.col-left {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: clamp(16px, 2vw, 24px);
}
.home-hero .col-left {
  min-height: clamp(480px, calc(100vh - 160px), 760px);
}
.content-section .col-left {
  justify-content: flex-start;
  gap: clamp(20px, 3vh, 32px);
}
.col-right {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.logo-wrap {
  opacity: 0;
  animation: fadeDown 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.logo {
  width: clamp(140px, 14vw, 210px);
  height: auto;
  display: block;
}
.brand-text {
  margin-bottom: clamp(60px, 12vh, 140px);
}
.proximamente {
  font-family: 'Agenda', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 2.2vw, 2.4rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
  opacity: 0;
  animation: fadeInLeft 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.location {
  font-size: clamp(16px, 1.2vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  animation: fadeInLeft 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
}
.description {
  font-size: clamp(17px, 1.3vw, 1.45rem);
  font-weight: 300;
  line-height: 1.45;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  animation: fadeInLeft 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards;
}
.description .tagline-bold {
  font-size: clamp(21px, 1.7vw, 25px);
  margin-bottom: 6px;
}
.disclaimer {
  margin-top: 18px;
  font-size: clamp(10px, 0.6vw, 0.65rem);
  font-weight: 300;
  line-height: 1.55;
  max-width: 380px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeInLeft 1.0s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}
.disclaimer--mobile { display: none; }

/* ── ENCABEZADO DEL FORMULARIO ── */
.form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.18;
  margin-bottom: 28px;
  width: 100%;
  max-width: 360px;
  color: #ffffff;
  opacity: 0;
  animation: fadeInRight 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

/* ─── TAGLINE — Cal-1 Inversionista (tagline directo en col-form) ─── */
.col-form > .tagline {
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.35vw, 24px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  margin-top: clamp(20px, 3vh, 40px);
  margin-bottom: clamp(24px, 3.8vh, 50px);
}

/* ─── TAGLINE — Cal-2 Home (tagline dentro de form-content) ─── */
.form-content .tagline {
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0;
  text-align: center;
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

/* ─── TAGLINE base (fallback) ─── */
.tagline {
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0;
  margin-bottom: clamp(24px, 3.8vh, 50px);
}

/* ─── LABEL — Cal-1 ─── */
.col-form > .register-label {
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.0vw, 17px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0;
  margin-bottom: clamp(12px, 1.6vh, 18px);
}

/* ─── LABEL base ─── */
.register-label {
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0;
  margin-bottom: clamp(12px, 1.6vh, 18px);
}

/* ══════════════════════════════
   FORMULARIO — Apple Liquid Glass
   ══════════════════════════════ */
.form-slide {
  width: 100%;
  max-width: 360px;
  animation: slideFromRight 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}
.contact-form {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  backdrop-filter: blur(26px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  transition: border-color 0.28s ease;
}
.contact-form:focus-within { border-color: rgba(255, 255, 255, 0.55); }
.form-row {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: stretch;
}
.form-row:last-child { border-bottom: none; }
.form-row:nth-child(1) { opacity: 0; animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards; }
.form-row:nth-child(2) { opacity: 0; animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.82s forwards; }
.form-row:nth-child(3) { opacity: 0; animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.99s forwards; }
.form-row:nth-child(4) { opacity: 0; animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.16s forwards; }
.contact-form input,
.contact-form select {
  display: block;
  flex: 1;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 20px;
  color: #ffffff;
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(11px, 0.85vw, 0.95rem);
  letter-spacing: 0.02em;
  transition: background 0.22s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  font-size: clamp(11px, 0.85vw, 0.95rem);
  letter-spacing: 0.02em;
}
.contact-form input:focus,
.contact-form select:focus { background: rgba(255, 255, 255, 0.05); }
@keyframes autofillOverride {
  to {
    background: rgba(26, 13, 6, 0.85);
    color: rgba(255, 255, 255, 0.92);
  }
}
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(255,255,255,0.92) !important;
  -webkit-box-shadow: 0 0 0 100px rgba(26, 13, 6, 0.85) inset !important;
  caret-color: rgba(255,255,255,0.92);
  animation: autofillOverride 0s forwards;
  transition: background-color 999999s ease 0s;
}
.form-row.is-invalid input { color: rgba(255, 180, 180, 0.9); }
.form-row.is-invalid input::placeholder { color: rgba(255, 130, 130, 0.55); }
.form-row.is-invalid { animation: shake 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; }

/* ─── HONEYPOT ─── */
.campo-honeypot { display: none !important; visibility: hidden !important; }

/* ─── TURNSTILE ─── */
.cf-turnstile {
  display: flex;
  justify-content: center;
}
.cf-turnstile:empty { margin: 0; }

/* ─── POLÍTICA CHECKBOX ─── */
.policy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  cursor: pointer;
  user-select: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.33s forwards;
}
.policy-check input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.policy-box {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  transition: background 0.22s ease, border-color 0.22s ease;
  position: relative;
}
.policy-box::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px; height: 4px;
  border-left: 1px solid #1A0D06;
  border-bottom: 1px solid #1A0D06;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.policy-check input:checked ~ .policy-box {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
}
.policy-check input:checked ~ .policy-box::after { opacity: 1; }
.policy-text {
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 0.65vw, 11.5px);
  color: rgba(255, 255, 255, 0.78);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.policy-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.policy-link:hover { color: rgba(255, 255, 255, 1); }
.policy-check.is-invalid .policy-box {
  border-color: rgba(255, 130, 130, 0.65);
  animation: shake 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ─── SUBMIT BUTTON — Luxury Curtain Fill ─── */
.btn-submit {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Agenda', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 20px 28px;
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.93);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.52s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}
.btn-submit:hover::before { transform: scaleY(1); }
.btn-text {
  position: relative;
  z-index: 1;
  transition: color 0.52s cubic-bezier(0.76, 0, 0.24, 1);
}
.btn-submit:hover .btn-text { color: #1A0D06; }
.btn-arrow {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 10px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: color 0.52s cubic-bezier(0.76, 0, 0.24, 1), transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-submit:hover .btn-arrow {
  color: #1A0D06;
  transform: translateX(6px);
}
.btn-submit:active { transform: scale(0.98); }
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ─── THANKS ─── */
.form-thanks { display: none; padding: 36px 0 0; }
.form-thanks.visible {
  display: block;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.form-thanks p {
  font-weight: 300;
  font-size: clamp(13px, 1.0vw, 17px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.80);
}

/* ─── ERROR MSG ─── */
.form-error {
  display: none;
  margin-top: 10px;
  font-size: 11.5px;
  color: rgba(255, 130, 130, 0.9);
  text-align: center;
  font-family: 'Agenda', sans-serif;
  font-weight: 300;
}
.form-error.visible { display: block; }
/* ─── PANEL OTP ─── */
.otp-panel { padding-top: 12px; }
.otp-instruccion {
  font-size: clamp(12px, 1.0vw, 15px);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-bottom: 12px;
  font-family: 'Agenda', sans-serif;
}

/* ─── SELECT WRAP (País / indicativo) ─── */
.select-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}
.select-wrap select {
  padding-right: 36px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.92);
}
.select-wrap select option { background: #1c1c1c; color: #fff; }
.select-wrap select option[value=""] { color: rgba(255, 255, 255, 0.55); }

/* indicativo: chip compacto tipo "bandera + código + flecha" */
.select-wrap--phone {
  flex: 0 0 104px;
}
.select-wrap--phone::after {
  right: 10px;
}
.select-wrap--phone select {
  padding: 18px 24px 18px 16px;
  color: rgba(255, 255, 255, 0.82);
}

/* divisor vertical entre select y el input (indicativo|teléfono, país|ciudad) */
.field-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  align-self: stretch;
}



/* ══════════════════════════════
   KEYFRAMES
   ══════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(52px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
  from { transform: translateX(60px); }
  to   { transform: none; }
}
@keyframes ruleExpand {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
@keyframes shake {
  10%, 90%       { transform: translateX(-2px); }
  20%, 80%       { transform: translateX(3px); }
  30%, 50%, 70%  { transform: translateX(-4px); }
  40%, 60%       { transform: translateX(4px); }
}

/* ══════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-top, .content-section {
    grid-template-columns: 1fr;
    padding-left:  clamp(32px, 8%, 80px);
    padding-right: clamp(32px, 8%, 80px);
  }
  .col-void { display: none; }
  .hero-title-wrap { text-align: center; }
  .hero-title-wrap .hero-title { font-size: clamp(26px, 4vw, 56px); letter-spacing: 0.045em; }
  .col-hero .hero-title { font-size: clamp(32px, 4.2vw, 44px); letter-spacing: 0.06em; }
  .hero-subtitle { font-size: clamp(32px, 4.2vw, 44px); letter-spacing: 0.06em; }
  .content-section { justify-items: center; }
  .col-form { max-width: 480px; width: 100%; padding: clamp(40px, 6vh, 72px) 0 clamp(56px, 8vh, 96px); }
  .form-content { max-width: 480px; }
  .form-slide { max-width: 480px; }
  .description, .disclaimer { max-width: 100%; }
  .disclaimer--desktop { display: none; }
  .disclaimer--mobile { display: block; margin-top: 0; }

  .home-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(40px, 6vh, 72px) clamp(32px, 8%, 80px) clamp(56px, 8vh, 96px);
    gap: 48px;
  }
  .col-left,
  .home-hero .col-left {
    flex: none;
    width: 100%;
    min-height: auto;
    padding-right: 0;
    justify-content: flex-start;
    gap: 20px;
  }
  .col-right {
    width: 100%;
    max-width: 480px;
    align-items: flex-start;
  }
  .brand-text {
    margin-bottom: 0;
  }
}

/* ──── MOBILE (≤ 600px) ──── */
@media (max-width: 600px) {
  .hero-title-wrap { padding: 6vh 24px 0; text-align: center; }
  .hero-top { padding-top: 10vh; }
  .hero-top, .content-section { display: block !important; padding-left: 24px; padding-right: 24px; }
  .col-void { display: none !important; }
  .hero-title-wrap .hero-title { font-size: clamp(26px, 7vw, 32px); letter-spacing: 0.045em; }
  .col-hero .hero-title { font-size: clamp(26px, 7vw, 32px); letter-spacing: 0.06em; margin-bottom: clamp(8px, 1.2vh, 14px); }
  .hero-subtitle { font-size: clamp(26px, 7vw, 32px); letter-spacing: 0.06em; margin-bottom: clamp(12px, 2vh, 24px); }
  .col-hero .hero-subtitle { margin-bottom: 0; }
  .content-section { padding: 0 24px 4vh; }
  .col-form { display: block; width: 100%; max-width: 100%; margin: 0 auto; padding: 0 0 4vh; box-sizing: border-box; }
  .form-content { max-width: 100%; width: 100%; box-sizing: border-box; padding-top: 0; }
  .form-slide { max-width: 100%; width: 100%; box-sizing: border-box; }
  .form-content form, .contact-form { width: 100%; box-sizing: border-box; }
  .tagline { font-size: 15px; line-height: 1.5; margin-bottom: 18px; text-align: center; }
  .tagline-bold { font-size: 22px; margin-bottom: 8px; }
  .register-label { font-size: 13px; text-align: center; }
  .contact-form input, .contact-form select { padding: 13px 14px; font-size: 12px; }
  .policy-text { font-size: 11px; }
  .logo-wrap { margin-bottom: 8px; }
  .logo { width: 132px; }
  .proximamente { font-size: 1.2rem; letter-spacing: 0.14em; }
  .location { font-size: 0.85rem; margin-bottom: 10px; }
  .description { font-size: 0.95rem; }
  .disclaimer { font-size: 0.6rem; margin-top: 10px; }
  .form-heading { font-size: 1.55rem; margin-bottom: 18px; }

  .home-hero { padding: 40px 20px 48px; gap: 36px; }
  .col-left { gap: 18px; }
  .col-right { max-width: 100%; }
}

/* ──── LANDSCAPE MOBILE ──── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-title-wrap { padding: 3vh clamp(24px, 6%, 80px) 0; }
  .hero-title-wrap .hero-title { font-size: clamp(18px, 3.2vw, 38px); margin-bottom: 12px; }
  .hero-top { padding-top: 3vh; }
  .col-hero .hero-title { font-size: clamp(22px, 4.5vw, 42px); letter-spacing: 0.06em; margin-bottom: 8px; }
  .hero-subtitle { font-size: clamp(22px, 4.5vw, 42px); }
  .col-form { padding: 16px 0 24px; }
  .tagline { margin-bottom: 10px; font-size: 13px; }
  .register-label { margin-bottom: 8px; font-size: 12px; }
  .contact-form input, .contact-form select { padding: 11px 16px 10px; }
}

/* ─── GRACIAS ─── */
.form-thanks {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.form-thanks p { color: rgba(255,255,255,0.88); }

/* ─── ACCESIBILIDAD ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }
}
