﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&family=Staatliches&family=Urbanist:wght@400;600;700;800&display=swap');

:root {
  --color-bg: #FAF8F4;
  --color-primary: #071E2C;
  --color-primary-soft: #0E2F44;
  --color-gold: #C89B3C;
  --color-gold-hover: #A77E2E;
  --color-text: #334155;
  --color-muted-text: #64748B;
  --color-border: #E7DED2;
  --color-footer: #06141D;
  --color-whatsapp: #25d366;

  --navy: var(--color-primary);
  --navy-2: var(--color-primary-soft);
  --navy-3: #0A2838;
  --navy-light: #15384A;
  --gold: var(--color-gold);
  --gold-hover: var(--color-gold-hover);
  --gold-soft: rgba(200, 155, 60, 0.18);
  --gold-light: rgba(200, 155, 60, 0.07);
  --cream: var(--color-bg);
  --cream-2: #FDFBF7;
  --white: #FFFFFF;
  --text: var(--color-text);
  --text-secondary: #475569;
  --muted: var(--color-muted-text);
  --muted-light: #94A3B8;
  --border: var(--color-border);
  --border-light: rgba(231, 222, 210, 0.5);
  --whatsapp: var(--color-whatsapp);
  --shadow-sm: 0 1px 3px rgba(7, 30, 44, 0.05);
  --shadow: 0 6px 24px rgba(7, 30, 44, 0.07);
  --shadow-lg: 0 16px 48px rgba(7, 30, 44, 0.1);
  --shadow-xl: 0 24px 64px rgba(7, 30, 44, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: min(1200px, calc(100% - 48px));
  --space: clamp(52px, 6.5vw, 68px);
  --space-sm: clamp(30px, 3.5vw, 40px);
  --font-sans: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-poppins: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  background: var(--cream-2);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.property-card-media img,
.pc-card__media img,
.pc-premium-media img,
.card-main-image { width: 100%; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--gold-soft); color: var(--navy); }

.container { width: var(--container); margin: 0 auto; }

.section {
  padding: var(--space) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-sm) 0;
  position: relative;
}

.section-xs {
  padding: clamp(20px, 2.5vw, 28px) 0;
  position: relative;
}

.section-bg-white {
  background: var(--white);
  position: relative;
}

.section-bg-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200,155,60,.03) 0%, transparent 70%);
  pointer-events: none;
}

.section-bg-gold {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Staatliches', var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Staatliches', var(--font-sans);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--navy);
  text-transform: uppercase;
}

.section-copy {
  max-width: 620px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ══ Buttons ══ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: 'Staatliches', var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  white-space: nowrap;
  position: relative;
  will-change: transform;
}

.btn:active { transform: scale(.96); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 155, 60, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 30, 44, 0.12);
}

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

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 155, 60, 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: 0 18px; font-size: 0.8rem; border-width: 1.5px; }

.legal-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--muted-light);
  line-height: 1.3;
}

.legal-notice svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ══ Header ══ */

.site-header-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.site-header-wrap.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(231, 222, 210, 0.6);
  box-shadow: 0 4px 24px rgba(7, 30, 44, 0.06);
}

.site-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-family: var(--font-poppins);
}

.brand-sub {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all .25s var(--ease);
  position: relative;
}

.site-nav a:hover { color: var(--navy); background: var(--border-light); }
.site-nav a.active {
  color: var(--navy);
  background: var(--gold-light);
  font-weight: 700;
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.78rem;
  border-radius: var(--radius-pill);
}

.site-nav .nav-cta:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }

.nav-dropdown { position: relative; }

.nav-dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .3s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 230px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--white);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(231, 222, 210, 0.6);
  box-shadow: 0 8px 32px rgba(7, 30, 44, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: all .3s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  transition: all .25s var(--ease);
  font-weight: 500;
}

.nav-dropdown-menu a:hover {
  background: var(--gold-light);
  color: var(--navy);
  padding-left: 18px;
}

