/* PATHS DE ASSETS: src/Assets/images-videos/
   heroes/     → fondos de hero por página
   sections/   → imágenes complementarias
   ambient/    → texturas y fondos sutiles
   properties/ → cards de cartera
   logos/      → Logo Nordic Consultores.png
   hero-video.mp4 → vídeo fondo home
*/

/* ============================================================
   NORDIC CONSULTORES — Design System CSS
   Paleta · Tipografía · Reset · Componentes · Utilidades
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700&family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');


/* ============================================================
   1. VARIABLES — Design Tokens
   ============================================================ */

:root {
  /* --- Paleta navy --- */
  --navy-deepest:  #0B1D2E;   /* hero, footer */
  --navy-core:     #162844;   /* titulares, primario */
  --navy-dark:     #0F1C30;   /* CTA final, S04 izquierdo */
  --navy-mid-dark: #1B2D4F;   /* S04 derecho, fallback imágenes */
  --navy-mid:      #2A4A6B;   /* hovers, separadores */
  --navy-soft:     #3E6690;   /* acentos, links activos */
  --navy-haze:     #7EA3CB;   /* overlays terciarios */

  /* --- Neutros --- */
  --ice-bg:        #F0F4F8;   /* fondo institucional */
  --ice-line:      #D9E2EC;   /* líneas, bordes */
  --white:         #FFFFFF;
  --color-body:    #2C2F36;
  --color-muted:   #6B7280;

  /* --- Acento dorado (ultra-secundario: solo donde se indica) --- */
  --gold:          #9B8355;

  /* --- Separador footer --- */
  --footer-divider: #1E3050;

  /* --- Overlays --- */
  --hero-overlay:  rgba(11, 29, 46, 0.58);
  --ambient-overlay: rgba(27, 45, 79, 0.85);

  /* --- Tipografía --- */
  --font-jost:     'Jost', sans-serif;
  --font-inter:    'Inter', -apple-system, sans-serif;
  --font-playfair: 'Playfair Display', Georgia, serif;

  /* --- Escala tipográfica --- */
  --text-hero:   clamp(52px, 7vw, 88px);   /* H1 hero weight 200 */
  --text-h2:     clamp(32px, 4.5vw, 52px); /* H2 sección weight 300 */
  --text-h3:     clamp(20px, 2.5vw, 26px); /* H3 card weight 400 */
  --text-label:  11px;                     /* label uppercase */
  --text-body:   16px;
  --text-small:  13px;

  /* --- Espaciado --- */
  --section-py:      120px;
  --section-py-sm:   72px;
  --container-px:    clamp(24px, 5vw, 80px);
  --container-max:   1240px;

  /* --- Transiciones --- */
  --transition: 0.2s ease;
}


/* ============================================================
   2. RESET
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-inter);
  font-size: var(--text-body);
  color: var(--color-body);
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}


/* ============================================================
   3. TIPOGRAFÍA BASE
   ============================================================ */

/* H1 — hero display, el peso crítico es 200 */
h1,
.h1 {
  font-family: var(--font-jost);
  font-weight: 200;
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* H2 — títulos de sección */
h2,
.h2 {
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: var(--text-h2);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
}

/* H3 — títulos de card y subsección */
h3,
.h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: var(--text-h3);
  line-height: 1.25;
  color: var(--navy-core);
}

/* Párrafos */
p {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--color-body);
}

p.small,
.text-small {
  font-size: var(--text-small);
  line-height: 1.7;
  color: var(--color-muted);
}


/* ============================================================
   4. LAYOUT — Container y Section
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-py);
}

.section--sm {
  padding-block: var(--section-py-sm);
}

/* Divisor visual entre columnas de texto */
.rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--navy-mid);
  vertical-align: middle;
  margin-right: 14px;
  flex-shrink: 0;
}

.rule--white {
  background: rgba(255, 255, 255, 0.5);
}

.rule--gold {
  background: var(--gold);
}


/* ============================================================
   5. LABEL — eyebrow uppercase
   ============================================================ */

.label {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: var(--text-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 20px;
}

.label--white {
  color: rgba(255, 255, 255, 0.6);
}

.label--gold {
  color: var(--gold);
}


/* ============================================================
   6. BOTONES
   ============================================================ */

/* Base compartida — cero border-radius en toda la web */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 0;         /* regla absoluta: cero border-radius */
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), opacity var(--transition);
  white-space: nowrap;
}

/* Primario — fondo gold */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: #b09060;
  border-color: #b09060;
}

/* Outline gold — borde gold sobre fondos navy */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* Outline blanco — sobre fondos navy oscuros */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* Grupo de botones */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}


/* ============================================================
   7. NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

/* Estado transparente sobre hero */
.navbar--transparent {
  background: transparent;
}

/* Estado sólido al hacer scroll */
.navbar--solid {
  background: var(--navy-deepest);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.navbar__logo {
  display: flex;
  align-items: baseline;
  gap: 0.45em;
  text-decoration: none;
  flex-shrink: 0;       /* nunca se comprime */
  margin-right: 60px;   /* gap garantizado con el primer link */
}

.logo-nordic {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.4em;
  color: var(--white);
  text-transform: uppercase;
}

.logo-consultores {
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.navbar__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: baseline;
  gap: 36px;
  flex: 1;
  flex-wrap: nowrap;
}

.navbar__link {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 0.81rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.navbar__link:hover {
  opacity: 1;
}

.navbar__cta {
  margin-left: 16px;
}

/* Menú hamburguesa — visible en mobile */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}


/* ============================================================
   8. FOOTER
   ============================================================ */

.footer {
  background: var(--navy-deepest);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 72px;
  padding-bottom: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 56px;
}

.footer__col-label {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer__logo img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

/* Logo tipográfico en footer — apilado en dos líneas */
.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

.footer-logo-nordic {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.4em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-logo-consultores {
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  line-height: 1.2;
}

.footer__tagline {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-family: var(--font-inter);
  font-size: var(--text-small);
  color: #9B9FAA;
  transition: color var(--transition);
  line-height: 1.4;
}

.footer__link:hover {
  color: var(--gold);
}

.footer__address {
  font-family: var(--font-inter);
  font-size: var(--text-small);
  color: #9B9FAA;
  line-height: 1.8;
  font-style: normal;
}

/* Iconos RRSS */
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--white);
  transition: color var(--transition);
}

.footer__social-link:hover {
  color: var(--gold);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

/* Banda legal */
.footer__legal {
  border-top: 1px solid var(--footer-divider);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal-text {
  font-family: var(--font-inter);
  font-size: 0.75rem;
  color: #6B7280;
}

.footer__legal-link {
  font-family: var(--font-inter);
  font-size: 0.75rem;
  color: #6B7280;
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: var(--gold);
}


/* ============================================================
   9. UTILIDADES
   ============================================================ */

/* Colores de texto */
.text-white       { color: var(--white) !important; }
.text-muted       { color: var(--color-muted) !important; }
.text-navy        { color: var(--navy-core) !important; }
.text-gold        { color: var(--gold) !important; }
.text-navy-soft   { color: var(--navy-soft) !important; }

/* Fondos */
.bg-white         { background-color: var(--white); }
.bg-ice           { background-color: var(--ice-bg); }
.bg-navy          { background-color: var(--navy-core); }
.bg-navy-deep     { background-color: var(--navy-deepest); }
.bg-navy-dark     { background-color: var(--navy-dark); }
.bg-navy-mid-dark { background-color: var(--navy-mid-dark); }

/* H2 blanco — para secciones sobre navy */
.bg-navy h2,
.bg-navy-deep h2,
.bg-navy-dark h2,
.bg-navy-mid-dark h2 {
  color: var(--white);
}

.bg-navy p,
.bg-navy-deep p,
.bg-navy-dark p,
.bg-navy-mid-dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* Separadores */
.divider-line {
  width: 100%;
  height: 1px;
  background: var(--ice-line);
}

.divider-line--navy {
  background: rgba(255, 255, 255, 0.1);
}

/* Imágenes — regla global: sin border-radius, cover */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;       /* explícito: cero border-radius */
}

/* Overlay sobre imágenes y vídeo */
.overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}

.overlay--ambient {
  background: var(--ambient-overlay);
  mix-blend-mode: multiply;
}

/* Posicionamiento */
.relative { position: relative; }
.absolute { position: absolute; }

/* Alineación de texto */
.text-center  { text-align: center; }
.text-left    { text-align: left; }

/* Display */
.d-flex       { display: flex; }
.d-grid       { display: grid; }

/* Espaciado top para elementos que siguen al navbar fijo */
.navbar-offset {
  padding-top: 72px;
}

/* Visibilidad responsive */
.hide-mobile  { display: block; }
.show-mobile  { display: none; }


/* ============================================================
   10. RESPONSIVE — Breakpoints
   ============================================================ */

/* Tablet — ≤ 1024px */
@media (max-width: 1024px) {
  :root {
    --section-py:    80px;
    --section-py-sm: 56px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .navbar__nav {
    gap: 24px;
  }

  .navbar__logo {
    margin-right: 32px;
  }
}

/* Mobile — ≤ 768px */
@media (max-width: 768px) {
  :root {
    --section-py:    56px;
    --section-py-sm: 40px;
  }

  /* Navbar mobile */
  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  /* Footer mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__col:first-child {
    text-align: center;
  }

  .footer__col:first-child .footer__social {
    justify-content: center;
  }

  .footer__legal {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Botones en mobile */
  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Visibilidad */
  .hide-mobile  { display: none; }
  .show-mobile  { display: block; }
}


/* ============================================================
   11. NAVBAR DROPDOWN + MOBILE MENU
   ============================================================ */

/* --- Dropdown trigger --- */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 0.81rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity var(--transition);
}

.navbar__dropdown-trigger:hover {
  opacity: 1;
}

/* Chevron como ::after — no afecta al line-height del texto */
.navbar__dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 7px;
  vertical-align: middle;
  transition: transform var(--transition);
}

.navbar__dropdown:hover .navbar__dropdown-trigger::after,
.navbar__dropdown.is-open .navbar__dropdown-trigger::after {
  transform: rotate(225deg) translateY(2px);
}

/* --- Dropdown menu panel --- */
.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 272px;
  background: var(--navy-deepest);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition),
              transform var(--transition);
  z-index: 200;
}

.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown.is-open .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-link {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-inter);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition), background var(--transition);
}

.navbar__dropdown-link:last-child {
  border-bottom: none;
}

.navbar__dropdown-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  padding-left: 28px;
}

/* --- Botón pequeño --- */
.btn--sm {
  padding: 10px 22px;
  font-size: 10px;
  letter-spacing: 0.22em;
}

