/* ==========================================================================
   EPIC TOWER — Landing pages
   Reconstrucción 1:1 del Figma "LANDINGS 2026".
   Solo contiene elementos que existen y están VISIBLES en el diseño.
   ========================================================================== */

/* ---------- Fuentes ------------------------------------------------------
   El diseño usa "Mont" (Fontfabric), tipografía comercial que no se puede
   redistribuir. Mientras no haya licencia se usa Montserrat (Google Fonts).

   PARA ACTIVAR MONT: copia los .woff2 en /assets/fonts/ con estos nombres
   y descomenta el bloque. No hay que tocar nada más.
   ------------------------------------------------------------------------ */
/*
@font-face { font-family:'Mont'; src:url('../fonts/Mont-Light.woff2') format('woff2');    font-weight:300; font-display:swap; }
@font-face { font-family:'Mont'; src:url('../fonts/Mont-Regular.woff2') format('woff2');  font-weight:400; font-display:swap; }
@font-face { font-family:'Mont'; src:url('../fonts/Mont-SemiBold.woff2') format('woff2'); font-weight:600; font-display:swap; }
@font-face { font-family:'Mont'; src:url('../fonts/Mont-Bold.woff2') format('woff2');     font-weight:700; font-display:swap; }
*/

:root {
  /* Paleta exacta del Figma */
  --navy:       #021d32;
  --navy-2:     #065898;
  --navy-3:     #07416e;
  --orange:     #ea841a;
  --orange-dk:  #844a0f;
  --cream:      #fffcee;
  --white:      #ffffff;
  --ink:        #242529;
  --grey-lt:    #d9d9d9;

  --grad-navy:   linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  --grad-card:   linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 100%);
  --grad-orange: linear-gradient(180deg, var(--orange) 0%, var(--orange-dk) 100%);
  --grad-cream:  linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 40px;
  --r-pill: 999px;

  --container: 1470px;
  --gutter: clamp(20px, 4.2vw, 65px);

  --font: 'Mont', 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Lujo y Nómadas llevan el degradado navy en toda la página */
body.page--navy { background: var(--grad-navy); }

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 200;
  background: var(--orange); color: var(--navy); font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   ENCABEZADO — logo + redes sociales (es todo lo que hay en el Figma)
   ========================================================================== */
.topbar {
  position: absolute; inset: 0 0 auto 0; z-index: 20;
  padding-block: clamp(24px, 4.4vw, 70px);
  pointer-events: none;
}
.topbar__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.topbar__logo { pointer-events: auto; display: block; }
.topbar__logo img { width: clamp(96px, 12.8vw, 205px); height: auto; }


.social { display: flex; gap: clamp(14px, 2.8vw, 45px); pointer-events: auto; }
.social a { display: block; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.social a:hover { transform: translateY(-3px); opacity: .82; }
.social svg { width: clamp(26px, 2.5vw, 40px); height: auto; }

/* El color de los iconos cambia por landing, igual que en el Figma */
.social--navy  svg { fill: var(--navy); }
.social--white svg { fill: var(--white); }
.social--gold  svg { fill: #e4af49; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: flex; align-items: center;
  padding-block: clamp(150px, 20vw, 200px) clamp(50px, 7vw, 90px);
  overflow: hidden; isolation: isolate;
}
.hero--tall { min-height: min(1077px, 100svh); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Los dos degradados oscuros del Figma */
.hero::before, .hero::after { content: ''; position: absolute; left: 0; right: 0; z-index: -1; pointer-events: none; }
.hero::before { top: 0; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,.85), transparent 55%); }
.hero::after  { bottom: 0; height: 65%; background: linear-gradient(0deg, rgba(0,0,0,.8), transparent); }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(0, 715px);
  justify-content: space-between;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}