.nav-dropdown-menu svg { width: 15px; height: 15px; flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.menu-toggle:hover { border-color: var(--gold-soft); background: var(--gold-light); }

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: all .35s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ Main offset (fixes fixed header overlap) ══ */

:root {
  --fixed-header-offset: 70px;
  --internal-hero-gap: clamp(32px, 4vw, 56px);
}

main {
  padding-top: var(--fixed-header-offset);
}

main.hero {
  padding-top: 0;
}

.finance-page-hero,
.about-hero,
.contact-hero,
.credits-shell,
.catalog-page main {
  scroll-margin-top: var(--fixed-header-offset);
}

/* ══ Hero ══ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  transform: scale(1.08);
  opacity: 0;
  animation: heroImageIn 1.4s var(--ease) forwards;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.05) saturate(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(6,24,35,.25) 0%, rgba(6,24,35,.7) 40%, var(--navy-2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(60px, 8vw, 88px) 0 clamp(40px, 5vw, 56px);
}

.hero-label {
  font-family: 'Staatliches', var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(28px);
  animation: heroTextIn .9s var(--ease) .15s forwards;
}

.hero-title {
  font-family: 'Staatliches', var(--font-sans);
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: .02em;
  max-width: 1000px;
  color: var(--white);
  opacity: 0;
  transform: translateY(42px);
  animation: heroTextIn 1s var(--ease) .25s forwards;
  text-transform: uppercase;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--gold), #E8C97A, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin-top: 16px;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  transform: translateY(28px);
  animation: heroTextIn .9s var(--ease) .45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(22px);
  animation: heroTextIn .85s var(--ease) .65s forwards;
}

.hero-actions .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(201, 162, 77, 0.35);
}

.hero-actions .btn + .btn { margin-left: 14px; }

/* ── Hero Floating Shapes ── */

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero-shape--1 {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -200px;
  right: -150px;
  animation: floatShape 12s ease-in-out infinite;
}

.hero-shape--2 {
  width: 400px;
  height: 400px;
  background: var(--color-primary-soft);
  bottom: -100px;
  left: -100px;
  animation: floatShape 16s ease-in-out infinite reverse;
}

.hero-shape--3 {
  width: 300px;
  height: 300px;
  background: var(--gold);
  top: 40%;
  left: 10%;
  animation: floatShape 14s ease-in-out infinite 2s;
}

/* ── Scroll Indicator ── */

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: heroTextIn .85s var(--ease) 1.2s forwards;
}

.hero-scroll-indicator span {
  display: block;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* ── Pulse Glow on CTA ── */

.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

/* ══ Services Section ══ */

.services-section {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 28px;
}

.service-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(7, 30, 44, 0.04);
  transition: all .45s var(--ease);
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 12px 40px rgba(200,155,60,.1), 0 4px 12px rgba(7,30,44,.06);
  transform: translateY(-4px);
}

.service-number {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.service-card > p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-card .expand-target {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
  margin-top: 0;
}

.service-card .expand-target > div {
  overflow: hidden;
}

.service-card .expand-target p {
  padding-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  border-top: 1px solid var(--border);
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.service-card.expanded .expand-target {
  grid-template-rows: 1fr;
}

.service-card.expanded .expand-target p {
  opacity: 1;
}

.service-card .expand-icon {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.7rem;
  transition: transform 0.35s var(--ease);
  color: var(--gold);
}

.service-card.expanded .expand-icon {
  transform: rotate(180deg);
}

/* ══ Property Cards ══ */

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 28px;
}

.property-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(7, 30, 44, 0.04);
  overflow: hidden;
  transition: all .5s var(--ease);
  will-change: transform;
}

.property-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 12px 40px rgba(200,155,60,.12), 0 4px 12px rgba(7,30,44,.06);
}

.property-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.property-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,24,35,.4) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity .5s var(--ease);
}

.property-card:hover .property-card-media::after {
  opacity: 1;
}

.property-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.88);
  transition: transform 1.2s var(--ease), filter .6s var(--ease), scale .6s var(--ease);
}

.property-card:hover .property-card-media img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.03);
}

.property-card-body {
  padding: 18px 20px 20px;
}

.property-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(6, 24, 35, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 155, 60, 0.25);
  font-family: var(--font-poppins);
}

.property-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.25;
}

.property-location {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-location svg { width: 12px; height: 12px; flex-shrink: 0; }

.property-price {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold), #E8C97A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.property-specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.property-specs svg { width: 12px; height: 12px; }

.property-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.property-card-actions .btn {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.78rem;
}

/* ══ Credits Section ══ */

.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 28px;
}