/* --- Mobile hamburger estado abierto --- */
.navbar--open .navbar__toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar--open .navbar__toggle span:nth-child(2) {
  opacity: 0;
}
.navbar--open .navbar__toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --- Mobile menu overlay --- */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deepest);
  padding: 24px var(--container-px) 40px;
  flex-direction: column;
  overflow-y: auto;
  z-index: 999;
}

.navbar__mobile-link {
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  transition: color var(--transition);
}

.navbar__mobile-link:hover {
  color: var(--white);
}

.navbar__mobile-sub {
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar__mobile-sub-link {
  display: block;
  font-family: var(--font-inter);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color var(--transition);
}

.navbar__mobile-sub-link:last-child {
  border-bottom: none;
}

.navbar__mobile-sub-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.navbar__mobile-cta {
  margin-top: 32px;
}

.navbar__mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 769px) {
  /* El menú mobile nunca aparece en desktop aunque JS lo active */
  .navbar__mobile-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .navbar--open .navbar__mobile-menu {
    display: flex;
  }

  /* Bloquear scroll del body cuando el menú está abierto */
  body.menu-open {
    overflow: hidden;
  }
}


/* ============================================================
   12. HOME — SECCIONES
   ============================================================ */

/* ---- S01 HERO ---- */

.s01-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--navy-deepest);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.50);
  z-index: 1;
}

.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 80px;
}

.hero__content {
  max-width: 760px;
}

.hero__eyebrow {
  margin-bottom: 36px;
}