.hero__title {
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 300; line-height: 1.2;
  text-wrap: balance;
}
.hero__quote {
  margin-top: clamp(18px, 2.4vw, 30px);
  color: var(--white);
  font-size: clamp(16px, 1.9vw, 30px);
  font-weight: 400; line-height: 1.25;
  text-wrap: pretty;
}
.hero__quote strong { font-weight: 700; }
/* subtítulo de Lujo, en mayúsculas y algo menor */
.hero__quote--sm { font-size: clamp(15px, 1.9vw, 30px); font-weight: 400; }

@media (max-width: 1100px) {
  .hero, .hero--tall { min-height: 0; padding-block: clamp(130px, 26vw, 190px) 52px; }
  .hero__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   HERO EN MÓVIL — así son los frames "largos" del Figma.
   En pantalla angosta el hero es alto: los dos degradados oscuros de
   escritorio se encimaban y dejaban la foto casi negra. Aquí se aclaran
   para que la imagen se vea arriba, y el texto se protege con sombra.
   -------------------------------------------------------------------------- */
@media (max-width: 700px) {
  .hero, .hero--tall {
    /* la foto ocupa una banda visible arriba, luego el título y el formulario */
    padding-top: clamp(150px, 42vw, 250px);
  }
  .hero__media img { object-position: center 32%; }
  .hero::before {
    height: 70%;
    background: linear-gradient(180deg,
      rgba(0,0,0,.62) 0%, rgba(0,0,0,.24) 40%, transparent 100%);
  }
  .hero::after {
    height: 34%;
    background: linear-gradient(0deg, rgba(2,29,50,.55), transparent);
  }
  .hero__title { text-shadow: 0 2px 20px rgba(0,0,0,.55); }
  .hero__quote { text-shadow: 0 1px 14px rgba(0,0,0,.6); }
}

/* ==========================================================================
   TARJETA DE FORMULARIO
   ========================================================================== */
.formcard {
  background: linear-gradient(180deg, var(--navy) 0%, rgba(6,88,152,0) 100%), var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.2vw, 50px);
  color: var(--white);
  box-shadow: 0 24px 60px -22px rgba(2,29,50,.5);
}
.formcard__title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 600; line-height: 1.2; text-align: center;
  color: var(--orange); text-wrap: balance;
}
.formcard__sub {
  margin-top: 14px;
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 300; line-height: 1.3; text-align: center;
  color: var(--white); text-wrap: balance;
}
.formcard__sub--semi { font-weight: 600; }
.formcard__note {
  margin-top: 16px;
  font-size: 12px; font-weight: 600; line-height: 1.5; text-align: center;
  color: rgba(255,255,255,.72);
}