.credit-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(7, 30, 44, 0.04);
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.credit-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: 0 12px 40px rgba(200,155,60,.1), 0 4px 12px rgba(7,30,44,.06);
}

.credit-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}

.credit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.credit-card > p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.credit-card .credit-expand {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.credit-card .credit-expand > div {
  overflow: hidden;
}

.credit-card .credit-expand p {
  padding-top: 10px;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.credit-card .credit-expand .btn {
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.credit-card.expanded .credit-expand {
  grid-template-rows: 1fr;
}

.credit-card.expanded .credit-expand p,
.credit-card.expanded .credit-expand .btn {
  opacity: 1;
}

.credit-card .credit-expand-icon {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform 0.35s var(--ease);
  color: var(--gold);
  margin-left: 4px;
}

.credit-card.expanded .credit-expand-icon {
  transform: rotate(180deg);
}

/* ══ Process / How We Help ══ */

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.process-steps {
  display: grid;
  gap: 10px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease);
}

.process-step:hover {
  border-color: var(--gold-soft);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.process-step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-step strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.process-step p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.process-cta-box {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow);
}

.process-cta-box h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.process-cta-box p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ══ CTA Final ══ */

.cta-final {
  position: relative;
  text-align: center;
  padding: var(--space) 0;
  overflow: hidden;
  background: var(--navy);
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 162, 77, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin: 0 auto 16px;
  color: var(--white);
}

.cta-final p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-final .hero-actions {
  justify-content: center;
  opacity: 1;
  transform: none;
  animation: none;
}

.cta-final .btn-primary {
  background: var(--gold);
  color: var(--white);
}

.cta-final .btn-primary:hover {
  background: var(--gold-hover);
}

.cta-final .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.cta-final .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══ Footer ══ */

.site-footer {
  position: relative;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 40px;
  padding-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-shell { max-width: var(--container); margin: 0 auto; }

.footer-links {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr 0.6fr 0.5fr 0.5fr;
  gap: 24px;
}

.footer-brand strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  transition: all .3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-col nav {
  display: grid;
  gap: 8px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color .25s, padding-left .25s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--gold);
}

.footer-schedule p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer-schedule strong { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover { color: var(--gold); }

/* ══ WhatsApp Float ══ */

#waFloat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: var(--whatsapp);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  transition: all .35s var(--ease);
}

#waFloat:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

#waFloat svg { width: 24px; height: 24px; }

/* ══ Back to Top ══ */

#backToTop {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 89;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all .35s;
}

#backToTop.is-visible { opacity: 1; pointer-events: auto; }

.btt-arrow {
  font-size: 1rem;
  color: var(--navy);
  position: absolute;
}

.btt-progress {
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 2;
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset .1s linear;
}

/* ══ Legal Notice ══ */

.legal-notice {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.legal-notice strong {
  color: var(--text);
  font-weight: 600;
}

.legal-notice a {
  color: var(--gold);
}

.legal-notice a:hover {
  text-decoration: underline;
}

.legal-notice--inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.legal-notice--banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  border-left-width: 3px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

.legal-notice--banner svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══ Cookie Banner ══ */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  margin: 0 auto;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner__content {
  flex: 1;
  min-width: 0;
}

.cookie-banner__content strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.cookie-banner__content p {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner button {
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--cream-2);
  color: var(--text);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}

.cookie-banner button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cookie-banner button[data-cookie-accept] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.cookie-banner button[data-cookie-accept]:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.cookie-banner button[data-cookie-reject] {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}

.cookie-banner button[data-cookie-reject]:hover {
  color: var(--text);
  border-color: var(--border);
}

/* ══ Cookie Modal ══ */

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.cookie-modal.is-open {
  display: block;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 35, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cookie-modal__panel {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: 8vh auto;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}

.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--cream-2);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all .3s;
}

.cookie-modal__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cookie-modal h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.cookie-modal > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-modal label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
}

.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
}

.cookie-modal label:has(input:disabled) {
  opacity: 0.6;
}

.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.cookie-modal button {
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--cream-2);
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all .3s ease;
}

.cookie-modal button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cookie-modal button[data-cookie-save] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.cookie-modal button[data-cookie-save]:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.cookie-modal button[data-cookie-accept] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.cookie-modal button[data-cookie-accept]:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Modal open body lock */