.hero__title {
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__subtitle {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin-bottom: 48px;
}

.hero__ctas {
  gap: 16px;
}

.hero__ctas .btn-outline {
  background: var(--navy-core);
  color: var(--white);
  border: 1px solid var(--navy-core);
}

.hero__ctas .btn-outline:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

/* Strip inferior */
.hero__strip {
  position: relative;
  z-index: 2;
  background: var(--navy-deepest);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.hero__strip-item {
  padding: 28px 40px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__strip-item:not(:first-child) {
  padding-left: 40px;
}

.hero__strip-item:last-child {
  border-right: none;
}

.hero__strip-label {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.hero__strip-text {
  font-family: var(--font-inter);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}


/* ---- S02 LA FIRMA ---- */

.s02-firma {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.s02-firma__text {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 100px 72px 100px var(--container-px);
}

@media (min-width: 1400px) {
  .s02-firma__text {
    padding-left: calc((100vw - var(--container-max)) / 2 + var(--container-px));
  }
}

.s02-firma__text-wrap {
  max-width: 520px;
}

.s02-firma__text .label {
  margin-bottom: 20px;
}

.s02-firma__text h2 {
  margin-bottom: 28px;
}

.s02-firma__text p + p {
  margin-top: 18px;
}

.s02-firma__image {
  overflow: hidden;
}

.s02-firma__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.75) brightness(0.88);
}


/* ---- S03 CIFRAS ---- */

.s03-cifras {
  position: relative;
  background-image: url('../Assets/images-videos/ambient/ambient-city-bokeh.jpg');
  background-size: cover;
  background-position: center;
  background-color: #1B2D4F;
  background-blend-mode: multiply;
  padding: var(--section-py) 0;
}

.s03-cifras__header {
  text-align: center;
  margin-bottom: 72px;
}

.s03-cifras__header .label {
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.s03-cifras__header h2 {
  color: var(--white);
}

.s03-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.s03-stat {
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.s03-stat:last-child {
  border-right: none;
}

.s03-stat__number {
  font-family: var(--font-jost);
  font-weight: 200;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.s03-stat__label {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 8px;
}

.s03-stat__sub {
  font-family: var(--font-inter);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}


/* ---- S04 BIFURCACIÓN ---- */

.s04-bifurcacion {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.s04-block {
  padding: 100px clamp(40px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.s04-block__eyebrow {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.s04-block h3 {
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.s04-block p {
  font-family: var(--font-inter);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 440px;
}

.s04-block .btn {
  align-self: flex-start;
  margin-top: 8px;
}


/* ---- S05 TIPOS DE OPERACIÓN ---- */

.s05-operaciones {
  background: var(--ice-bg);
  padding: var(--section-py) 0;
}

.s05-header {
  margin-bottom: 64px;
}

.s05-header .label {
  margin-bottom: 20px;
  color: var(--gold);
}

.s05-header .rule {
  background: var(--gold);
}

.s05-header h2 {
  margin-bottom: 16px;
}

.s05-intro {
  max-width: 600px;
  color: var(--color-muted);
}

.s05-group {
  margin-bottom: 60px;
}

.s05-group:last-child {
  margin-bottom: 0;
}

.s05-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ice-line);
}

.s05-group__label {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.s05-cards {
  display: grid;
  gap: 0;
  border: 1px solid var(--ice-line);
  margin-bottom: 20px;
}

.s05-cards--four {
  grid-template-columns: repeat(4, 1fr);
}

.s05-cards--two {
  grid-template-columns: repeat(2, 1fr);
}

.s05-card {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--ice-line);
  transition: border-color var(--transition);
}

.s05-card:last-child {
  border-right: none;
}

.s05-card:hover {
  border-color: var(--navy-mid);
}

.s05-card__num {
  font-family: var(--font-jost);
  font-weight: 200;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.s05-card h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 17px;
  color: var(--navy-core);
  line-height: 1.3;
}

.s05-card p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.75;
}

.s05-group__cta {
  display: flex;
  justify-content: flex-end;
}

.s05-group__cta a {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-core);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.s05-group__cta a:hover {
  opacity: 1;
}


/* ---- S06 CÓMO TRABAJAMOS ---- */

.s06-proceso {
  background: var(--white);
  padding: var(--section-py) 0;
}

.s06-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.s06-header .label {
  margin-bottom: 20px;
  color: var(--gold);
}

.s06-header .rule {
  background: var(--gold);
}

.s06-header h2 {
  margin-bottom: 16px;
}

.s06-intro {
  color: var(--color-muted);
}

.s06-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0 40px;
}

/* Línea conectora — atraviesa el centro vertical de los círculos */
.s06-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: var(--ice-line);
  z-index: 0;
}

.s06-step {
  position: relative;
  z-index: 1;
}

.s06-step__circle {
  width: 48px;
  height: 48px;
  background: var(--navy-core);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.s06-step h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 18px;
  color: var(--navy-core);
  margin-bottom: 14px;
  line-height: 1.3;
}

.s06-step p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.75;
}


/* ---- S07 CTA FINAL ---- */

.s07-cta {
  position: relative;
  background-color: var(--navy-deepest);
  padding: 128px 0;
  overflow: hidden;
  text-align: center;
}

.s07-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../Assets/images-videos/ambient/ambient-dark-texture.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.s07-cta .container {
  position: relative;
  z-index: 1;
}

.s07-cta h2 {
  color: var(--white);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.s07-cta p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 52px;
}

.s07-cta .btn-group {
  justify-content: center;
}


/* ============================================================
   13. RESPONSIVE — HOME SECTIONS
   ============================================================ */

@media (max-width: 1024px) {
  .s05-cards--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .s05-card:nth-child(2) {
    border-right: none;
  }

  .s05-card:nth-child(1),
  .s05-card:nth-child(2) {
    border-bottom: 1px solid var(--ice-line);
  }

  .s06-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 48px;
  }

  .s06-steps::before {
    display: none;
  }

  .s06-step {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  /* Hero — vídeo mobile (source media en HTML) */

  /* Hero */
  .hero__body {
    padding-top: 120px;
    padding-bottom: 48px;
    align-items: flex-start;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__strip-inner {
    grid-template-columns: 1fr;
  }

  .hero__strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }

  .hero__strip-item:not(:first-child) {
    padding-left: 0;
  }

  .hero__strip-item:last-child {
    border-bottom: none;
  }

  /* S02 */
  .s02-firma {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .s02-firma__image {
    min-height: 320px;
    order: -1;
    max-width: 100%;
  }

  .s02-firma__text {
    padding: 64px var(--container-px);
  }

  .s02-firma__text-wrap {
    max-width: 100%;
    width: 100%;
  }

  /* S03 */
  .s03-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .s03-stat:nth-child(2) {
    border-right: none;
  }

  .s03-stat:nth-child(1),
  .s03-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .s03-stat__number {
    font-size: clamp(28px, 8vw, 48px);
  }

  /* S04 */
  .s04-bifurcacion {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .s04-block {
    padding: 72px var(--container-px);
    overflow: hidden;
  }

  .s04-block .btn {
    white-space: normal;
    line-height: 1.4;
    max-width: 100%;
  }

  /* S05 */
  .s05-cards--four,
  .s05-cards--two {
    grid-template-columns: 1fr;
  }

  .s05-card {
    border-right: none;
    border-bottom: 1px solid var(--ice-line);
  }

  .s05-card:last-child {
    border-bottom: none;
  }

  /* S06 */
  .s06-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Hero mobile — reduce H1 scale */
  .hero__title {
    font-size: clamp(32px, 9vw, 46px);
    margin-bottom: 20px;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .hero__eyebrow {
    margin-bottom: 20px;
  }

  /* S03 — reduce section & inner stat padding */
  .s03-cifras {
    padding: 72px 0;
  }

  .s03-cifras__header {
    margin-bottom: 48px;
  }

  .s03-stat {
    padding: 32px 16px;
  }

  /* S05 — reduce padding & stack group header */
  .s05-operaciones {
    padding: 72px 0;
  }

  .s05-header {
    margin-bottom: 48px;
  }

  .s05-group {
    margin-bottom: 48px;
  }

  .s05-group__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* S06 — reduce section padding */
  .s06-proceso {
    padding: 72px 0;
  }

  .s06-header {
    margin-bottom: 48px;
  }

  /* S07 */
  .s07-cta {
    padding: 80px 0;
  }

  .s07-cta .btn-group {
    flex-direction: column;
    align-items: center;
  }
}


/* ============================================================
   SCROLL ANIMATIONS — Intersection Observer
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--i, 0) * 0.1s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   LIQUIDEZ — S01 HERO
   ============================================================ */

.liq-hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--navy-deepest);
  display: flex;
  flex-direction: column;
}

/* Imagen de fondo + overlay */
.liq-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../Assets/images-videos/hero/hero-liquidez.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.liq-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.72);
}

/* Cuerpo con las dos columnas */
.liq-hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 148px 0 80px;
}

.liq-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Columna izquierda — Texto */
.liq-hero__left {
  color: var(--white);
}

.liq-hero__left .label {
  color: var(--gold);
}

.liq-hero__left .rule {
  background: var(--gold);
}

.liq-hero__left .btn-outline {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.liq-hero__left .btn-outline:hover {
  background: #b09060;
  border-color: #b09060;
}

.liq-hero__title {
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 66px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 20px 0 28px;
}

.liq-hero__subtitle {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 44px;
  max-width: 500px;
}

/* Columna derecha — Formulario sticky */
.liq-hero__right {
  position: sticky;
  top: 96px;
  align-self: start;
}

/* Tarjeta del formulario */
.liq-form-card {
  background: var(--white);
  box-shadow: 0 12px 56px rgba(11, 29, 46, 0.32);
  overflow: hidden;
}

/* Barra de progreso */
.liq-form-progress {
  height: 3px;
  background: var(--ice-line);
}

.liq-form-progress__fill {
  height: 100%;
  background: var(--gold);
  width: 20%;
  transition: width 0.35s ease;
}

/* Interior del formulario */
.liq-form-card__inner {
  padding: 40px;
}

.liq-form-card__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ice-line);
}

.liq-form-card__header h3 {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 17px;
  color: var(--navy-core);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.liq-form-card__header p {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
}

/* Pasos */
.liq-form-step {
  display: none;
}

.liq-form-step--active {
  display: block;
}

.liq-form-step__counter {
  display: block;
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.liq-form-step__label {
  display: block;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-core);
  margin-bottom: 14px;
}

/* Select wrapper con flecha custom */
.liq-form-select-wrap {
  position: relative;
}

.liq-form-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--navy-soft);
  border-bottom: 1px solid var(--navy-soft);
  pointer-events: none;
}

.liq-form-select-wrap select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1px solid var(--ice-line);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  background: var(--white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.liq-form-select-wrap select:focus {
  border-color: var(--navy-mid);
}

/* Textarea "Otro" */
.liq-form-textarea {
  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--ice-line);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  background: var(--white);
  resize: vertical;
  outline: none;
  min-height: 88px;
  line-height: 1.6;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.liq-form-textarea:focus {
  border-color: var(--navy-mid);
}

/* Inputs paso 5 */
.liq-form-input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ice-line);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.liq-form-input:focus {
  border-color: var(--navy-mid);
}

/* Botón submit (paso 5) */
.liq-form-btn-submit {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background: var(--navy-core);
  color: var(--white);
  border: none;
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.liq-form-btn-submit:hover {
  background: var(--navy-mid);
}

/* Notas inferiores */
.liq-form-note {
  font-family: var(--font-inter);
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.liq-form-note--small {
  font-size: 11px;
  margin-top: 6px;
  opacity: 0.8;
}

/* Navegación → entre pasos */
.liq-form-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.liq-form-btn-next {
  width: 48px;
  height: 48px;
  background: var(--navy-core);
  color: var(--white);
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.liq-form-btn-next:hover {
  background: var(--navy-mid);
}

/* Link activo en navbar */
.navbar__link--active,
.navbar--transparent .navbar__link--active,
.navbar--solid .navbar__link--active {
  opacity: 1 !important;
  color: #9B8355 !important;
}

/* Strip inferior */
.liq-hero__strip {
  position: relative;
  z-index: 1;
  background: #0B1D2E;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.liq-hero__strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.liq-hero__strip-item {
  padding: 28px 40px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.liq-hero__strip-item:first-child {
  padding-left: 0;
}

.liq-hero__strip-item:last-child {
  border-right: none;
  padding-left: 40px;
}

.liq-hero__strip-item:nth-child(2) {
  padding-left: 40px;
}

.liq-strip__label {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.liq-strip__text {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* --- Responsive S01 --- */
@media (max-width: 1024px) {
  .liq-hero__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .liq-hero__right {
    position: static;
  }

  .liq-hero__title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
  }

  .liq-hero__body {
    padding: 120px 0 60px;
  }
}

@media (max-width: 768px) {
  .liq-hero__strip-inner {
    grid-template-columns: 1fr;
  }

  .liq-hero__strip-item {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .liq-hero__strip-item:last-child {
    border-bottom: none;
    padding-left: 0;
  }

  .liq-hero__strip-item:nth-child(2) {
    padding-left: 0;
  }

  .liq-form-card__inner {
    padding: 28px 24px;
  }

  /* Hero mobile — imagen de fondo (inline style en <section> requiere !important) */
  .liq-hero {
    background-image: url('../Assets/images-videos/hero/hero-liquidez-mobile.png') !important;
    background-attachment: scroll;
    will-change: background-image;
  }

  /* Hero mobile order: eyebrow → h1 → subtítulo → form → CTA */
  .liq-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .liq-hero__left {
    display: contents;
  }

  .liq-hero__left .label  { order: 1; }
  .liq-hero__title        { order: 2; }
  .liq-hero__subtitle     { order: 3; }
  .liq-hero__right        { order: 4; }
  .liq-hero__left .btn    { order: 5; margin-top: 28px; }
}


/* ============================================================
   LIQUIDEZ — S02 SITUACIONES
   ============================================================ */

.liq-s02 {
  padding: var(--section-py) 0;
  background: var(--white);
}

.liq-s02__header {
  max-width: 640px;
  margin-bottom: 64px;
}

.liq-s02__intro {
  font-size: var(--text-body);
  color: var(--color-muted);
  line-height: 1.75;
  margin-top: 20px;
}

.liq-s02__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.liq-s02__card {
  padding: 40px 36px;
  border: 1px solid var(--ice-line);
  transition: border-color var(--transition);
}

.liq-s02__card:hover {
  border-color: var(--navy-mid);
}

.liq-s02__card-num {
  display: block;
  font-family: var(--font-jost);
  font-weight: 200;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.liq-s02__card h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 19px;
  color: var(--navy-core);
  line-height: 1.3;
  margin-bottom: 16px;
}

.liq-s02__card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .liq-s02__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ============================================================
   LIQUIDEZ — S03 SOLUCIONES
   ============================================================ */

.liq-s03 {
  padding: var(--section-py) 0;
  background: var(--ice-bg);
}

.liq-s03__header {
  margin-bottom: 64px;
}

.liq-s03__intro {
  font-size: var(--text-body);
  color: var(--color-muted);
  line-height: 1.75;
  margin-top: 20px;
}

/* Grid 2x2 + 1 centrada */
.liq-s03__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.liq-s03__card {
  grid-column: span 2;
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--ice-line);
  transition: border-color var(--transition);
}

.liq-s03__card:hover {
  border-color: var(--navy-mid);
}

/* Card 5 — centrada */
.liq-s03__card--centered {
  grid-column: 2 / 4;
}

.liq-s03__num {
  display: block;
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 11px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.liq-s03__card h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 18px;
  color: var(--navy-core);
  line-height: 1.3;
  margin-bottom: 12px;
}

.liq-s03__tag {
  display: inline-block;
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 16px;
  padding: 5px 10px;
  border: 1px solid var(--ice-line);
}

.liq-s03__card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .liq-s03__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .liq-s03__card {
    grid-column: span 1;
  }

  .liq-s03__card--centered {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .liq-s03__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   LIQUIDEZ — S04 PROCESO
   ============================================================ */

.liq-s04 {
  padding: var(--section-py) 0;
  background: var(--navy-core);
}

.liq-s04__header {
  max-width: 640px;
  margin-bottom: 72px;
}

.liq-s04__header h2 {
  color: var(--white);
}

.liq-s04__intro {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-top: 20px;
}

/* Steps — reutiliza la misma lógica que home S06 */
.liq-s04__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
  position: relative;
}

.liq-s04__steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.liq-s04__step {
  position: relative;
  z-index: 1;
}

.liq-s04__circle {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.liq-s04__step h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.liq-s04__step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .liq-s04__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .liq-s04__steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .liq-s04__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ============================================================
   LIQUIDEZ — S05 COMPARATIVA
   ============================================================ */

.liq-s05 {
  padding: var(--section-py) 0;
  background: var(--white);
}

.liq-s05__header {
  max-width: 640px;
  margin-bottom: 64px;
}

.liq-s05__table-wrap {
  overflow-x: auto;
}

.liq-s05__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-inter);
  font-size: 14px;
}

.liq-s05__table thead th {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0 24px 20px;
  text-align: left;
  border-bottom: 2px solid var(--ice-line);
}

.liq-s05__table thead th:first-child {
  width: 28%;
  padding-left: 0;
}

.liq-s05__th-nordic {
  color: var(--navy-core) !important;
}

.liq-s05__table tbody tr:nth-child(even) {
  background: var(--ice-bg);
}

.liq-s05__table tbody td {
  padding: 18px 24px;
  color: var(--color-muted);
  border-bottom: 1px solid var(--ice-line);
  line-height: 1.5;
}

.liq-s05__criteria {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 13px;
  color: var(--navy-core) !important;
  padding-left: 0 !important;
}

.liq-s05__td-nordic {
  color: var(--navy-core) !important;
  font-weight: 500;
}

.liq-s05__table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .liq-s05__table thead th,
  .liq-s05__table tbody td {
    padding: 14px 12px;
  }
}


/* ============================================================
   LIQUIDEZ — S06 GARANTÍAS
   ============================================================ */

.liq-s06 {
  padding: var(--section-py) 0;
  background: var(--navy-deepest);
}

.liq-s06__header {
  max-width: 540px;
  margin-bottom: 72px;
}

.liq-s06__header h2 {
  color: var(--white);
}

.liq-s06__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.liq-s06__col {
  padding: 48px 48px 48px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.liq-s06__col:first-child {
  padding-left: 0;
}

.liq-s06__col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}

.liq-s06__col:nth-child(2) {
  padding-left: 48px;
}

.liq-s06__col-num {
  font-family: var(--font-jost);
  font-weight: 200;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.liq-s06__col h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.liq-s06__col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .liq-s06__cols {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .liq-s06__col {
    padding: 32px 0;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .liq-s06__col:last-child {
    padding-left: 0;
  }

  .liq-s06__col:nth-child(2) {
    padding-left: 0;
  }
}


/* ============================================================
   LIQUIDEZ — S07 FORMULARIO COMPLETO
   ============================================================ */

.liq-s07 {
  padding: var(--section-py) 0;
  background: var(--ice-bg);
}

.liq-s07__header {
  max-width: 600px;
  margin-bottom: 56px;
}

.liq-s07__header p {
  font-size: var(--text-body);
  color: var(--color-muted);
  line-height: 1.75;
  margin-top: 16px;
}

.liq-s07__form {
  max-width: 800px;
}

.liq-s07__row {
  margin-bottom: 24px;
}

.liq-s07__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.liq-s07__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.liq-s07__field > label:not(.liq-s07__radio):not(.liq-s07__checkbox) {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-core);
}

.liq-s07__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: var(--color-muted);
}

.liq-s07__field input[type="text"],
.liq-s07__field input[type="tel"],
.liq-s07__field textarea {
  padding: 14px 16px;
  border: 1px solid var(--ice-line);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.liq-s07__field input:focus,
.liq-s07__field textarea:focus {
  border-color: var(--navy-mid);
}

.liq-s07__field textarea {
  resize: vertical;
  line-height: 1.6;
}

/* Radio group */
.liq-s07__radio-group {
  display: flex;
  gap: 32px;
  padding: 14px 0 4px;
}

.liq-s07__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-body);
  cursor: pointer;
  font-family: var(--font-inter);
}

.liq-s07__radio input {
  accent-color: var(--navy-core);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Checkbox privacidad */
.liq-s07__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font-inter);
  line-height: 1.5;
}

.liq-s07__checkbox input {
  accent-color: var(--navy-core);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.liq-s07__checkbox a {
  color: var(--navy-core);
  text-decoration: underline;
}

/* Submit */
.liq-s07__submit {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.liq-s07__note {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .liq-s07__row--2 {
    grid-template-columns: 1fr;
  }

  .liq-s07__radio-group {
    flex-direction: column;
    gap: 16px;
  }
}


/* ============================================================
   LIQUIDEZ — AJUSTES GLOBALES (5 cambios)
   ============================================================ */

/* 1. Padding 96px para todas las secciones liq- */
.liq-s02,
.liq-s03,
.liq-s04,
.liq-s05,
.liq-s06,
.liq-s07 {
  padding-block: 96px;
}

/* 2. Tabla S05 — columna Nordic */
.liq-s05__table thead .liq-s05__th-nordic {
  background: #162844;
  color: var(--gold) !important;
  padding-top: 20px;
  padding-bottom: 20px;
}

.liq-s05__table tbody .liq-s05__td-nordic {
  background: #162844;
  color: var(--white) !important;
  font-weight: 500;
}

.liq-s05__table tbody tr:nth-child(even) .liq-s05__td-nordic {
  background: #1d3560;
}

.liq-s05__table tbody tr:nth-child(even) td:not(.liq-s05__td-nordic) {
  background: #f5f7fa;
}

/* Borde superior S06 — tono gold */
.liq-s06__cols {
  border-top: 1px solid rgba(155, 131, 85, 0.4);
}

/* 4. Hero fallback si la imagen no carga */
.liq-hero__bg {
  background-color: #0B1D2E;
}

/* S03 header — ancho completo sin imagen */
.liq-s03__header {
  max-width: 640px;
  margin-bottom: 64px;
}

/* 5. S04 imágenes en pasos 01 y 04 */
.liq-s04__step-img {
  margin-top: 20px;
  height: 120px;
  overflow: hidden;
}

.liq-s04__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.75) brightness(0.88);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .liq-s02,
  .liq-s03,
  .liq-s04,
  .liq-s05,
  .liq-s06,
  .liq-s07 {
    padding-block: 72px;
  }

  .liq-s03__header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .liq-s03__header-img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .liq-s02,
  .liq-s03,
  .liq-s04,
  .liq-s05,
  .liq-s06,
  .liq-s07 {
    padding-block: 56px;
  }
}


/* ============================================================
   LIQUIDEZ — AJUSTES 4 (hero overlay, S06 textura, S07 layout)
   ============================================================ */

/* 1. Hero — overlay como div hijo, imagen en section inline */
.liq-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.55);
  z-index: 0;
}

