/* ═══════════════════════════════════════════════════════════
   GRUPO ARCA — Diseño Premium 2026
   Paleta: Verde #06331F | Navy #17243D | Oro #C9A84C
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --green:     #06331F;
  --green-l:   #0a4a2d;
  --green-d:   #041f13;
  --navy:      #17243D;
  --navy-l:    #1e3158;
  --gold:      #C9A84C;
  --gold-l:    #dfc06a;
  --gold-d:    #a88836;
  --white:     #ffffff;
  --off-white: #F7F8F5;
  --gray-100:  #F0F2F4;
  --gray-300:  #D1D5DB;
  --gray-500:  #6B7280;
  --gray-700:  #374151;
  --text:      #111827;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --shadow:    0 2px 16px rgba(0,0,0,.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,.11);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
  --t:         .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.65; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ══════════════════════════════════════ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--lg { padding: 16px 36px; font-size: 1.02rem; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.38);
}
.btn--green {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,51,31,.35);
}
.btn--glass {
  background: rgba(255,255,255,.12);
  color: white;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
}
.btn--glass-dark {
  background: rgba(255,255,255,.1);
  color: white;
  border-color: rgba(255,255,255,.4);
}
.btn--glass-dark:hover {
  background: rgba(255,255,255,.2);
  border-color: white;
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline-dark:hover {
  background: var(--green);
  color: white;
}

/* ══════════════════════════════════════ NAV ══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--t);
}
.nav--scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 24px rgba(0,0,0,.06);
  padding: 14px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: white;
  transition: color var(--t);
  line-height: 1.2;
}
.logo-text strong { font-weight: 800; display: block; font-size: 1rem; }
.nav--scrolled .logo-text { color: var(--navy); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: color var(--t);
  letter-spacing: 0.02em;
}
.nav__links a:hover { color: var(--gold); }
.nav--scrolled .nav__links a { color: var(--gray-700); }
.nav--scrolled .nav__links a:hover { color: var(--green); }

.nav__cta { margin-left: 8px; }
.nav__burger { display: none; }

/* ══════════════════════════════════════ HERO ══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,51,31,.88) 0%,
    rgba(6,51,31,.70) 40%,
    rgba(23,36,61,.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 100px;
}
.hero__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.hero__h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.hero__wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

/* ══════════════════════════════════════ STATS BAND ══ */
.stats-band {
  background: var(--green);
  padding: 52px 0;
  position: relative;
  z-index: 3;
}
.stats-band__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-item__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-item__divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════════ SECTIONS ══ */
.section { padding: 110px 0; }
.section--dark { background: var(--navy); }
.section--light { background: var(--off-white); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(6,51,31,.07);
  border-radius: 100px;
}
.section__tag--light { color: var(--gold); background: rgba(201,168,76,.12); }
.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section__title--light { color: white; }
.section__sub { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; }
.section__sub--light { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════ NOSOTROS ══ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about__img-wrap:hover .about__img { transform: scale(1.04); }
.about__badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
}
.badge__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.badge__text {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about__text { }
.about__desc {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 36px;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: all var(--t);
}
.pillar:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pillar__icon {
  width: 44px; height: 44px;
  background: rgba(6,51,31,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.pillar h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pillar p {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ══════════════════════════════════════ PROYECTOS ══ */
.project-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn--active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.project-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--t);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-card--featured {
  grid-column: span 2;
}
.project-card--featured .project-card__img-wrap {
  height: 360px;
}

.project-card__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.project-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.project-card:hover .project-card__img-wrap img {
  transform: scale(1.07);
}
.project-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,51,31,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  cursor: pointer;
}
.project-card__img-wrap:hover .project-card__img-overlay {
  opacity: 1;
}

.project-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.project-card__badge--alert {
  top: 48px;
  background: #ef4444;
  color: white;
}
.project-card__badge--green {
  background: var(--green);
  color: white;
}

.project-card__body {
  padding: 24px 26px 26px;
}
.project-card__district {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.project-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.project-card__desc {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.project-card__features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.project-card__features span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-100);
  padding: 4px 11px;
  border-radius: 100px;
}
.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.project-card__price {
  font-size: .88rem;
  color: var(--gray-500);
}
.project-card__price strong {
  display: block;
  font-size: 1.2rem;
  color: var(--green);
  font-weight: 700;
}

/* ══════════════════════════════════════ NAV LOGO IMG ══ */
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity var(--t);
}
.nav--scrolled .nav__logo-img {
  filter: brightness(0); /* logo blanco → negro cuando nav tiene fondo blanco */
}
.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
  opacity: 0.9;
}