body.modal-open {
  overflow: hidden;
}

/* ══ Legal Banner (informativo discreto) ══ */

.legal-banner {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.legal-banner strong {
  color: var(--text);
}

/* ══ Cookie Banner Responsive ══ */

@media (max-width: 768px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-banner button {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .cookie-modal__panel {
    margin: 5vh auto;
    padding: 24px;
    border-radius: 20px;
  }

  .cookie-modal__actions {
    flex-direction: column;
  }

  .cookie-modal button {
    width: 100%;
    justify-content: center;
  }
}

/* ══ Cookie Bar (legacy) ══ */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(2, 12, 20, 0.06);
  font-size: 0.82rem;
  color: var(--muted);
}

.cookie-bar a { color: var(--gold); }
.cookie-bar a:hover { color: var(--navy); }

.cookie-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.82rem;
  transition: all .3s;
}

.cookie-btn:hover { background: var(--gold); }

/* ══ Elige tu Situación ══ */

.situacion-grid {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.situacion-option {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.situacion-option:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
}

.situacion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: color 0.25s;
  gap: 10px;
}

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

.situacion-header .situacion-num {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.situacion-header .situacion-arrow {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 0.35s var(--ease);
}

.situacion-option.expanded .situacion-arrow {
  transform: rotate(180deg);
}

.situacion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.situacion-body > div {
  overflow: hidden;
}

.situacion-body-inner {
  padding: 0 18px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.situacion-body-inner p {
  margin-bottom: 16px;
}

.situacion-option.expanded .situacion-body {
  grid-template-rows: 1fr;
}

/* ══ Form Styles ══ */

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: all .25s var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-light);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm, 8px);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-light);
}

input::placeholder, textarea::placeholder {
  color: var(--muted-light);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group {
  margin-bottom: 20px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

input[type="checkbox"] {
  width: auto;
  padding: 0;
  accent-color: var(--gold);
}

/* ══ Microtext ══ */

.microtext {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  font-style: italic;
}

.microtext--center {
  text-align: center;
}

.microtext--gold {
  color: var(--gold-soft);
}

/* ══ Credit Page Sections ══ */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.card-highlight {
  background: linear-gradient(135deg, var(--gold-light), transparent);
  border-color: var(--gold-soft);
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step h4 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.mt-24 {
  margin-top: 24px;
}

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

.card-pillar {
  text-align: center;
  padding: 2rem 1.5rem;
}

.card-icon {
  margin-bottom: 10px;
  color: var(--gold);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.highlight-box {
  text-align: center;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.highlight-box p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-editorial {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: center;
}

.about-editorial p {
  margin: 0;
}


/* ══ Credits Hero ══ */

.credits-hero {
  display: block;
  padding: 0 0 40px;
}

.credits-hero-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.credits-hero-card h1 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--text);
}

.credits-hero-card > p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* ══ New Credits Hero Left Panel ══ */

.credits-hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0;
}

.credits-hero-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.credits-hero-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0;
  max-width: 500px;
}

.credits-hero-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
}

.credits-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.credits-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.credits-hero-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.credits-hero-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.credits-hero-left .btn {
  align-self: flex-start;
}

/* ══ Finance Page Hero ══ */

.finance-page-hero {
  padding-bottom: 0;
}

.finance-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 0 0 40px;
}

.finance-hero-panel {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.finance-hero-panel h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
}

.finance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.finance-tags span {
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

/* ══ About Hero ══ */

.about-hero {
  padding-bottom: 0;
}

.finance-page-hero .section-title,
.about-hero .section-title,
.contact-hero .section-title {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.credits-shell .hero-actions .btn-primary,
.finance-page-hero .hero-actions .btn-primary,
.about-hero .hero-actions .btn-primary,
.contact-hero .hero-actions .btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(6, 24, 35, 0.15);
}

.credits-shell .hero-actions .btn-primary:hover,
.finance-page-hero .hero-actions .btn-primary:hover,
.about-hero .hero-actions .btn-primary:hover,
.contact-hero .hero-actions .btn-primary:hover {
  background: var(--gold);
  color: var(--white);
}

.credits-shell .hero-actions .btn-secondary,
.finance-page-hero .hero-actions .btn-secondary,
.about-hero .hero-actions .btn-secondary,
.contact-hero .hero-actions .btn-secondary {
  background: var(--white);
  border-color: var(--border);
  color: var(--navy);
  backdrop-filter: none;
}

.credits-shell .hero-actions .btn-secondary:hover,
.finance-page-hero .hero-actions .btn-secondary:hover,
.about-hero .hero-actions .btn-secondary:hover,
.contact-hero .hero-actions .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-light);
}