/* Limpiar .liq-hero__bg anterior (renombrado a overlay) */
.liq-hero__bg {
  display: none;
}

/* 2. S06 — textura de profundidad via ::before */
.liq-s06 {
  position: relative;
}

.liq-s06::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../Assets/images-videos/ambient/ambient-dark-texture.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.liq-s06 .container {
  position: relative;
  z-index: 1;
}

/* 3. S07 — layout dos columnas */
.liq-s07__layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: stretch;
}

.liq-s07__left {
  min-width: 0;
}

.liq-s07__right {
  overflow: hidden;
  min-height: 600px;
}

.liq-s07__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.85);
}

/* Quitar max-width del form dentro del layout */
.liq-s07__left .liq-s07__form {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .liq-s07__layout {
    grid-template-columns: 1fr;
  }

  .liq-s07__right {
    display: none;
  }
}


/* ============================================================
   LIQUIDEZ — 5 ajustes diseño gold
   ============================================================ */

/* 1. Labels de sección — gold */
.liq-s02 .label,
.liq-s03 .label,
.liq-s04 .label,
.liq-s05 .label,
.liq-s06 .label {
  color: var(--gold);
}

/* Labels con rule en secciones claras — rule gold */
.liq-s02 .rule,
.liq-s03 .rule,
.liq-s05 .rule {
  background: var(--gold);
  opacity: 0.6;
}

/* Labels en secciones oscuras — rule semi-transparente */
.liq-s04 .rule--white,
.liq-s06 .rule--white {
  background: var(--gold);
  opacity: 0.5;
}

/* 2. Tags cards S03 */
.liq-s03__tag {
  color: var(--gold);
  font-family: var(--font-jost);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-color: rgba(155, 131, 85, 0.3);
}

/* 3. H2 con línea gold en S03 y S05 */
.liq-s03 h2,
.liq-s05 h2 {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

/* 4. Iconos SVG S06 */
.liq-s06__icon {
  width: 32px;
  height: 32px;
  display: block;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* 5. Strip hero — borde top gold */
.liq-hero__strip {
  border-top: 1px solid rgba(155, 131, 85, 0.5);
}


/* ============================================================
   INVERSORES — S01–S05
   ============================================================ */

/* Shared label + rule gold para inv- */
.inv-label {
  color: var(--gold);
}

.inv-rule {
  background: var(--gold);
  opacity: 0.6;
}

/* --- S01 Hero --- */
.inv-hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--navy-deepest);
  display: flex;
  flex-direction: column;
}

.inv-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.72);
  z-index: 0;
}

.inv-hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 148px 0 80px;
}

.inv-hero__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inv-hero__eyebrow {
  justify-content: center;
  color: var(--gold);
}

.inv-hero__eyebrow .rule {
  background: var(--gold);
}

.inv-hero__title {
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 88px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 20px 0 28px;
}

.inv-hero__subtitle {
  font-family: var(--font-inter);
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 44px;
  max-width: 600px;
  text-align: center;
}

/* Strip */
.inv-hero__strip {
  position: relative;
  z-index: 1;
  background: #0B1D2E;
  border-top: 1px solid rgba(155, 131, 85, 0.5);
}

.inv-hero__strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.inv-hero__strip-item {
  padding: 32px 40px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  align-items: center;
}

.inv-hero__strip-item:first-child {
  padding-left: 0;
}

.inv-hero__strip-item:last-child {
  border-right: none;
}

.inv-strip__value {
  font-family: var(--font-jost);
  font-weight: 300;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}

.inv-strip__label {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* --- S02 Por qué Nordic --- */
.inv-s02 {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 600px;
}

.inv-s02__text {
  display: flex;
  align-items: center;
  padding: var(--section-py) clamp(24px, 6vw, 120px) var(--section-py) clamp(24px, 6vw, 120px);
  background: var(--white);
}

.inv-s02__text-wrap {
  max-width: 560px;
  margin-left: auto;
  padding-right: 72px;
}

.inv-s02__text-wrap h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 20px 0 28px;
  line-height: 1.2;
}

.inv-s02__text-wrap p {
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.inv-s02__image {
  overflow: hidden;
  position: relative;
}

.inv-s02__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 40, 68, 0.15);
  z-index: 1;
}

.inv-s02__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.6) brightness(0.85);
}

/* --- S03 El modelo --- */
.inv-s03 {
  padding: var(--section-py) 0;
  background: var(--ice-bg);
}

.inv-s03__header {
  max-width: 540px;
  margin-bottom: 64px;
}

.inv-s03__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.inv-s03__card {
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--ice-line);
  transition: border-color var(--transition);
}

.inv-s03__card:hover {
  border-color: var(--navy-mid);
}

.inv-s03__icon {
  width: 40px;
  height: 40px;
  display: block;
  stroke-width: 1.2;
  margin-bottom: 20px;
}

.inv-s03__num {
  display: block;
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.inv-s03__card h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 18px;
  color: var(--navy-core);
  margin-bottom: 14px;
  line-height: 1.3;
}

.inv-s03__card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.75;
}

/* --- S04 Tipologías --- */
.inv-s04 {
  padding: var(--section-py) 0;
  background: var(--white);
}

.inv-s04__header {
  max-width: 640px;
  margin-bottom: 56px;
}

.inv-s04__intro {
  font-size: var(--text-body);
  color: var(--color-muted);
  line-height: 1.75;
  margin-top: 18px;
}

.inv-s04__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.inv-s04__card {
  padding: 40px 36px;
  border: 1px solid var(--ice-line);
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.inv-s04__card:hover {
  border-color: var(--navy-mid);
}

.inv-s04__card--featured {
  border: 2px solid #162844;
  background: var(--ice-bg);
  box-shadow: 0 4px 24px rgba(22, 40, 68, 0.10);
}

.inv-s04__tag {
  display: flex;
  align-items: flex-start;
  min-height: 2.8em;
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.inv-s04__num {
  display: block;
  font-family: var(--font-jost);
  font-weight: 200;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.inv-s04__card h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 18px;
  color: var(--navy-core);
  margin-bottom: 14px;
  line-height: 1.3;
  min-height: 2.6em;
}

.inv-s04__card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.inv-s04__specs {
  list-style: none;
  border-top: 1px solid var(--ice-line);
  padding-top: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inv-s04__specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.4;
  text-align: right;
}

.inv-s04__specs li span {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 11px;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: left;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

/* --- S05 Métricas --- */
.inv-s05 {
  position: relative;
  padding: var(--section-py) 0;
  background-image: url('../Assets/images-videos/ambient/ambient-city-bokeh.jpg');
  background-size: cover;
  background-position: center;
  background-color: #162844;
  background-blend-mode: multiply;
}

.inv-s05__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 45, 79, 0.60);
  z-index: 0;
}

.inv-s05 .container {
  position: relative;
  z-index: 1;
}

.inv-s05__header {
  margin-bottom: 64px;
}

.inv-s05__h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 56px);
}

.inv-s05__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 48px;
  border-top: 1px solid rgba(155, 131, 85, 0.4);
}

