/* ══════════════════════════════════════════
   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;
}

/* ─── 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: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  background: #0b1f4a;
  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: #0b1f4a;
}
.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(135deg, rgba(8,20,55,0.15) 0%, rgba(5,18,50,0.28) 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: 'Gotham', '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: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 3.2vw, 56px);
  letter-spacing: 0.10em;
  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);
}
.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: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 3.2vw, 50px);
  letter-spacing: 0.08em;
  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);
}

/* ─── TAGLINE — Cal-1 Inversionista (tagline directo en col-form) ─── */
.col-form > .tagline {
  font-family: 'Gotham', '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: 'Gotham', '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: 'Gotham', '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: 'Gotham', '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 — Cal-2 ─── */
.form-content .register-label {
  font-family: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.0vw, 17px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0;
  text-align: center;
  margin-bottom: clamp(12px, 1.6vh, 18px);
}

/* ─── LABEL base ─── */
.register-label {
  font-family: 'Gotham', '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);
}

/* ══════════════════════════════
   APPLE LIQUID GLASS CARD
   ══════════════════════════════ */
.glass-card {
  background: rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(52px) saturate(200%) brightness(0.6);
  backdrop-filter: blur(52px) saturate(200%) brightness(0.6);
  border: 0.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06),
    0 24px 56px rgba(0, 5, 30, 0.30),
    0 4px 16px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}
.glass-field {
  position: relative;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.11);
}
.glass-field.last { border-bottom: none; }
.glass-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 22px 17px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(11px, 0.85vw, 14px);
  letter-spacing: 0.4px;
  transition: background 0.22s ease;
  -webkit-appearance: none;
  appearance: none;
}
.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  font-size: clamp(11px, 0.85vw, 14px);
  letter-spacing: 0.4px;
}
.glass-input:focus { background: rgba(255, 255, 255, 0.05); }
.glass-card:focus-within {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06),
    0 24px 56px rgba(0, 5, 30, 0.22),
    0 0 0 3px rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}
@keyframes autofillOverride {
  to {
    background: rgba(10, 20, 40, 0.85);
    color: rgba(255, 255, 255, 0.92);
  }
}
.glass-input:-webkit-autofill,
.glass-input:-webkit-autofill:hover,
.glass-input:-webkit-autofill:focus,
.glass-input:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(255,255,255,0.92) !important;
  -webkit-box-shadow: 0 0 0 100px rgba(10, 20, 40, 0.85) inset !important;
  caret-color: rgba(255,255,255,0.92);
  animation: autofillOverride 0s forwards;
  transition: background-color 999999s ease 0s;
}
.glass-field.is-invalid .glass-input { color: rgba(255, 180, 180, 0.9); }
.glass-field.is-invalid .glass-input::placeholder { color: rgba(255, 130, 130, 0.55); }
.glass-field.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 {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}

/* ─── POLÍTICA CHECKBOX ─── */
.check-politica {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
  user-select: none;
}
.check-politica input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.check-box {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.22s ease, border-color 0.22s ease;
  position: relative;
}
.check-box::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 9px; height: 5px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.check-politica input:checked ~ .check-box {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}
.check-politica input:checked ~ .check-box::after { opacity: 1; }
.check-text {
  font-family: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 0.65vw, 11.5px);
  color: rgba(255, 255, 255, 0.92);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.96);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.check-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.check-link:hover { color: rgba(255, 255, 255, 1); }
.check-politica.is-invalid .check-box {
  border-color: rgba(255, 130, 130, 0.65);
  animation: shake 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ─── FORM ACTIONS ─── */
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ─── SUBMIT BUTTON ─── */
.btn-enviar {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 38px 10px;
  cursor: pointer;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.15s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 8px 20px rgba(0,0,0,0.10);
}
.btn-enviar:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.44);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 12px 28px rgba(0,0,0,0.14);
}
.btn-enviar:active { transform: scale(0.95); }
.btn-enviar:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ─── 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: 'Gotham', 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: 'Gotham', sans-serif;
}

/* ─── GLASS FIELD PHONE (indicativo + teléfono) ─── */
.glass-field--phone {
  display: flex;
  gap: 0;
}
.glass-field--phone .glass-select {
  width: 120px;
  min-width: 100px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.10);
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.glass-field--phone .glass-select option { background: #1a1a2e; color: #fff; }
.glass-field--phone .glass-input:not(.glass-select) { flex: 1; }

/* ─── País | Ciudad (mitad cada uno) ─── */
.glass-field--location {
  display: flex;
  gap: 0;
}
.glass-field--location .glass-select {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 26px;
}
.glass-field--location .glass-select option { background: #1a1a2e; color: #fff; }
.glass-field--location .glass-input:not(.glass-select) { flex: 1; }

/* ─── Safari: select transparente ─── */
select.glass-input {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.92);
}
select.glass-input option[value=""] { color: rgba(255, 255, 255, 0.55); }



/* ══════════════════════════════
   SOUND BUTTON
   ══════════════════════════════ */
.btn-sound {
  position: fixed;
  bottom: clamp(24px, 3.5vh, 44px);
  left: clamp(24px, 3.5vw, 48px);
  z-index: 10;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  padding: 0;
}
.btn-sound:hover {
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 1);
}
.btn-sound:active { transform: scale(0.90); }
.btn-sound svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sound .icon-sound { display: none; }
.btn-sound .icon-muted  { display: block; }
.btn-sound.is-playing .icon-muted { display: none; }
.btn-sound.is-playing .icon-sound { display: block; }
@keyframes soundPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.btn-sound.pulse { animation: soundPulse 0.35s ease; }

/* ══════════════════════════════
   KEYFRAMES
   ══════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@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-actions { justify-content: flex-end; }
}

/* ──── 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-content form, .glass-card { 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; }
  .glass-input { padding: 15px 16px 14px; font-size: 12px; }
  .check-text { font-size: 11px; }
}

/* ──── 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; }
  .glass-input { padding: 11px 16px 10px; }
}

/* ─── TEXTAREA GLASS ─── */
.glass-textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 18px 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 0.68vw, 11.5px);
  letter-spacing: 0.4px;
  resize: none;
  min-height: 72px;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}
.glass-textarea::placeholder {
  color: rgba(255, 255, 255, 0.40);
  font-weight: 300;
}
.glass-textarea:focus { background: rgba(255, 255, 255, 0.05); }

/* ─── FILA CIUDAD + PAÍS ─── */
.glass-field--row {
  display: flex;
}
.glass-field--row .glass-input {
  border-right: 0.5px solid rgba(255,255,255,0.11);
}
.glass-field--row .glass-input--right {
  border-right: none;
}

/* ─── TELÉFONO ERROR (rojo) ─── */
.glass-field.is-invalid .glass-input[name="telefono"],
.glass-field.is-invalid .glass-input[name="mail"],
.glass-field.is-invalid .glass-input[name="nombre"],
.glass-field.is-invalid .glass-input[name="ciudad"] {
  color: rgba(255, 100, 100, 0.9);
}

/* ─── 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); }