.about-quote {
  max-width: 640px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 0 0 40px;
}

.contact-hero {
  padding-bottom: var(--space);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: start;
  padding: var(--internal-hero-gap) 0 0;
}

.contact-panel {
  padding-top: 12px;
}

.about-columns {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.about-columns .card {
  padding: 16px;
}

.about-columns h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}

.about-columns p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ══ Card Variants ══ */

.card-accent {
  border-top: 2px solid var(--gold);
}

.card-icon-spaced {
  margin-bottom: 16px;
  color: var(--gold);
}

/* ══ Info Cards ══ */

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  margin-top: 24px;
}

.info-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(7, 30, 44, 0.04);
  transition: all .4s var(--ease);
}

.info-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 12px 40px rgba(200,155,60,.1), 0 4px 12px rgba(7,30,44,.06);
  transform: translateY(-3px);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--gold);
  margin-bottom: 12px;
  transition: all .35s var(--ease);
}

.info-card:hover .info-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.06);
}

.info-title {
  font-family: 'Staatliches', var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
  text-transform: uppercase;
}

.info-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ══ Financiamiento Simulator ══ */

.sim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sim-grid .wide {
  grid-column: 1 / -1;
}

.sim-actions {
  margin-top: 16px;
}

.sim-note {
  margin: 16px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
}

.simulator-card {
  max-width: 680px;
  margin: 24px auto 0;
  padding: 28px 24px;
}

.form-error {
  color: #dc2626;
  font-size: 0.82rem;
  margin: 8px 0 0;
}

/* ══ Highlight Box strong variant (used in propiedades filter) ══ */

.highlight-box.text-left {
  text-align: left;
  padding: 1.5rem;
}

.highlight-box strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 6px;
}

.highlight-box .highlight-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ══ Mobile Bottom Nav ══ */

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(2, 12, 20, 0.06);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
}

.mobile-bottom-nav ul { display: flex; justify-content: space-around; align-items: center; }

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .25s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover { color: var(--gold); }

.mobile-bottom-nav a span { font-size: 1.15rem; }

/* ══ Home Property Grid ══ */

.pc-grid-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.btn-access { margin-top: 24px; text-align: center; }

/* ══ Scroll Progress Bar ══ */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy-light));
  z-index: 9999;
  pointer-events: none;
  will-change: width;
}

/* ══ Simulator Results ══ */

.sim-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  margin-bottom: 8px;
}

.sim-result-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.sim-result-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.sim-result-value.gold {
  color: var(--gold);
}

/* ══ Financing Simulator ══ */

.simulator-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.simulator-form .btn {
  width: 100%;
}

/* ══ Gallery Modal ══ */

.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(6, 24, 35, 0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

.gallery-modal.open {
  display: flex;
}

.gallery-modal img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.gallery-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 24, 35, 0.6);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.gallery-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 24, 35, 0.6);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.gallery-prev { left: 24px; }
.gallery-next { right: 24px; }

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ══ Tech Dropdown ══ */

.section-tech {
  padding: var(--space-sm) 0;
}

.tech-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .4s var(--ease);
}

.tech-dropdown:hover {
  box-shadow: var(--shadow);
}

.tech-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
  transition: background .3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.tech-trigger:hover {
  background: var(--gold-light);
}

.tech-trigger-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}

.tech-trigger-label svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.tech-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.tech-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--muted);
  flex-shrink: 0;
  transition: all .35s var(--ease);
}

.tech-dropdown.open .tech-arrow {
  background: var(--gold);
  color: var(--white);
  transform: rotate(180deg);
}

.tech-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}

.tech-dropdown.open .tech-panel {
  grid-template-rows: 1fr;
}

.tech-panel-inner {
  overflow: hidden;
}

.tech-dropdown.open .tech-panel-inner {
  padding: 0 24px 24px;
}