.inv-s05__stat {
  padding: 48px 0 0;
  border-right: 1px solid rgba(155, 131, 85, 0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inv-s05__stat:last-child {
  border-right: none;
  padding-right: 0;
}

.inv-s05__num {
  font-family: var(--font-jost);
  font-weight: 200;
  font-size: clamp(64px, 9vw, 108px);
  color: #C4A96D;
  line-height: 1;
  letter-spacing: -0.02em;
}

.inv-s05__stat-label {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
}

.inv-s05__stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

/* --- Responsive inversores S01–S05 --- */
@media (max-width: 1024px) {
  .inv-hero__strip-inner {
    grid-template-columns: 1fr;
  }

  .inv-hero__strip-item {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .inv-hero__strip-item:last-child {
    border-bottom: none;
  }

  .inv-s02 {
    grid-template-columns: 1fr;
  }

  .inv-s02__image {
    min-height: 320px;
    order: -1;
  }

  .inv-s02__text-wrap {
    padding-right: 0;
    max-width: 100%;
  }

  .inv-s03__cards,
  .inv-s04__cards {
    grid-template-columns: 1fr;
  }

  .inv-s05__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
  }

  .inv-s05__stat {
    padding: 0;
    border-right: none;
  }
}

@media (max-width: 768px) {
  /* Hero mobile — imagen de fondo (inline style overriden con !important) */
  .inv-hero {
    background-image: url('../Assets/images-videos/hero/hero-inversion-mobile.png') !important;
    background-attachment: scroll;
    will-change: background-image;
  }

  .inv-hero__title {
    font-weight: 400;
  }

  .inv-s05__stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* ============================================================
   INVERSORES — S06 SEGURIDAD, S07 FORMULARIO, S08 DISCLAIMER
   ============================================================ */

/* --- S06 Seguridad --- */
.inv-s06 {
  position: relative;
  padding: var(--section-py) 0;
  background: #0B1D2E;
}

.inv-s06__texture {
  position: absolute;
  inset: 0;
  background-image: url('../Assets/images-videos/ambient/ambient-dark-texture.jpg');
  background-size: cover;
  background-color: #0B1D2E;
  background-blend-mode: multiply;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.inv-s06 .container {
  position: relative;
  z-index: 1;
}

.inv-s06__header {
  max-width: 640px;
  margin-bottom: 64px;
}

.inv-s06__header h2 {
  color: var(--white);
  margin: 18px 0 20px;
}

.inv-s06__intro {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.inv-s06__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.inv-s06__block {
  padding: 48px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inv-s06__block:nth-child(even) {
  border-right: none;
}

.inv-s06__block:nth-child(3),
.inv-s06__block:nth-child(4) {
  border-bottom: none;
}

.inv-s06__icon {
  width: 32px;
  height: 32px;
  display: block;
  margin-bottom: 20px;
}

.inv-s06__block h3 {
  font-family: var(--font-jost);
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.inv-s06__block p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* --- S07 Formulario --- */
.inv-s07 {
  background: var(--white);
  overflow: hidden;
}

.inv-s07__layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 700px;
}

.inv-s07__left {
  display: flex;
  align-items: flex-start;
  padding: var(--section-py) clamp(24px, 5vw, 80px) var(--section-py) clamp(24px, 6vw, 120px);
}

.inv-s07__left-inner {
  width: 100%;
  max-width: 560px;
}

.inv-s07__right {
  overflow: hidden;
}

.inv-s07__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.5) brightness(0.75);
}

.inv-s07__header {
  margin-bottom: 40px;
}

.inv-s07__header h2 {
  margin-bottom: 16px;
}

.inv-s07__header p {
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.75;
}

.inv-s07__form {
  max-width: 100%;
}

.inv-s07__row {
  margin-bottom: 20px;
}

.inv-s07__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inv-s07__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inv-s07__field > label:not(.inv-s07__checkbox) {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-core);
}

.inv-s07__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-muted);
  font-size: 11px;
}

.inv-s07__field input[type="text"],
.inv-s07__field input[type="tel"],
.inv-s07__field input[type="email"] {
  padding: 14px 16px;
  border: 1px solid var(--ice-line);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  box-sizing: border-box;
  width: 100%;
}

.inv-s07__field input:focus {
  border-color: var(--navy-mid);
}

.inv-s07__select-wrap {
  position: relative;
}

.inv-s07__select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--navy-soft);
  border-bottom: 1px solid var(--navy-soft);
  pointer-events: none;
}

.inv-s07__select-wrap select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1px solid var(--ice-line);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  background: var(--white);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.inv-s07__select-wrap select:focus {
  border-color: var(--navy-mid);
}

.inv-s07__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font-inter);
  line-height: 1.5;
}

.inv-s07__checkbox input {
  accent-color: var(--navy-core);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.inv-s07__checkbox a {
  color: var(--navy-core);
  text-decoration: underline;
}

.inv-s07__submit {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.inv-s07__note {
  font-size: 12px;
  color: var(--color-muted);
}

/* --- S08 Disclaimer --- */
.inv-s08 {
  padding: 64px 0;
  background: var(--ice-bg);
}

.inv-s08__inner {
  max-width: 800px;
}

.inv-s08__title {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 20px;
}

.inv-s08__inner p:not(.inv-s08__title) {
  font-family: var(--font-inter);
  font-size: 0.75rem;
  color: #6B7280;
  line-height: 1.75;
  margin-bottom: 14px;
}

.inv-s08__inner p:last-child {
  margin-bottom: 0;
}

/* --- Responsive S06–S08 --- */
@media (max-width: 1024px) {
  .inv-s06__grid {
    grid-template-columns: 1fr;
  }

  .inv-s06__block {
    border-right: none;
  }

  .inv-s06__block:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .inv-s07__layout {
    grid-template-columns: 1fr;
  }

  .inv-s07__right {
    display: none;
  }

  .inv-s07__left {
    padding: var(--section-py) clamp(24px, 6vw, 80px);
  }

  .inv-s07__row--2 {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   FINANCIACIÓN — src/financiacion.html
   Prefijo: .fin-
   ============================================================ */

/* Utility: label gold (shared across fin- sections) */
.fin-label-gold {
  display: block;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}


/* ============================================================
   S01 — HERO
   ============================================================ */

.fin-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--navy-deepest);
}

.fin-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.72);
  z-index: 0;
}

.fin-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 80px;
}

.fin-hero__eyebrow {
  display: block;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.fin-hero__h1 {
  font-family: var(--font-jost);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
}

.fin-hero__p {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 40px;
}

/* Strip inferior hero */
.fin-hero__strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(155, 131, 85, 0.3);
  background: rgba(11, 29, 46, 0.5);
  margin-top: auto;
}

.fin-hero__strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.fin-hero__strip-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 0;
  border-right: 1px solid rgba(155, 131, 85, 0.2);
}

.fin-hero__strip-item:last-child {
  border-right: none;
}

.fin-hero__strip-sub {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.fin-hero__strip-title {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.9);
}


/* ============================================================
   S02 — DOS MODALIDADES
   ============================================================ */

.fin-s02 {
  background: var(--white);
  padding-top: var(--section-py);
  padding-bottom: 60px;
}

.fin-s02__header {
  margin-bottom: 56px;
}

.fin-s02__h2 {
  font-family: var(--font-jost);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
}

.fin-s02__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ice-line);
}

.fin-s02__block {
  padding: 48px 48px 52px;
  border-right: 1px solid var(--ice-line);
}

.fin-s02__block--right {
  border-right: none;
}

.fin-s02__block-title {
  font-family: var(--font-jost);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy-core);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ice-line);
}

.fin-s02__block-intro {
  font-family: var(--font-inter);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-body);
  margin-bottom: 28px;
}

.fin-s02__sublabel {
  display: block;
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 24px;
}

.fin-s02__block .fin-s02__sublabel:first-of-type {
  margin-top: 0;
}

.fin-s02__list {
  list-style: none;
  margin-bottom: 8px;
}

.fin-s02__list li {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-body);
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.fin-s02__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

.fin-s02__nota {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-core);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--ice-line);
}

/* ============================================================
   S03 — EL DIFERENCIAL
   ============================================================ */

.fin-s03 {
  position: relative;
  overflow: hidden;
  background-image: url('../Assets/images-videos/sections/section-analisis-activo.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--navy-deepest);
  padding-top: 60px;
  padding-bottom: 80px;
}

.fin-s03::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.85);
  z-index: 0;
}

.fin-s03 .container {
  position: relative;
  z-index: 1;
}

.fin-s03__header {
  margin-bottom: 64px;
}

.fin-s03__h2 {
  font-family: var(--font-jost);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--white);
}

.fin-s03__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.fin-s03__col {
  padding: 44px 44px 44px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 44px;
}

.fin-s03__col:first-child {
  padding-left: 0;
}

.fin-s03__col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 44px;
}

.fin-s03__col:nth-child(2) {
  padding-left: 44px;
  padding-right: 44px;
}

.fin-s03__icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
}

.fin-s03__title {
  font-family: var(--font-jost);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.fin-s03__body {
  font-family: var(--font-inter);
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}


/* ============================================================
   S04 — FORMULARIO
   ============================================================ */

.fin-s04 {
  background: var(--white);
  padding-block: var(--section-py);
}

.fin-s04__inner {
  max-width: 680px;
  margin: 0 auto;
}

.fin-s04__h2 {
  font-family: var(--font-jost);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
  margin-bottom: 16px;
}

.fin-s04__intro {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 48px;
}

/* Form layout */
.fin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fin-form__row {
  display: grid;
  gap: 20px;
}

.fin-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

.fin-form__row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.fin-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fin-form__label {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-core);
}

.fin-form__input,
.fin-form__select,
.fin-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ice-line);
  background: var(--white);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.fin-form__input::placeholder,
.fin-form__textarea::placeholder {
  color: #9CA3AF;
}

.fin-form__input:focus,
.fin-form__select:focus,
.fin-form__textarea:focus {
  border-color: var(--navy-mid);
}

.fin-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.fin-form__textarea {
  resize: vertical;
  min-height: 96px;
}

/* Radios */
.fin-form__radios {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.fin-form__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  cursor: pointer;
}

.fin-form__radio-label input[type="radio"] {
  accent-color: var(--navy-core);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Checkboxes */
.fin-form__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.fin-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-muted);
  cursor: pointer;
}

.fin-form__check-label input[type="checkbox"] {
  accent-color: var(--navy-core);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.fin-form__check-link {
  color: var(--navy-core);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit */
.fin-form__submit {
  width: 100%;
  margin-top: 8px;
}

.fin-form__note {
  font-family: var(--font-inter);
  font-size: 12.5px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 8px;
}


/* ============================================================
   FINANCIACIÓN — Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .fin-s03__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fin-s03__col {
    padding: 36px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .fin-s03__col:last-child {
    border-bottom: none;
    padding-left: 0;
  }

  .fin-s03__col:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }

  .fin-form__row--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Hero mobile — imagen de fondo (inline style overriden con !important) */
  .fin-hero {
    background-image: url('../Assets/images-videos/hero/hero-financiacion-mobile.png') !important;
    background-attachment: scroll;
    will-change: background-image;
  }

  .fin-hero__strip-inner {
    grid-template-columns: 1fr;
  }

  .fin-hero__strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(155, 131, 85, 0.2);
    padding: 20px 0;
  }

  .fin-hero__strip-item:last-child {
    border-bottom: none;
  }

  .fin-s02__grid {
    grid-template-columns: 1fr;
  }

  .fin-s02__block {
    border-right: none;
    border-bottom: 1px solid var(--ice-line);
    padding: 36px 28px;
  }

  .fin-s02__block--right {
    border-bottom: none;
  }

  .fin-s02__image-strip {
    height: 220px;
  }

  .fin-form__row--2 {
    grid-template-columns: 1fr;
  }

  .fin-s04__inner {
    max-width: 100%;
  }
}