.form { margin-top: clamp(20px, 2.4vw, 30px); display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.field input {
  width: 100%; min-height: 56px; padding: 15px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 16px;               /* 16px evita el zoom automático en iOS */
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder { color: rgba(255,255,255,.45); }
.field input:hover { border-color: rgba(255,255,255,.4); }
.field input:focus {
  outline: 0; border-color: var(--orange);
  background: rgba(255,255,255,.13);
  box-shadow: 0 0 0 3px rgba(234,132,26,.25);
}

/* teléfono con selector de indicativo */
.phone {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.phone:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(234,132,26,.25); }
.phone select {
  min-height: 56px; padding: 0 34px 0 16px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 14px;
  border: 0; border-right: 1px solid rgba(255,255,255,.18); border-radius: var(--r-sm) 0 0 var(--r-sm);
  appearance: none; font-size: 15px; cursor: pointer; color: rgba(255,255,255,.9);
}
.phone select:focus { outline: 0; background-color: rgba(255,255,255,.1); }
.phone select option { background: var(--navy); color: var(--white); }
.phone input { background: transparent; border: 0; border-radius: 0; }
.phone input:focus { box-shadow: none; background: transparent; }

.field.has-error input, .field.has-error .phone { border-color: #ff6b6b; }
.field__error { display: none; font-size: 12.5px; font-weight: 600; color: #ff9d9d; }
.field.has-error .field__error { display: block; }

/* botón del formulario — pastilla naranja del Figma */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 56px; padding: 15px 30px;
  background: var(--orange); color: var(--navy);
  border: 0; border-radius: var(--r-pill);
  font-size: clamp(14px, 1.1vw, 16px); font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
  cursor: pointer; position: relative;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: #f59433; transform: translateY(-2px); }
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.btn.is-loading .btn__label { opacity: 0; }
.btn.is-loading::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 22px; height: 22px;
  border: 2.5px solid rgba(2,29,50,.3); border-top-color: var(--navy);
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form__status { display: none; padding: 13px 16px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; line-height: 1.45; }
.form__status.is-visible { display: block; }
.form__status--error   { background: rgba(255,107,107,.14); border: 1px solid rgba(255,107,107,.45); color: #ffc9c9; }
.form__status--success { background: rgba(93,214,143,.14); border: 1px solid rgba(93,214,143,.45); color: #b6f0cd; }

/* confirmación tras enviar (necesaria para que el formulario dé respuesta) */
.formcard__done { display: none; text-align: center; }
.formcard.is-done .formcard__body { display: none; }
.formcard.is-done .formcard__done { display: block; }
.formcard__done .check {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: grid; place-items: center;
  background: rgba(93,214,143,.16); border: 2px solid rgba(93,214,143,.5); border-radius: 50%;
}
.formcard__done .check svg { width: 30px; height: 30px; stroke: #7ce8a6; fill: none; }

/* ==========================================================================
   SECCIONES
   ========================================================================== */
.section { padding-block: clamp(56px, 7vw, 100px); position: relative; }
.section--cream { background: var(--grad-cream); }
.section--navy  { background: var(--grad-navy); color: var(--white); }
.section--flat  { background: transparent; }

/* Título grande de dos tonos: "Apartamentos / desde 72 m² con:" */
.headline { text-align: center; }
.headline__top {
  display: block;
  font-size: clamp(28px, 3.1vw, 40px); font-weight: 600; line-height: 1.3;
  color: var(--orange);
}
.headline__pill {
  display: inline-block; margin-top: 10px;
  padding: clamp(6px, .8vw, 10px) clamp(20px, 2.4vw, 34px);
  background: var(--grey-lt); border-radius: var(--r-md);
  font-size: clamp(28px, 3.1vw, 40px); font-weight: 600; line-height: 1.25;
  color: var(--orange);
}
/* variante de Bienestar: "Tu Nueva / Etapa:" sobre pastilla navy */
.headline--wellness .headline__top { color: var(--ink); font-weight: 300; font-size: clamp(32px, 4.4vw, 60px); }
.headline--wellness .headline__pill {
  background: var(--navy); color: var(--orange);
  font-size: clamp(32px, 4.4vw, 60px); padding-inline: clamp(30px, 5vw, 80px);
}

.lead {
  max-width: 62ch; margin-inline: auto; text-align: center;
  font-size: clamp(16px, 1.9vw, 30px); font-weight: 300; line-height: 1.3;
  text-wrap: pretty;
}
.lead--regular { font-weight: 400; }
.lead--ink { color: var(--ink); }
.lead--white { color: var(--white); }

/* ==========================================================================
   INVERSIONISTAS — métricas
   ========================================================================== */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 30px);
}
.stat {
  position: relative; background: var(--navy);
  padding: clamp(24px, 2.4vw, 34px) clamp(20px, 2vw, 28px);
  padding-left: clamp(28px, 2.6vw, 36px);
  overflow: hidden;
  transition: transform .35s var(--ease);
}
.stat::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 7px; background: rgba(234,132,26,.7); }
.stat:hover { transform: translateY(-5px); }
.stat__value {
  font-size: clamp(34px, 3.8vw, 60px); font-weight: 700; line-height: 1.5;
  color: var(--orange); font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: clamp(12px, 1vw, 16px); font-weight: 400; line-height: 1.5;
  text-transform: uppercase; color: var(--white);
}

/* bloque de texto + imagen */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  align-items: center; gap: clamp(28px, 4.4vw, 66px);
}
.split__text p { font-size: clamp(19px, 1.9vw, 30px); font-weight: 400; line-height: 1.5; }
.split__text p + p { margin-top: .35em; font-size: clamp(16px, 1.5vw, 24px); }
.split__media { border-radius: var(--r-md); overflow: hidden; background: var(--grey-lt); }
.split__media img { width: 100%; aspect-ratio: 572/336; object-fit: cover; }

/* ==========================================================================
   INVERSIONISTAS — "¿Por qué Epic Tower?"
   ========================================================================== */
.promo {
  position: relative; border-radius: 35px; overflow: hidden;
  min-height: clamp(400px, 44vw, 840px);
  display: grid; align-items: end; isolation: isolate;
}
.promo__media { position: absolute; inset: 0; z-index: -2; }
.promo__media img { width: 100%; height: 100%; object-fit: cover; }
.promo::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(2,29,50,.92) 0%, rgba(2,29,50,.62) 48%, rgba(2,29,50,.15) 100%);
}
.promo__body { padding: clamp(28px, 3.6vw, 56px); color: var(--white); max-width: 760px; }
.promo__title { font-size: clamp(26px, 2.8vw, 40px); font-weight: 600; line-height: 1.5; }
.promo__text {
  margin-top: 14px; font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 300; line-height: 1.5; color: rgba(255,255,255,.9);
}

/* ==========================================================================
   LUJO — tarjetas de amenidades
   ========================================================================== */
/* El número de columnas es el del Figma, no automático:
   Lujo 3 (6 tarjetas en 3×2) · Nómadas 2 (4 tarjetas en 2×2) · Bienestar 3 */
.cards { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.4vw, 38px); }