.tech-section {
  margin-top: 20px;
}

.tech-section-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tech-grid-scripts {
  grid-template-columns: repeat(2, 1fr);
}

.tech-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--cream-2);
  border: 1px solid var(--border-light);
  transition: all .3s var(--ease);
}

.tech-item:hover {
  border-color: var(--gold-soft);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200,155,60,.1);
}

.tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.tech-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.tech-desc {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.45;
}

.tech-item-script {
  padding: 14px 16px;
}

.tech-script-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-icon-script {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 0.55rem;
}

.tech-item-script .tech-desc {
  margin-top: 4px;
  padding-left: 38px;
}

@media (max-width: 900px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid-scripts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .tech-trigger {
    flex-wrap: wrap;
    padding: 14px 16px;
  }
  .tech-count {
    order: 3;
    width: 100%;
    text-align: left;
  }
  .tech-dropdown.open .tech-panel-inner {
    padding: 0 16px 16px;
  }
}

/* ══ Responsive ══ */

@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .credits-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .pc-grid-home { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .menu-toggle { display: flex; }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(231, 222, 210, 0.5);
    box-shadow: 0 12px 40px rgba(7, 30, 44, 0.1);
    z-index: 100;
    max-height: calc(100vh - var(--fixed-header-offset) - 18px);
    overflow-y: auto;
  }

  .site-nav.open { display: flex; animation: navSlideIn .3s var(--ease); }
  .site-nav a { padding: 12px 16px; text-align: center; border-radius: 10px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu { display: block; }
}

@keyframes navSlideIn {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  :root {
    --fixed-header-offset: 64px;
    --internal-hero-gap: 28px;
  }

  .menu-toggle { display: flex; }

  .site-header-wrap {
    z-index: 1000;
  }

  .site-header {
    min-height: 64px;
  }

  .topbar {
    padding: 6px 0;
    font-size: 0.66rem;
  }

  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(231, 222, 210, 0.5);
    box-shadow: 0 12px 40px rgba(7, 30, 44, 0.1);
    z-index: 100;
    max-height: calc(100vh - var(--fixed-header-offset) - 18px);
    overflow-y: auto;
  }

  .site-nav.open { display: flex; animation: navSlideIn .3s var(--ease); }
  .site-nav a { padding: 10px 12px; text-align: center; border-radius: 10px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 4px 8px;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .nav-dropdown.open .nav-dropdown-menu a {
    padding: 10px 8px;
    font-size: 0.72rem;
    text-align: center;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--cream);
  }

  .nav-dropdown.open .nav-dropdown-menu a svg {
    width: 18px;
    height: 18px;
    opacity: 0.6;
  }

  .nav-dropdown .nav-dropdown-arrow { display: none; }

  .properties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .credits-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3 .card { padding: 16px; }
  .grid-3 .card h3 { font-size: 0.92rem; margin-bottom: 6px; }
  .grid-3 .card p { font-size: 0.8rem; }
  .grid-3 .card-icon { margin-bottom: 6px; }
  .grid-3 .card-icon svg { width: 20px; height: 20px; }
  .grid-3 .btn { margin-top: 14px; padding: 8px 16px; font-size: 0.78rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pc-grid-home { grid-template-columns: 1fr; }

  .hero-content { padding: 20px 0 0; }

  .credits-hero,
  .finance-hero-grid,
  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .finance-page-hero .section-title,
  .about-hero .section-title,
  .contact-hero .section-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.08;
  }

  .credits-hero-card {
    padding: 18px;
  }

  .credits-hero-card h1 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  .credits-hero-card > p {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .credits-hero-left {
    padding: 20px 0;
    gap: 12px;
  }

  .credits-hero-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .credits-hero-desc {
    font-size: 0.85rem;
  }

  .credits-hero-stats {
    gap: 16px;
  }

  .credits-hero-stat-num {
    font-size: 1.1rem;
  }

  .finance-hero-panel {
    padding: 24px;
  }

  .sim-grid {
    grid-template-columns: 1fr;
  }

  .simulator-card {
    padding: 20px 16px;
  }

  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .property-card-actions { grid-template-columns: 1fr; }

  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 68px; }

  :root { --space: clamp(32px, 5vw, 48px); --space-sm: clamp(20px, 3vw, 28px); }

  .simulator-form { padding: 24px; }

  #waFloat { right: 16px; bottom: 80px; }
  #backToTop { right: 16px; bottom: 138px; }
}