/* ============================================================
   COMPRAVENTA — src/compraventa.html
   Prefijo: .comp-
   ============================================================ */

.comp-label-gold {
  display: block;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}


/* ============================================================
   S01 — HERO
   ============================================================ */

.comp-hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--navy-deepest);
  display: flex;
  flex-direction: column;
}

/* Imagen de fondo en capa propia — permite aplicar filter independiente */
.comp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../Assets/images-videos/hero/hero-compraventa.jpg');
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) saturate(1.12) brightness(1.04);
  z-index: 0;
}

.comp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 29, 46, 0.78) 0%,
    rgba(11, 29, 46, 0.78) 30%,
    rgba(11, 29, 46, 0.28) 62%,
    rgba(11, 29, 46, 0) 100%
  );
  z-index: 1;
}

/* Body — grid wrapper, centrado verticalmente */
.comp-hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 148px 0 80px;
}

/* Grid 2 columnas: texto 55% · formulario 40% */
.comp-hero__grid {
  display: grid;
  grid-template-columns: 55fr 40fr;
  gap: 80px;
  align-items: start;
}

/* Columna izquierda */
.comp-hero__left {
  color: var(--white);
}

.comp-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.comp-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-right: 14px;
}

.comp-hero__h1 {
  font-family: var(--font-jost);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.comp-hero__p {
  font-family: var(--font-inter);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
  margin-bottom: 36px;
}

/* Columna derecha — formulario centrado verticalmente */
.comp-hero__right {
  align-self: center;
}

/* Form card */
.comp-form-card {
  background: var(--white);
  box-shadow: 0 12px 56px rgba(11, 29, 46, 0.32);
  overflow: hidden;
  min-height: 380px;
}

.comp-form-progress {
  height: 3px;
  background: var(--ice-line);
}

.comp-form-progress__fill {
  height: 100%;
  background: var(--gold);
  width: 25%;
  transition: width 0.35s ease;
}

.comp-form-card__inner {
  padding: 40px 36px;
}

.comp-form-card__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ice-line);
}

.comp-form-card__header h3 {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 17px;
  color: var(--navy-core);
  margin-bottom: 6px;
}

.comp-form-card__header p {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
}

/* Steps */
.comp-form-step {
  display: none;
}

.comp-form-step--active {
  display: block;
}

.comp-form-step__counter {
  display: block;
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.comp-form-step__label {
  display: block;
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 400;
  color: var(--navy-core);
  margin-bottom: 14px;
  line-height: 1.4;
}

.comp-form-select-wrap {
  position: relative;
}

.comp-form-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: 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='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}

.comp-form-select-wrap select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1px solid var(--ice-line);
  background: var(--white);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.25s ease;
  cursor: pointer;
}

.comp-form-select-wrap select:focus {
  border-color: var(--navy-mid);
}

.comp-form-input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ice-line);
  background: var(--white);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  outline: none;
  transition: border-color 0.25s ease;
}

.comp-form-input::placeholder { color: #9CA3AF; }
.comp-form-input:focus { border-color: var(--navy-mid); }

/* Submit button (step 4) */
.comp-form-btn-submit {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}

.comp-form-btn-submit:hover {
  background: #b09060;
}

.comp-form-note {
  font-family: var(--font-inter);
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 12px;
}

/* Next arrow navigation */
.comp-form-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.comp-form-btn-next {
  width: 48px;
  height: 48px;
  background: var(--navy-core);
  color: var(--white);
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.comp-form-btn-next:hover {
  background: var(--navy-mid);
}


/* ============================================================
   S02 — QUÉ GESTIONAMOS
   ============================================================ */

.comp-s02 {
  background: var(--white);
  padding-block: var(--section-py);
}

.comp-s02__header {
  margin-bottom: 56px;
}

.comp-s02__h2 {
  font-family: var(--font-jost);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
}

.comp-s02__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ice-line);
  border: 1px solid var(--ice-line);
}

.comp-s02__card {
  background: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.comp-s02__card:hover {
  border-color: var(--gold);
}

.comp-s02__num {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}

.comp-s02__title {
  font-family: var(--font-jost);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy-core);
  margin-bottom: 16px;
  line-height: 1.25;
}

.comp-s02__body {
  font-family: var(--font-inter);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-muted);
}


/* ============================================================
   S03 — CÓMO TRABAJAMOS
   ============================================================ */

.comp-s03 {
  background: var(--ice-bg);
  padding-block: var(--section-py);
}

.comp-s03__header {
  margin-bottom: 64px;
}

.comp-s03__h2 {
  font-family: var(--font-jost);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
}

.comp-s03__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line through circle centers */
.comp-s03__steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(40px + 24px);
  right: calc(40px + 24px);
  height: 1px;
  background: var(--ice-line);
  z-index: 0;
}

.comp-s03__step {
  padding: 0 40px 0 0;
  position: relative;
  z-index: 1;
}

.comp-s03__step:last-child {
  padding-right: 0;
}

.comp-s03__circle {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.comp-s03__title {
  font-family: var(--font-jost);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy-core);
  margin-bottom: 14px;
}

.comp-s03__body {
  font-family: var(--font-inter);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-muted);
}


/* ============================================================
   S04 — FORMULARIO
   ============================================================ */

.comp-s04 {
  background: var(--white);
  padding-block: var(--section-py);
}

.comp-s04__inner {
  max-width: 680px;
  margin: 0 auto;
}

.comp-s04__h2 {
  font-family: var(--font-jost);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
  margin-bottom: 16px;
}

.comp-s04__intro {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 48px;
}

/* Form */
.comp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comp-form__row {
  display: grid;
  gap: 20px;
}

.comp-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

.comp-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comp-form__label {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-core);
}

.comp-form__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-muted);
  font-size: 10px;
}

.comp-form__input,
.comp-form__select,
.comp-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ice-line);
  background: var(--white);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.comp-form__input::placeholder,
.comp-form__textarea::placeholder {
  color: #9CA3AF;
}

.comp-form__input:focus,
.comp-form__select:focus,
.comp-form__textarea:focus {
  border-color: var(--gold);
}

.comp-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.comp-form__textarea {
  resize: vertical;
  min-height: 112px;
}

/* Checkboxes */
.comp-form__checks {
  padding-top: 4px;
}

.comp-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-muted);
  cursor: pointer;
}

.comp-form__check-label input[type="checkbox"] {
  accent-color: var(--navy-core);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.comp-form__check-link {
  color: var(--navy-core);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit button — navy fill */
.comp-form__submit {
  display: block;
  width: 100%;
  padding: 18px 40px;
  margin-top: 8px;
  background: var(--navy-core);
  color: var(--white);
  border: 1px solid var(--navy-core);
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.comp-form__submit:hover {
  background: var(--navy-mid-dark);
  border-color: var(--navy-mid-dark);
}

.comp-form__note {
  font-family: var(--font-inter);
  font-size: 12.5px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 8px;
}


/* ============================================================
   COMPRAVENTA — Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .comp-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .comp-hero__right {
    position: static;
  }

  .comp-hero__body {
    padding: 130px 0 60px;
  }

  .comp-s03__steps::before {
    display: none;
  }

  .comp-s03__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comp-s03__step {
    padding: 36px 0;
    border-bottom: 1px solid var(--ice-line);
  }

  .comp-s03__step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  /* Hero mobile — imagen de fondo */
  .comp-hero__bg {
    background-image: url('../Assets/images-videos/hero/hero-compraventa-mobile.png');
    background-attachment: scroll;
    will-change: background-image;
  }

  /* Overlay mobile ligero — azul semitransparente */
  .comp-hero__overlay {
    background: rgba(11, 29, 46, 0.35);
  }

  .comp-s02__grid {
    grid-template-columns: 1fr;
  }

  .comp-form__row--2 {
    grid-template-columns: 1fr;
  }

  .comp-s04__inner {
    max-width: 100%;
  }
}


/* ============================================================
   GESTIÓN NOTARIAL — src/notarial.html
   Prefijo: .not-
   ============================================================ */

.not-label-gold {
  display: block;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}


/* ============================================================
   S01 — HERO
   ============================================================ */

.not-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy-deepest);
}

.not-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.72);
  z-index: 0;
}

.not-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 160px;
  max-width: 100%;
}

.not-hero__eyebrow {
  display: flex;
  align-items: center;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.not-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-right: 14px;
}

.not-hero__h1 {
  font-family: var(--font-jost);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 55%;
  margin-bottom: 28px;
}

.not-hero__p {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}


/* ============================================================
   S02 — EL SERVICIO
   ============================================================ */

.not-s02 {
  background: var(--white);
  padding-block: var(--section-py);
}

.not-s02__layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}

.not-s02__h2 {
  font-family: var(--font-jost);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
  margin-bottom: 28px;
}

.not-s02__p {
  font-family: var(--font-inter);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--color-body);
  margin-bottom: 20px;
}

.not-s02__p:last-child {
  margin-bottom: 0;
}

.not-s02__image-wrap {
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}

.not-s02__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.88);
}


/* ============================================================
   S03 — 4 ÁREAS DE ACTUACIÓN
   ============================================================ */

.not-s03 {
  background: var(--ice-bg);
  padding-block: var(--section-py);
}

.not-s03__header {
  margin-bottom: 56px;
}

.not-s03__h2 {
  font-family: var(--font-jost);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
}

.not-s03__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ice-line);
  border: 1px solid var(--ice-line);
}

.not-s03__card {
  background: var(--ice-bg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.not-s03__card:hover {
  border-color: var(--navy-mid);
}

.not-s03__num {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}

.not-s03__title {
  font-family: var(--font-jost);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy-core);
  margin-bottom: 14px;
  line-height: 1.3;
}

.not-s03__body {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-muted);
}


/* ============================================================
   S04 — FORMULARIO
   ============================================================ */

.not-s04 {
  background: var(--white);
  padding-block: var(--section-py);
}

.not-s04__inner {
  max-width: 680px;
  margin: 0 auto;
}

.not-s04__h2 {
  font-family: var(--font-jost);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
  margin-bottom: 16px;
}

.not-s04__intro {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 48px;
}