@media (min-width: 860px)  { .cards--2 { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 700px)  { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.amenity {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(16px, 1.8vw, 26px); text-align: center;
  min-height: 284px; padding: 32px 24px;
  background: var(--orange); border-radius: var(--r-md); color: var(--navy);
  transition: transform .35s var(--ease);
}
/* En el Figma el degradado va en la 3.ª y la 4.ª tarjeta */
.amenity:nth-child(3), .amenity:nth-child(4) { background: var(--grad-orange); }
.amenity:hover { transform: translateY(-6px); }
.amenity__icon { width: clamp(72px, 6.4vw, 100px); height: clamp(72px, 6.4vw, 100px); }
.amenity__icon svg { width: 100%; height: 100%; stroke: var(--navy); fill: none; stroke-width: 1.6; }
.amenity__title {
  font-size: clamp(17px, 1.45vw, 22px); font-weight: 400; line-height: 1.5;
  text-transform: uppercase; text-wrap: balance;
}

/* ==========================================================================
   NÓMADAS — tarjetas de características
   ========================================================================== */
.feature {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(24px, 2.6vw, 42px);
  background: var(--grad-card); border-radius: var(--r-md);
  color: var(--orange); overflow: hidden;
  transition: transform .35s var(--ease);
}
.feature:hover { transform: translateY(-6px); }
.feature__badge {
  display: grid; place-items: center;
  aspect-ratio: 234/221; width: min(100%, 234px);
  background: var(--orange); border-radius: var(--r-md);
  margin-bottom: clamp(20px, 2.4vw, 34px);
}
.feature__badge svg { width: 44%; height: 44%; stroke: var(--navy); fill: none; stroke-width: 1.6; }
/* círculo con flecha, arriba a la derecha */
.feature__arrow {
  position: absolute; top: clamp(20px, 2.4vw, 42px); right: clamp(20px, 2.4vw, 42px);
  width: clamp(48px, 4.6vw, 74px); height: clamp(48px, 4.6vw, 74px);
  display: grid; place-items: center;
  border: 2px solid var(--orange); border-radius: 50%;
}
.feature__arrow svg { width: 42%; height: 42%; stroke: var(--orange); fill: none; stroke-width: 2.4; }
.feature__title { font-size: clamp(18px, 1.45vw, 22px); font-weight: 400; text-transform: uppercase; line-height: 1.5; }
.feature__text { margin-top: 10px; font-size: clamp(15px, 1.45vw, 22px); font-weight: 300; line-height: 1.5; }
.feature__text strong { font-weight: 400; }

/* NÓMADAS — bloque "Comunidad Digital:" */
.community {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  align-items: center; gap: clamp(24px, 3.4vw, 50px);
  padding: clamp(24px, 3vw, 44px);
  background: var(--grad-card); border-radius: var(--r-md); color: var(--white);
}
.community__media { border-radius: var(--r-md); overflow: hidden; background: var(--grey-lt); }
.community__media img { width: 100%; aspect-ratio: 427/295; object-fit: cover; }
.community__title { font-size: clamp(30px, 3.8vw, 60px); font-weight: 600; line-height: 1.2; color: var(--orange); }
.community__text { margin-top: 16px; font-size: clamp(16px, 1.9vw, 30px); font-weight: 300; line-height: 1.2; }
.community__text strong { font-weight: 400; color: var(--orange); }

/* ==========================================================================
   BIENESTAR — tarjetas de bienestar
   ========================================================================== */
.wellness {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(26px, 2.6vw, 40px);
  padding-bottom: clamp(70px, 6vw, 90px);
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  transition: transform .35s var(--ease);
}
.wellness::after { content: ''; position: absolute; inset: auto 0 0 0; height: 53px; background: var(--orange); }
.wellness:hover { transform: translateY(-6px); }
.wellness__icon { width: clamp(72px, 6vw, 96px); height: clamp(72px, 6vw, 96px); margin-bottom: clamp(20px, 2.4vw, 34px); }
.wellness__icon svg { width: 100%; height: 100%; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.wellness__title {
  font-size: clamp(18px, 1.45vw, 22px); font-weight: 700; line-height: 1.5;
  text-transform: uppercase; color: var(--navy); margin-bottom: 10px;
}
.wellness__text { font-size: clamp(15px, 1.45vw, 22px); font-weight: 400; line-height: 1.5; color: var(--navy); }
.wellness__text strong { font-weight: 700; }

/* ==========================================================================
   GALERÍA (la tira de fotos del Figma)
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); }
.gallery img { width: 100%; height: 100%; aspect-ratio: 578/630; object-fit: cover; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   PIE — solo la banda con degradado y el logo, como en el Figma
   ========================================================================== */
.footerbar {
  background: var(--grad-navy);
  padding-block: clamp(38px, 5vw, 60px);
  display: grid; place-items: center;
}
.footerbar img { width: clamp(96px, 10vw, 150px); height: auto; }

/* --------------------------------------------------------------------------
   Franja de contacto — correo y WhatsApp al pie.
   No viene del Figma; se añadió para que la gente pueda escribir directo
   sin pasar por el formulario. Discreta, sobre el mismo fondo navy.
   -------------------------------------------------------------------------- */
/* Usa el color donde TERMINA el degradado navy, para que la franja se vea
   como continuación del fondo y no como un bloque pegado. */
.contactbar { background: var(--navy-2); padding-block: clamp(20px, 2.4vw, 30px); }
.contactbar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px clamp(20px, 3vw, 44px);
}
.contactbar a {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 40px;
  font-size: clamp(13px, 1.1vw, 15px); font-weight: 400;
  color: rgba(255, 255, 255, .82);
  transition: color .25s var(--ease);
}
.contactbar a:hover { color: var(--orange); }
.contactbar svg { width: 17px; height: 17px; flex: none; fill: currentColor; }

/* ==========================================================================
   ANIMACIÓN DE ENTRADA
   Mejora progresiva: visible por defecto; solo se oculta si el script
   confirmó que puede animarlo (<html class="js-reveal">).
   ========================================================================== */
.js-reveal .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   MÓVIL
   ========================================================================== */
@media (max-width: 640px) {
  :root { --r-lg: 20px; }
  .formcard { padding: 24px 20px; }
  .promo { border-radius: var(--r-md); }
  .stat { padding-block: 22px; }
}