@media (max-width: 480px) {
  :root {
    --container: min(100% - 24px, 1200px);
    --fixed-header-offset: 60px;
    --internal-hero-gap: 24px;
  }

  .site-header {
    min-height: 60px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.48rem;
  }

  .hero-title { font-size: clamp(2rem, 11vw, 2.8rem); }
  .section-title { font-size: clamp(1.6rem, 9vw, 2.4rem); }
  .credits-hero-card { padding: 14px; }
  .credits-hero-card h1 { font-size: clamp(1.1rem, 5vw, 1.3rem); }
  .credits-hero-card > p { font-size: 0.78rem; margin-bottom: 10px; }
  .credits-hero-left { padding: 12px 0; }
  .credits-hero-title { font-size: clamp(1.4rem, 8vw, 1.6rem); }
  .credits-hero-stats { flex-direction: column; gap: 8px; }
  .credits-hero-stat { flex-direction: row; align-items: center; gap: 8px; }
  .credits-hero-stat-num { font-size: 1rem; min-width: 40px; }
  .credits-hero-stat-label { font-size: 0.68rem; }
  .footer-links { grid-template-columns: 1fr; }
  #waFloat { width: 48px; height: 48px; }
  :root { --space: clamp(28px, 4vw, 36px); --space-sm: clamp(16px, 2.5vw, 24px); }
}

@media (min-width: 981px) {
  .nav-dropdown-menu {
    display: block !important;
  }
}

/* ══ sim results (hidden by default) ══ */

#simResults[hidden] {
  display: none;
}

#simActions {
  display: none;
}

/* Home conversion sections */
.nav-cta-whatsapp {
  background: var(--whatsapp) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.22);
}

.nav-cta-whatsapp:hover {
  background: #1da851 !important;
}



.section-kicker-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.benefit-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.trust-item {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white), var(--cream-2));
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.pc-grid-home {
  grid-template-columns: repeat(3, 1fr);
}

.properties-grid-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 28px;
  perspective: 1200px;
}

.properties-grid-3d > * {
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), filter .5s var(--ease);
}

.properties-grid-3d > *:hover {
  transform: rotateX(1.5deg) rotateY(-1.5deg) translateY(-6px);
  filter: brightness(1.02);
}

.properties-grid-3d > *:not(:hover) {
  filter: brightness(0.98);
}

/* ── Section Premium Variants ── */

.section-props {
  position: relative;
}

.section-props::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 30% 0%, rgba(200,155,60,.04) 0%, transparent 70%);
  pointer-events: none;
}

.section-info {
  position: relative;
  overflow: hidden;
}

.section-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 70% 100%, rgba(200,155,60,.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 50%, rgba(6,30,44,.02) 0%, transparent 60%);
  pointer-events: none;
}

.btn-access {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-access .btn + .btn {
  margin-left: 0 !important;
}

.home-benefits {
  padding-bottom: var(--space-sm);
}

#propiedades-destacadas {
  padding-top: var(--space-sm);
}

.home-catalog-cta {
  background: var(--navy);
}

.catalog-request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 56px);
}

.catalog-request h2 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.catalog-request p:not(.section-label) {
  max-width: 640px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
}

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

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.lead-checklist {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.lead-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.lead-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.65);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--text);
  font-size: 16px;
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.form-field textarea {
  min-height: 88px;
  padding-top: 12px;
  resize: vertical;
  font-size: 16px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-light);
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
  cursor: pointer;
}

.lead-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.lead-consent a {
  color: var(--gold);
  font-weight: 700;
}

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

  .pc-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }

  .properties-grid-3d {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav-cta-whatsapp {
    white-space: normal;
  }

  .section-kicker-row {
    grid-template-columns: 1fr;
  }

  .trust-layout,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .catalog-request {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 0 40px;
  }
  .hero-content {
    padding: 20px 0 0;
  }

  .benefit-grid,
  .pc-grid-home,
  .trust-grid,
  .properties-grid-3d,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-card { padding: 20px 16px; }
  .info-icon { width: 38px; height: 38px; }

  .catalog-request .btn {
    width: 100%;
  }

  .lead-form {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .properties-grid-3d,
  .info-grid {
    grid-template-columns: 1fr;
  }

}

/* Compact legal disclosures */
.legal-disclosure {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--white), var(--cream));
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.legal-disclosure summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  font-size: 0.84rem;
}