/* ══════════════════════════════════════ PROYECTO ÚNICO ══ */
.pacifico__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.project-card--hero .project-card__img-wrap {
  height: 320px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(6,51,31,.6);
  color: white;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery__item:hover .gallery__hover { opacity: 1; }
.gallery__caption {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
  letter-spacing: 0.04em;
}
/* specs del proyecto */
.project-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  color: var(--gray-700);
}
.spec-item svg { color: var(--green); flex-shrink: 0; }

/* dptos disponibles */
.avail__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.avail__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
}
.avail-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--t);
}
.avail-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.avail-card--featured {
  border-color: rgba(201,168,76,.4);
  background: rgba(201,168,76,.07);
}
.avail-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.avail-card__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
  padding: 3px 10px;
  border-radius: 100px;
}
.avail-card__tag--gold {
  color: var(--gold);
  background: rgba(201,168,76,.15);
}
.avail-card__floor {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.avail-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.avail-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.avail-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.avail-card__meta svg { color: var(--gold); }
.pacifico__right { display: flex; flex-direction: column; gap: 0; }

@media (max-width: 1024px) {
  .pacifico__layout { grid-template-columns: 1fr; }
  .avail__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .avail__cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════ MID CTA ══ */
.mid-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--green);
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/pacifico/int3.jpg') center/cover;
  opacity: 0.15;
}
.mid-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,51,31,.95), rgba(23,36,61,.85));
}
.mid-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.mid-cta__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 100px;
}
.mid-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.mid-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 40px;
}
.mid-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════ PROCESO ══ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition: all var(--t);
}
.step:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.step__icon {
  width: 60px; height: 60px;
  background: rgba(6,51,31,.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin: 0 auto 18px;
  transition: all var(--t);
}
.step:hover .step__icon {
  background: var(--green);
  color: white;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.step__connector {
  width: 40px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,.3));
  margin-top: 60px;
}
.proceso__cta {
  text-align: center;
}

/* ══════════════════════════════════════ FINANCIAMIENTO ══ */
.banks {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.bank {
  padding: 12px 26px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  background: white;
  transition: all var(--t);
  cursor: default;
}
.bank:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow);
}

.finance__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.finance__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-100);
  transition: all var(--t);
}
.finance__card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.finance__card-icon {
  width: 52px; height: 52px;
  background: rgba(6,51,31,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}
.finance__card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.finance__card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ══════════════════════════════════════ SIMULADOR ══ */
.simulator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow);
}
.sim__group {
  margin-bottom: 28px;
}
.sim__group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.sim__input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: white;
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color var(--t);
}
.sim__input-wrap:focus-within { border-color: var(--green); }
.sim__prefix {
  padding: 0 14px;
  font-size: .85rem;
  color: var(--gray-500);
  font-weight: 600;
  background: var(--gray-100);
  align-self: stretch;
  display: flex; align-items: center;
  border-right: 1.5px solid var(--gray-300);
}
.sim__group input[type=number] {
  border: none;
  outline: none;
  padding: 13px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  width: 100%;
  font-family: 'Inter', sans-serif;
  background: white;
}
.sim__group input[type=range] {
  width: 100%;
  accent-color: var(--green);
  cursor: pointer;
}
.sim__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: 6px;
}

.simulator__result {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sim__result-main {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.sim__result-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
}
.sim__result-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.sim__result-breakdown {
  flex: 1;
}
.sim__breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
}
.sim__breakdown-item span { color: rgba(255,255,255,.65); }
.sim__breakdown-item strong { color: white; font-weight: 600; }
.sim__disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 18px;
  line-height: 1.5;
}