/* Form */
.not-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.not-form__row {
  display: grid;
  gap: 20px;
}

.not-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

.not-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.not-form__label {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-core);
}

.not-form__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-muted);
  font-size: 10px;
}

.not-form__input,
.not-form__select,
.not-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ice-line);
  background: var(--white);
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-body);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.not-form__input::placeholder,
.not-form__textarea::placeholder {
  color: #9CA3AF;
}

.not-form__input:focus,
.not-form__select:focus,
.not-form__textarea:focus {
  border-color: var(--navy-mid);
}

.not-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.not-form__textarea {
  resize: vertical;
  min-height: 112px;
}

.not-form__checks {
  padding-top: 4px;
}

.not-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-muted);
  cursor: pointer;
}

.not-form__check-label input[type="checkbox"] {
  accent-color: var(--navy-core);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.not-form__check-link {
  color: var(--navy-core);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.not-form__submit {
  display: block;
  width: 100%;
  padding: 18px 40px;
  margin-top: 8px;
  background: var(--navy-core);
  color: var(--white);
  border: 1px solid var(--navy-core);
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.not-form__submit:hover {
  background: var(--navy-mid-dark);
  border-color: var(--navy-mid-dark);
}

.not-form__note {
  font-family: var(--font-inter);
  font-size: 12.5px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 8px;
}


/* ============================================================
   GESTIÓN NOTARIAL — Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .not-s02__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .not-s02__image-wrap {
    min-height: 300px;
    order: -1;
  }

  .not-s03__grid {
    grid-template-columns: 1fr;
  }

  .not-hero__h1 {
    max-width: 100%;
    font-size: clamp(44px, 7vw, 72px);
  }
}

@media (max-width: 768px) {
  .not-form__row--2 {
    grid-template-columns: 1fr;
  }

  .not-s04__inner {
    max-width: 100%;
  }
}


/* ============================================================
   LA FIRMA — src/la-firma.html
   Prefijo: .firma-
   ============================================================ */

.firma-label-gold {
  display: block;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.firma-label-gold--center {
  text-align: center;
}


/* ============================================================
   S01 — HERO
   ============================================================ */

.firma-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy-deepest);
}

.firma-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 29, 46, 0.85) 0%,
    rgba(11, 29, 46, 0.85) 35%,
    rgba(11, 29, 46, 0.4) 65%,
    rgba(11, 29, 46, 0) 100%
  );
  z-index: 0;
}

.firma-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 160px;
}

.firma-hero__eyebrow {
  display: flex;
  align-items: center;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.firma-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-right: 14px;
}

.firma-hero__h1 {
  font-family: var(--font-jost);
  font-size: clamp(44px, 5.8vw, 88px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 78%;
  margin-bottom: 28px;
}

.firma-hero__p {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
}


/* ============================================================
   S02 — SOBRE NOSOTROS
   ============================================================ */

.firma-s02 {
  background: var(--white);
}

/* Grid full-width fuera del container */
.firma-s02__layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
  min-height: 620px;
}

/* Columna texto: padding interno que replica el container */
.firma-s02__text-col {
  display: flex;
  align-items: center;
  padding: var(--section-py) 80px var(--section-py) clamp(24px, 6vw, 120px);
}

.firma-s02__text {
  max-width: 540px;
  margin-left: auto;
}

.firma-s02__h2 {
  font-family: var(--font-jost);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--navy-core);
  margin-bottom: 28px;
}

.firma-s02__p {
  font-family: var(--font-inter);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--color-body);
  margin-bottom: 20px;
}

.firma-s02__p:last-child { margin-bottom: 0; }

/* Columna imagen: ocupa toda su zona sin restricciones */
.firma-s02__image-wrap {
  position: relative;
  overflow: hidden;
}

.firma-s02__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.88);
}


/* ============================================================
   S03 — CIFRAS
   ============================================================ */

.firma-s03 {
  position: relative;
  padding-block: var(--section-py);
  background-color: var(--navy-core);
}

.firma-s03__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 45, 79, 0.60);
  z-index: 0;
}

.firma-s03__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.firma-s03__header {
  margin-bottom: 64px;
}

.firma-s03__h2 {
  font-family: var(--font-jost);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.005em;
}

.firma-s03__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(155, 131, 85, 0.35);
  padding-top: 56px;
}

.firma-s03__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  border-right: 1px solid rgba(155, 131, 85, 0.35);
}

.firma-s03__stat:last-child {
  border-right: none;
}

.firma-s03__num {
  font-family: var(--font-jost);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 200;
  color: #C4A96D;
  line-height: 1;
  letter-spacing: -0.02em;
}

.firma-s03__stat-label {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.firma-s03__stat-sub {
  font-family: var(--font-inter);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   S04 — LA RED
   ============================================================ */

.firma-s04 {
  background: var(--ice-bg);
  padding-block: var(--section-py);
}

.firma-s04__header {
  max-width: 720px;
  margin-bottom: 64px;
}

.firma-s04__h2 {
  font-family: var(--font-jost);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
  margin-bottom: 28px;
}

.firma-s04__intro {
  font-family: var(--font-inter);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--color-body);
  margin-bottom: 16px;
}

.firma-s04__intro:last-of-type { margin-bottom: 0; }

.firma-s04__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ice-line);
  padding-top: 56px;
}

.firma-s04__col {
  padding: 0 44px 0 0;
  border-right: 1px solid var(--ice-line);
}

.firma-s04__col:first-child { padding-left: 0; }

.firma-s04__col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 44px;
}

.firma-s04__col:nth-child(2) {
  padding-left: 44px;
  padding-right: 44px;
}

.firma-s04__icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}

.firma-s04__col-title {
  font-family: var(--font-jost);
  font-size: 17px;
  font-weight: 400;
  color: var(--navy-core);
  margin-bottom: 12px;
  line-height: 1.3;
}

.firma-s04__col-body {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-muted);
}


/* ============================================================
   S05 — EL EQUIPO
   ============================================================ */

.firma-s05 {
  background: var(--white);
  padding-block: var(--section-py);
}

.firma-s05__header {
  margin-bottom: 56px;
}

.firma-s05__h2 {
  font-family: var(--font-jost);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-core);
}

.firma-s05__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.firma-s05__card {
  padding: 48px 44px;
  border: 1px solid var(--ice-line);
  display: flex;
  flex-direction: column;
}

.firma-s05__avatar {
  width: 72px;
  height: 72px;
  background: var(--ice-bg);
  border: 1px solid var(--ice-line);
  color: var(--navy-core);
  font-family: var(--font-jost);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.firma-s05__role {
  display: block;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.firma-s05__bio {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-muted);
}


/* ============================================================
   S06 — CTA FINAL
   ============================================================ */

.firma-s06 {
  position: relative;
  background: var(--navy-deepest);
  padding-block: var(--section-py);
  overflow: hidden;
  text-align: center;
}

.firma-s06__texture {
  position: absolute;
  inset: 0;
  background-image: url('../Assets/images-videos/ambient/ambient-dark-texture.jpg');
  background-size: cover;
  background-color: var(--navy-deepest);
  background-blend-mode: multiply;
  opacity: 0.12;
  z-index: 0;
}

.firma-s06__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.firma-s06__h2 {
  font-family: var(--font-jost);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.firma-s06__p {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.firma-s06__note {
  font-family: var(--font-inter);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
}


/* ============================================================
   LA FIRMA — Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .firma-hero__h1 {
    max-width: 100%;
    font-size: clamp(44px, 6.5vw, 72px);
  }

  .firma-s02__layout {
    grid-template-columns: 1fr;
  }

  .firma-s02__text-col {
    padding: 60px clamp(24px, 6vw, 80px);
  }

  .firma-s02__text {
    max-width: 100%;
    margin-left: 0;
  }

  .firma-s02__image-wrap {
    min-height: 300px;
    order: -1;
  }

  .firma-s03__stats {
    grid-template-columns: 1fr;
    border-top: none;
    padding-top: 0;
    gap: 48px;
  }

  .firma-s03__stat {
    border-right: none;
    border-bottom: 1px solid rgba(155, 131, 85, 0.25);
    padding: 0 0 48px;
  }

  .firma-s03__stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .firma-s04__cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .firma-s04__col {
    padding: 36px 0;
    border-right: none;
    border-bottom: 1px solid var(--ice-line);
  }

  .firma-s04__col:last-child {
    border-bottom: none;
    padding-left: 0;
    padding-bottom: 0;
  }

  .firma-s04__col:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }

  .firma-s05__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .firma-s02__image-wrap {
    order: 2;
  }
}


/* ============================================================
   PROPIEDADES — .prop-
   ============================================================ */

/* ── S01 Hero ── */
.prop-hero {
  min-height: 50vh;
  background-color: var(--navy-deepest);
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.prop-hero__content {
  width: 100%;
}

.prop-hero__eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9B8355;
  margin-bottom: 28px;
}

.prop-hero__h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 24px;
  max-width: 640px;
}

.prop-hero__p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

/* ── S02 Filter bar ── */
.prop-filters {
  background: var(--white);
  border-bottom: 1px solid var(--ice-line);
  position: sticky;
  top: 64px;
  z-index: 80;
  padding: 0;
}

.prop-filters .container {
  padding-top: 0;
  padding-bottom: 0;
}

.prop-filters__toggle {
  display: none;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-core);
  cursor: pointer;
  text-align: left;
}

.prop-filters__arrow {
  transition: transform 0.25s ease;
  display: inline-block;
}

.prop-filters__toggle.is-open .prop-filters__arrow {
  transform: rotate(180deg);
}

.prop-filters__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.prop-filters__field {
  flex: 1;
  min-width: 140px;
}

.prop-filters__select,
.prop-filters__input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--ice-line);
  padding: 10px 14px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.25s ease;
}

.prop-filters__select:focus,
.prop-filters__input:focus {
  border-color: var(--navy-mid);
}

.prop-filters__input::placeholder {
  color: var(--text-muted);
}

.prop-filters__btn {
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-core);
  background: transparent;
  border: 1px solid var(--navy-core);
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.prop-filters__btn:hover {
  background: var(--navy-core);
  color: var(--white);
}

/* ── S04 Grid ── */
.prop-grid-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.prop-card {
  border: 1px solid var(--ice-line);
  transition: border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.prop-card:hover {
  border-color: var(--navy-mid);
}

/* Card image */
.prop-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #1B2D4F;
}

.prop-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.prop-card:hover .prop-card__image {
  transform: scale(1.03);
}

.prop-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.prop-card:hover .prop-card__hover-overlay {
  opacity: 1;
}

.prop-card__hover-btn {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.prop-card__hover-btn:hover {
  background: var(--gold-light);
}

/* Card body */
.prop-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.prop-card__h3 {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy-core);
  margin: 0;
  line-height: 1.35;
}