.legal-disclosure summary::-webkit-details-marker { display: none; }
.legal-disclosure summary::after { content: '+'; margin-left: auto; color: var(--gold); font-weight: 900; }
.legal-disclosure[open] summary::after { content: '-'; }

.legal-disclosure p {
  margin: 0;
  padding: 0 14px 14px 44px;
  font-size: 0.78rem;
  line-height: 1.6;
}

.legal-disclosure.compact { box-shadow: none; }

.legal-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  font-style: normal;
}

.optional-label {
  color: var(--muted);
  font-weight: 500;
}

/* Advanced financing simulator */
.urbanova-finance-sim .section-copy { max-width: 680px; }
.uf-head { max-width: 760px; margin-bottom: 26px; }

.uf-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.uf-steps i { display: block; width: 44px; height: 1px; background: var(--border); }

.uf-step {
  width: 94px;
  min-height: 74px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.uf-step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  font-weight: 900;
}

.uf-step small { font-size: 0.72rem; font-weight: 800; }
.uf-step.active { border-color: var(--gold-soft); box-shadow: var(--shadow); }
.uf-step.active span { background: var(--gold); color: var(--navy); }

.uf-card {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.uf-panel { display: none; }
.uf-panel.active { display: block; }
.uf-card-head { margin-bottom: 20px; }
.uf-card-head h3 { margin: 0 0 6px; color: var(--navy); font-size: clamp(1.25rem, 2vw, 1.8rem); }
.uf-card-head p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.uf-grid-2,
.uf-grid-3,
.uf-grid-4,
.uf-grid-5,
.uf-final-grid {
  display: grid;
  gap: 14px;
}

.uf-grid-2 { grid-template-columns: repeat(2, 1fr); }
.uf-grid-3 { grid-template-columns: repeat(3, 1fr); }
.uf-grid-4 { grid-template-columns: repeat(4, 1fr); margin-top: 16px; }
.uf-grid-5 { grid-template-columns: repeat(5, 1fr); }
.uf-final-grid { grid-template-columns: repeat(4, 1fr); }

.uf-metric,
.uf-result,
.uf-summary {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream-2);
}

.uf-metric.dark { background: linear-gradient(135deg, var(--navy), var(--navy-3)); }
.uf-metric span,
.uf-result span,
.uf-final-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.uf-metric strong,
.uf-result strong,
.uf-final-grid strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.15;
}

.uf-metric.dark span,
.uf-metric.dark strong,
.uf-result.status span,
.uf-result.status strong { color: var(--white); }
.uf-result.status.is-good { background: linear-gradient(135deg, #166534, #22c55e); }
.uf-result.status.is-review { background: linear-gradient(135deg, #92400e, #f59e0b); }
.uf-result.status.is-limited { background: linear-gradient(135deg, #991b1b, #ef4444); }
.uf-top-gap { margin-top: 14px; }

.uf-compare { display: grid; gap: 8px; }
.uf-compare-card { padding: 10px; border-radius: 10px; background: var(--white); border: 1px solid var(--border); }
.uf-compare-card strong,
.uf-compare-card span { display: block; }
.uf-compare-card strong { color: var(--navy); font-size: 0.86rem; }
.uf-compare-card span { color: var(--muted); font-size: 0.76rem; }
.uf-summary { margin-top: 14px; }
.uf-summary h4 { margin: 0 0 12px; color: var(--navy); }

.uf-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.uf-actions.split { justify-content: space-between; }
.uf-legal { margin-top: 14px; }

@media (max-width: 1100px) {
  .uf-grid-4,
  .uf-grid-5,
  .uf-final-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .uf-steps i { display: none; }
  .uf-step { width: 86px; min-height: 66px; }
  .uf-grid-2,
  .uf-grid-3,
  .uf-grid-4,
  .uf-grid-5,
  .uf-final-grid { grid-template-columns: 1fr; }
  .uf-actions,
  .uf-actions.split { display: grid; grid-template-columns: 1fr; }
}