/* ══════════════════════════════════════ TESTIMONIOS ══ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  transition: all var(--t);
  position: relative;
}
.testimonial:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.testimonial__quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.7;
  margin-bottom: 20px;
  display: block;
}
.testimonial__text {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial__author > div {
  flex: 1;
}
.testimonial__author strong {
  display: block;
  color: white;
  font-size: .92rem;
  font-weight: 700;
}
.testimonial__author span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  display: block;
  margin-top: 2px;
}
.testimonial__stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
  margin-left: auto;
  align-self: flex-start;
  flex-shrink: 0;
}

/* ══════════════════════════════════════ CONTACTO ══ */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: all var(--t);
  color: var(--text);
}
.contact__item:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact__item--wa { background: #e7f7ef; }
.contact__item--wa:hover { background: #d1f0e2; }
.contact__item-icon {
  width: 44px; height: 44px;
  background: rgba(6,51,31,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact__item--wa .contact__item-icon {
  background: rgba(37,211,102,.15);
  color: #25d366;
}
.contact__item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.contact__item span {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.contact__form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.contact__form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}
.form__group {
  margin-bottom: 20px;
}
.form__group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form__group input,
.form__group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color var(--t);
  outline: none;
}
.form__group input:focus,
.form__group select:focus { border-color: var(--green); }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
}
.pill:hover { border-color: var(--green); color: var(--green); }
.pill input[type=radio] { accent-color: var(--green); }
.form__note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 14px;
  line-height: 1.5;
}

/* ══════════════════════════════════════ FOOTER ══ */
.footer {
  background: var(--green-d);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.footer__brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer__col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; }
.footer__col li {
  margin-bottom: 12px;
}
.footer__col a, .footer__col li {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════ REVEAL ANIMATION ══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════ STICKY CTA ══ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: white;
  border-top: 1px solid var(--gray-100);
  padding: 14px 20px;
  display: flex;
  gap: 12px;
  transform: translateY(100%);
  transition: transform var(--t);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
}
.sticky-cta--visible { transform: none; }
.sticky-cta .btn { flex: 1; justify-content: center; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ══════════════════════════════════════ WhatsApp Float ══ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 400;
  transition: all var(--t);
  animation: waPop 0.5s 2s ease backwards;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
@keyframes waPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (max-width: 767px) {
  .wa-float { bottom: 80px; right: 16px; }
}

/* ══════════════════════════════════════ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img { height: 380px; }
  .projects__grid { grid-template-columns: 1fr 1fr; }
  .project-card--featured { grid-column: span 2; }
  .simulator { grid-template-columns: 1fr; gap: 32px; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .testimonials .testimonial:last-child { display: none; }
  .contact__layout { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--green);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }
  .nav__links--open { display: flex; }
  .nav__links a { font-size: 1.4rem; color: white; }
  .nav__links a:hover { color: var(--gold); }
  .nav__cta { display: none; }

  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    position: relative;
    z-index: 1001;
  }
  .nav__burger span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--t);
    display: block;
  }
  .nav--scrolled .nav__burger span { background: var(--navy); }
  .burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger--open span:nth-child(2) { opacity: 0; }
  .burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__h1 { font-size: 2.8rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__wave svg { height: 50px; }

  .stats-band { padding: 40px 0; }
  .stats-band__grid { flex-wrap: wrap; gap: 8px; }
  .stat-item { flex: 45%; padding: 20px 12px; }
  .stat-item__divider { display: none; }

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

  .projects__grid { grid-template-columns: 1fr; }
  .project-card--featured { grid-column: span 1; }

  .steps {
    flex-direction: column;
    gap: 16px;
  }
  .step__connector { width: 2px; height: 32px; margin: 0 auto; background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.3)); }

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

  .simulator { padding: 32px 24px; }

  .testimonials { grid-template-columns: 1fr; }
  .testimonials .testimonial:last-child { display: block; }

  .contact__form { padding: 32px 24px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .mid-cta { padding: 80px 0; }
  .mid-cta__btns { flex-direction: column; }
  .mid-cta__btns .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__h1 { font-size: 2.2rem; }
  .section__title { font-size: 1.8rem; }
}