.prop-card__loc {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
}

/* Data row */
.prop-card__data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ice-line);
  border-bottom: 1px solid var(--ice-line);
  padding: 12px 0;
  margin: 4px 0;
}

.prop-card__data-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  border-right: 1px solid var(--ice-line);
}

.prop-card__data-col:first-child {
  padding-left: 0;
}

.prop-card__data-col:last-child {
  border-right: none;
}

.prop-card__data-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prop-card__data-val {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--navy-core);
}

.prop-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

/* Card footer */
.prop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 12px;
}

.prop-card__cta {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-core);
  background: transparent;
  border: 1px solid var(--navy-core);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.prop-card__cta:hover {
  background: var(--navy-core);
  color: var(--white);
}

/* Tags */
.prop-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 8px;
  line-height: 1;
}

.prop-tag--tipo {
  background: var(--navy-core);
  color: var(--white);
}

.prop-tag--disponible {
  background: var(--gold);
  color: var(--white);
}

.prop-tag--en-curso {
  background: var(--navy-soft);
  color: var(--white);
}

.prop-tag--vendido {
  background: #6B7280;
  color: var(--white);
}

/* Vendido state */
.prop-card--vendido {
  opacity: 0.6;
  pointer-events: none;
}

.prop-card--vendido .prop-card__cta,
.prop-card--vendido .prop-card__hover-btn {
  display: none;
}

/* ── S05 Off-market band ── */
.prop-offmarket {
  background: var(--ice-bg);
  border-top: 1px solid var(--ice-line);
  border-bottom: 1px solid var(--ice-line);
  padding: 80px 0;
}

.prop-offmarket__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.prop-label-navy {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 20px;
}

.prop-offmarket__h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--navy-core);
  margin: 0 0 20px;
  line-height: 1.2;
}

.prop-offmarket__p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0 0 36px;
}

.prop-offmarket__btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-core);
  border: 1px solid var(--navy-core);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.prop-offmarket__btn:hover {
  background: var(--navy-core);
  color: var(--white);
}

/* ── S06 Form ── */
.prop-form-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.prop-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.prop-form__h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--navy-core);
  margin: 0 0 16px;
  line-height: 1.2;
}

.prop-form__intro {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 48px;
}

.prop-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prop-form__row {
  display: grid;
  gap: 20px;
}

.prop-form__row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.prop-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prop-form__label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
}

.prop-form__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
}

.prop-form__input,
.prop-form__select,
.prop-form__textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--ice-line);
  padding: 13px 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.prop-form__input:focus,
.prop-form__select:focus,
.prop-form__textarea:focus {
  border-color: var(--navy-mid);
}

.prop-form__input::placeholder,
.prop-form__textarea::placeholder {
  color: var(--text-muted);
}

.prop-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.prop-form__checks {
  margin-top: 4px;
}

.prop-form__check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
}

.prop-form__check-link {
  color: var(--navy-mid);
  text-decoration: underline;
}

.prop-form__submit {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy-core);
  border: none;
  padding: 18px 48px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.25s ease;
}

.prop-form__submit:hover {
  background: var(--navy-deepest);
}

.prop-form__note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prop-form__row--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .prop-hero {
    min-height: 40vh;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .prop-grid {
    grid-template-columns: 1fr;
  }

  .prop-filters__toggle {
    display: block;
  }

  .prop-filters__row {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }

  .prop-filters__row.is-open {
    display: flex;
  }

  .prop-filters__btn {
    width: 100%;
    text-align: center;
  }

  .prop-offmarket {
    padding: 48px 0;
  }

  .prop-form__row--3 {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   CONTACTO — .contact-
   ============================================================ */

/* ── S01 Hero ── */
.contact-hero {
  min-height: 40vh;
  background-color: var(--navy-deepest);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.contact-hero__content {
  max-width: 640px;
}

.contact-hero__eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9B8355;
  margin-bottom: 24px;
}

.contact-hero__h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
}

.contact-hero__p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0;
}

/* ── S02 Main block ── */
.contact-main {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* Info column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 8px;
}

.contact-info__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label-gold {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9B8355;
}

.contact-info__h3 {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-core);
  margin: 0;
}

.contact-info__p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.contact-info__link {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-info__link:hover {
  color: var(--navy-mid);
}

.contact-info__social {
  display: flex;
  gap: 16px;
  padding-top: 4px;
}

.contact-info__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #9B8355;
  transition: color 0.25s ease;
}

.contact-info__social-link:hover {
  color: var(--gold-light);
}

.contact-info__social-link svg {
  width: 18px;
  height: 18px;
}

/* Form column */
.contact-form-col {
  border-left: 1px solid var(--ice-line);
  padding-left: 64px;
}

.contact-form-col__h3 {
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--navy-core);
  margin: 0 0 40px;
  letter-spacing: -0.005em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__row {
  display: grid;
  gap: 20px;
}

.contact-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
}

.contact-form__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--ice-line);
  padding: 13px 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--navy-mid);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--text-muted);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.contact-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.contact-form__check-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-form__check-link {
  color: var(--navy-mid);
  text-decoration: underline;
}

.contact-form__submit {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy-core);
  border: none;
  padding: 18px 48px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.25s ease;
  margin-top: 4px;
}

.contact-form__submit:hover {
  background: var(--navy-deepest);
}

.contact-form__note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-form-col {
    border-left: none;
    border-top: 1px solid var(--ice-line);
    padding-left: 0;
    padding-top: 48px;
  }
}

@media (max-width: 768px) {
  .contact-form-col {
    order: -1;
  }

  .contact-info {
    order: 2;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    min-height: 30vh;
  }

  .contact-form__row--2 {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   AVISO LEGAL — .legal-
   ============================================================ */

/* ── S01 Hero ── */
.legal-hero {
  min-height: 40vh;
  background-color: var(--navy-deepest);
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 64px;
}

.legal-hero__h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

/* ── S02 Contenido legal ── */
.legal-content {
  padding: var(--section-py) 0;
  background: var(--white);
}

.legal-body {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-h2 {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy-core);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ice-line);
}

.legal-p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--navy-haze);
  font-weight: 300;
}

.legal-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

.legal-link:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .legal-hero {
    min-height: 30vh;
    padding-bottom: 48px;
  }

  .legal-body {
    gap: 36px;
  }
}


/* ============================================================
   TÉRMINOS Y CONDICIONES — .terms-
   ============================================================ */

.terms-hero {
  min-height: 40vh;
  background-color: var(--navy-deepest);
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 64px;
}

.terms-hero__h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.terms-content {
  padding: var(--section-py) 0;
  background: var(--white);
}

.terms-body {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.terms-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.terms-h2 {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy-core);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ice-line);
}

.terms-p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.terms-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--navy-haze);
  font-weight: 300;
}

.terms-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

.terms-link:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .terms-hero {
    min-height: 30vh;
    padding-bottom: 48px;
  }

  .terms-body {
    gap: 36px;
  }
}


/* ============================================================
   POLÍTICA DE PRIVACIDAD — .privacy-
   ============================================================ */

.privacy-hero {
  min-height: 40vh;
  background-color: var(--navy-deepest);
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 64px;
}

.privacy-hero__h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.privacy-content {
  padding: var(--section-py) 0;
  background: var(--white);
}

.privacy-body {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-h2 {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy-core);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ice-line);
}

.privacy-p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.privacy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--navy-haze);
  font-weight: 300;
}

.privacy-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

.privacy-link:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .privacy-hero {
    min-height: 30vh;
    padding-bottom: 48px;
  }

  .privacy-body {
    gap: 36px;
  }
}


/* ============================================================
   HERO FADE-IN — CSS animation on page load (all pages)
   ============================================================ */

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

/* ---- Home ---- */
.hero__eyebrow {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.1s;
}
.hero__title {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}
.hero__subtitle {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.45s;
}
.hero__ctas {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.6s;
}

/* ---- Liquidez ---- */
.liq-hero__left .label {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.1s;
}
.liq-hero__title {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}
.liq-hero__subtitle {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.45s;
}
.liq-hero__left .btn {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.6s;
}
.liq-form-card {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.6s;
}

/* ---- Inversores ---- */
.inv-hero__eyebrow {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.1s;
}
.inv-hero__title {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}
.inv-hero__subtitle {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.45s;
}
.inv-hero__content .btn {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.6s;
}

/* ---- Compraventa ---- */
.comp-hero__eyebrow {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.1s;
}
.comp-hero__h1 {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}
.comp-hero__p {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.45s;
}
.comp-hero__left .btn {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.6s;
}
.comp-form-card {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.6s;
}

/* ---- Financiación ---- */
.fin-hero__eyebrow {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.1s;
}
.fin-hero__h1 {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}
.fin-hero__p {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.45s;
}
.fin-hero__content .btn {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.6s;
}

/* ---- La Firma ---- */
.firma-hero__eyebrow {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.1s;
}
.firma-hero__h1 {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}
.firma-hero__p {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.45s;
}

/* ---- Gestión Notarial ---- */
.not-hero__eyebrow {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.1s;
}
.not-hero__h1 {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}
.not-hero__p {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.45s;
}

/* ---- Propiedades ---- */
.prop-hero__eyebrow {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.1s;
}
.prop-hero__h1 {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}
.prop-hero__p {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.45s;
}

/* ---- Contacto ---- */
.contact-hero__eyebrow {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.1s;
}
.contact-hero__h1 {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}
.contact-hero__p {
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards 0.45s;
}

/* ---- Legal pages (h1 only) ---- */
.legal-hero__h1,
.terms-hero__h1,
.privacy-hero__h1 {
  opacity: 0;
  animation: heroFadeIn 0.7s ease forwards 0.25s;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__subtitle, .hero__ctas,
  .liq-hero__left .label, .liq-hero__title, .liq-hero__subtitle,
  .liq-hero__left .btn, .liq-form-card,
  .inv-hero__eyebrow, .inv-hero__title, .inv-hero__subtitle, .inv-hero__content .btn,
  .comp-hero__eyebrow, .comp-hero__h1, .comp-hero__p, .comp-hero__left .btn, .comp-form-card,
  .fin-hero__eyebrow, .fin-hero__h1, .fin-hero__p, .fin-hero__content .btn,
  .firma-hero__eyebrow, .firma-hero__h1, .firma-hero__p,
  .not-hero__eyebrow, .not-hero__h1, .not-hero__p,
  .prop-hero__eyebrow, .prop-hero__h1, .prop-hero__p,
  .contact-hero__eyebrow, .contact-hero__h1, .contact-hero__p,
  .legal-hero__h1, .terms-hero__h1, .privacy-hero__h1 {
    opacity: 1;
    animation: none;
  }
}
