/* ═══════════════════════════════════════════════════════════
   MAS DESARROLLOS — style.css
   Paleta de marca (Manual de Normas): Negro #1D1D1B | Gris oscuro #4C4F55 | Gris claro #A3A8AC | Turquesa #5BBDB5
   Tipografia: Montserrat (Pier Sans) titulares + Source Sans 3 (Proxima Nova) textos | Fotografia siempre en blanco y negro
═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1D1D1B;
  --navy-light:  #4C4F55;
  --gold:        #5BBDB5;
  --gold-dark:   #2a7f78;
  --gold-light:  #9fd9d4;
  --white:       #ffffff;
  --off-white:   #f5f6f6;
  --gray-100:    #eef0f0;
  --gray-300:    #cdd0d2;
  --gray-500:    #A3A8AC;
  --gray-700:    #4C4F55;
  --text:        #333333;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.16);
  --transition:  .3s ease;
  --font-head:   'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body:   'Source Sans 3', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── CONTAINER ────────────────────────────────────────── */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

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

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

.btn-whatsapp       { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1aab53; }

.btn-outline        { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover  { background: var(--navy); color: var(--white); }

.btn-outline-light        { border: 2px solid rgba(255,255,255,.7); color: var(--white); background: transparent; }
.btn-outline-light:hover  { background: rgba(255,255,255,.15); }

.btn-sm  { padding: .5rem 1.25rem; font-size: .85rem; }
.btn-lg  { padding: .9rem 2.25rem; font-size: 1rem; }
.w-full  { width: 100%; justify-content: center; }

/* ─── SECTION LABELS / TITLES ──────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title.centered { text-align: center; }
.section-title.light    { color: var(--white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 3rem;
  max-width: 640px;
}
.section-subtitle.centered { text-align: center; margin-inline: auto; }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(29,29,27,.97);
  padding: .6rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition);
  filter: brightness(0) invert(1); /* logo blanco sobre header oscuro */
}
.site-header.scrolled .logo img { height: 42px; }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: .25rem; }
.main-nav a {
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: .02em;
}
.main-nav a:hover { color: var(--gold); background: rgba(255,255,255,.06); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: .9rem;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
}
.hero-swiper, .swiper-wrapper, .swiper-slide { width: 100%; height: 100%; }

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(29,29,27,.85) 0%,
    rgba(29,29,27,.5) 60%,
    rgba(29,29,27,.2) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 120px 80px;
}
.slide-text { max-width: 680px; }

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 560px;
}
.slide-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Swiper controls */
.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-color: var(--gold);
  --swiper-navigation-size: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  transition: background var(--transition);
}
.swiper-button-prev:hover,
.swiper-button-next:hover { background: rgba(91,189,181,.3); }
.swiper-pagination-bullet { background: rgba(255,255,255,.5); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); transform: scale(1.3); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-scroll-indicator span {
  display: block; width: 2px; height: 8px;
  background: rgba(255,255,255,.6); border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}
.hero-scroll-indicator span:nth-child(2) { animation-delay: .2s; }
.hero-scroll-indicator span:nth-child(3) { animation-delay: .4s; }
@keyframes scrollDot { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ══════════════════════════════════════════════════════════
   STATS BAR — RETIRADA 25/07/2026 (ver index.php)
══════════════════════════════════════════════════════════ */
/*
.stats-bar {
  background: var(--navy);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: inline;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); }
.stat-label {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-top: .4rem;
  font-weight: 400;
  letter-spacing: .03em;
}
*/

/* ══════════════════════════════════════════════════════════
   PROYECTO DESTACADO
══════════════════════════════════════════════════════════ */
.featured-project {
  padding: 7rem 0;
  background: var(--off-white);
}
.featured-project .container > .section-label,
.featured-project .container > .section-title,
.featured-project .container > .section-subtitle { text-align: center; display: block; }

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}

/* Gallery */
.project-gallery { position: relative; }
.project-main-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.project-main-img img,
.project-main-img .project-video { width: 100%; height: 380px; object-fit: cover; display: block; background: var(--navy); }
.project-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
}
.badge-progress {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  padding: .4rem 1rem;
  border-radius: 20px;
  letter-spacing: .04em;
}
.project-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: .75rem;
}
.thumb-img {
  width: 100%; height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform var(--transition), filter var(--transition);
  cursor: pointer;
}
.thumb-img:hover { transform: scale(1.04); filter: brightness(1.08); }

/* Details */
.project-name {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .04em;
  margin-bottom: .4rem;
}
.project-address {
  color: var(--gray-500);
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.project-address i { color: var(--gold); }
.project-desc { color: var(--gray-700); margin-bottom: 1.75rem; line-height: 1.75; }

/* Progress */
.progress-section { margin-bottom: 1.75rem; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: .5rem; font-size: .9rem; color: var(--gray-700); }
.progress-header strong { color: var(--gold); font-size: 1.1rem; }
.progress-bar { height: 12px; background: var(--gray-100); border-radius: 6px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 6px;
  position: relative;
  transition: width 1.5s cubic-bezier(.25,.46,.45,.94);
}
.progress-fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.progress-note { margin-top: .6rem; font-size: .85rem; color: var(--gray-500); }
.progress-note i { color: var(--gold); }

/* Specs */
.project-specs { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.spec {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.spec i {
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: .15rem;
  min-width: 20px;
  text-align: center;
}
.spec div { display: flex; flex-direction: column; }
.spec strong { font-size: .9rem; color: var(--navy); }
.spec span   { font-size: .85rem; color: var(--gray-500); }

.project-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.project-urgency {
  font-size: .9rem;
  color: #c0392b;
  font-weight: 700;
  background: #fff5f5;
  padding: .7rem 1rem;
  border-radius: 8px;
  border-left: 3px solid #e74c3c;
}
.project-urgency i { margin-right: .25rem; }

/* ══════════════════════════════════════════════════════════
   POR QUÉ INVERTIR
══════════════════════════════════════════════════════════ */
.why-invest {
  padding: 7rem 0;
  background: var(--white);
}
.why-invest .section-label,
.why-invest .section-title { text-align: center; display: block; }
.why-invest .section-title { margin-bottom: 3.5rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon i { font-size: 1.3rem; color: var(--gold); }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.why-card p { font-size: .9rem; color: var(--gray-700); line-height: 1.7; }
.why-card strong { color: var(--navy); }

/* ══════════════════════════════════════════════════════════
   FINANCIACIÓN
══════════════════════════════════════════════════════════ */
.financing { padding: 7rem 0; background: var(--navy); }
.financing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.financing-text .section-title { color: var(--white); }
.financing-lead { color: rgba(255,255,255,.72); margin-bottom: 1.75rem; }
.financing-benefits { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.5rem; }
.financing-benefits li { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.8); font-size: .95rem; }
.financing-benefits i  { color: var(--gold); font-size: .9rem; }
.financing-note { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.financing-note i { color: var(--gold); margin-right: .35rem; }

.financing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.financing-card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.financing-price-label { font-size: .85rem; color: var(--gray-500); margin-bottom: .2rem; }
.financing-price { display: flex; align-items: baseline; justify-content: center; gap: .5rem; line-height: 1; }
.financing-currency { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--gray-500); }
.financing-price strong {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
}
.financing-price-note {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: .5rem;
}

.financing-plan {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.75rem 0 1.25rem;
}
.financing-plan-item { display: flex; flex-direction: column; }
.financing-plan-item strong {
  font-family: var(--font-head);
  font-size: 1.75rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.financing-plan-item span { font-size: .78rem; color: var(--gray-500); margin-top: .35rem; }
.financing-plan-sep { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); }

.financing-custom { font-size: .9rem; color: var(--gray-700); margin-bottom: 1.25rem; }
.financing-custom strong { color: var(--navy); }
.financing-card .btn + .btn { margin-top: .75rem; }
.financing-disclaimer { font-size: .75rem; color: var(--gray-500); line-height: 1.5; margin-top: 1.25rem; }

/* ─── FAQ (acordeón nativo con <details>) ─── */
.financing-faq { max-width: 820px; margin: 4.5rem auto 0; }
.financing-faq-title {
  font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 700;
  color: var(--white); text-align: center;
  margin-bottom: 1.5rem;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,.12); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.faq-item summary i { color: var(--gold); font-size: .8rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-answer p { margin: 0; padding-bottom: 1.1rem; font-size: .92rem; line-height: 1.75; color: rgba(255,255,255,.72); }

/* ══════════════════════════════════════════════════════════
   GALERÍA DE OBRA
══════════════════════════════════════════════════════════ */
.site-gallery { padding: 7rem 0; background: var(--white); }
.site-gallery .section-label,
.site-gallery .section-title,
.site-gallery .section-subtitle { text-align: center; display: block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-btn {
  display: block; width: 100%; padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.gallery-btn img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }

/* ─── Lightbox ─── */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(29,29,27,.96);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 1rem 3rem;
}
.gallery-lightbox[hidden] { display: none; }
.gallery-close {
  position: absolute; top: 1rem; right: 1.25rem; z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white); font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.gallery-close:hover { background: var(--gold); color: var(--navy); }
.gallery-swiper { width: 100%; max-width: 1200px; height: 100%; }
.gallery-swiper .swiper-slide { display: flex; align-items: center; justify-content: center; }
.gallery-swiper .swiper-slide img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--radius); }
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next { color: var(--white); }
.gallery-swiper .swiper-pagination {
  bottom: 0;
  color: rgba(255,255,255,.75);
  font-family: var(--font-head); font-size: .85rem; letter-spacing: .05em;
}

/* ══════════════════════════════════════════════════════════
   CALCULADORA ROI — RETIRADA 25/07/2026 (ver index.php)
══════════════════════════════════════════════════════════ */
/*
.roi-calculator {
  padding: 7rem 0;
  background: var(--navy);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.calc-text .section-title { color: var(--white); }
.calc-text p { color: rgba(255,255,255,.7); margin-bottom: 1.75rem; }
.calc-benefits { display: flex; flex-direction: column; gap: .7rem; }
.calc-benefits li { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.8); font-size: .95rem; }
.calc-benefits i { color: var(--gold); font-size: .9rem; }

.calc-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}
.calc-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.calc-field { margin-bottom: 1.25rem; }
.calc-field label { display: block; font-size: .85rem; font-weight: 700; color: var(--gray-700); margin-bottom: .4rem; }
.calc-field input[type="number"] {
  width: 100%; padding: .65rem 1rem;
  border: 2px solid var(--gray-100); border-radius: 8px;
  font-size: 1rem; font-weight: 700; color: var(--navy);
  transition: border-color var(--transition);
}
.calc-field input[type="number"]:focus { outline: none; border-color: var(--gold); }
.calc-field input[type="range"] { width: calc(100% - 4rem); vertical-align: middle; accent-color: var(--gold); }
.calc-field span { font-weight: 700; color: var(--gold); font-size: .95rem; margin-left: .5rem; }

.calc-results {
  background: var(--off-white);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.calc-result-item { display: flex; justify-content: space-between; align-items: center; }
.calc-result-item.highlight { background: var(--navy); padding: .75rem 1rem; border-radius: 8px; }
.result-label  { font-size: .85rem; color: var(--gray-700); }
.result-value  { font-weight: 700; color: var(--navy); font-size: .95rem; }
.calc-result-item.highlight .result-label  { color: rgba(255,255,255,.8); }
.calc-result-item.highlight .result-value  { color: var(--gold); font-size: 1.1rem; }
.calc-disclaimer { font-size: .75rem; color: var(--gray-500); margin-bottom: 1.25rem; }
*/

/* ══════════════════════════════════════════════════════════
   NOSOTROS
══════════════════════════════════════════════════════════ */
.about-section { padding: 7rem 0; background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
/* Badge "+40 años (IMPERMAX)" — RETIRADO 25/07/2026 (ver index.php)
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-family: var(--font-head); font-size: 2.5rem; line-height: 1; }
.about-badge span   { font-size: .8rem; opacity: .9; }
*/

.about-text { color: var(--gray-700); line-height: 1.8; margin-bottom: 2rem; }
.about-values { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.value-item { display: flex; align-items: flex-start; gap: 1rem; }
.value-item i { font-size: 1.2rem; color: var(--gold); margin-top: .15rem; min-width: 20px; text-align: center; }
.value-item strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: .15rem; }
.value-item span   { font-size: .875rem; color: var(--gray-500); }

/* ══════════════════════════════════════════════════════════
   TESTIMONIOS — RETIRADOS 25/07/2026 (ver index.php)
══════════════════════════════════════════════════════════ */
/*
.testimonials {
  padding: 7rem 0;
  background: var(--white);
}
.testimonials .section-label,
.testimonials .section-title { text-align: center; display: block; margin-bottom: 3.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.testimonial-card {
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { font-size: 1.1rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-text { font-size: .95rem; color: var(--gray-700); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-light); }
.testimonial-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testimonial-author span   { font-size: .8rem; color: var(--gray-500); }
*/

/* ══════════════════════════════════════════════════════════
   NOTICIAS
══════════════════════════════════════════════════════════ */
.news-section { padding: 7rem 0; background: var(--off-white); }
.news-section .section-label,
.news-section .section-title { display: block; margin-bottom: 3.5rem; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-img { overflow: hidden; }
.news-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: .78rem; color: var(--gold); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .6rem; }
.news-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; line-height: 1.4; }
.news-excerpt { font-size: .875rem; color: var(--gray-700); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.news-link { font-size: .85rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: .35rem; transition: gap var(--transition); }
.news-link:hover { gap: .6rem; }

/* ══════════════════════════════════════════════════════════
   SECCIÓN CONTACTO / FORMULARIO
══════════════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0; z-index: 0;
}
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(29,29,27,.92) 0%, rgba(29,29,27,.80) 100%);
}
.contact-section .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.75; }
.contact-features { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.cf-item { display: flex; align-items: center; gap: .9rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.cf-item i { color: var(--gold); font-size: 1rem; min-width: 18px; text-align: center; }

.contact-phone-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold-light); font-size: 1.25rem; font-weight: 700;
  margin-bottom: .5rem;
  transition: color var(--transition);
}
.contact-phone-link:hover { color: var(--gold); }
.contact-address-text { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: .4rem; }
.contact-address-text i { color: var(--gold); }

/* Formulario */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: .3rem;
}
.form-subtitle { color: var(--gray-500); font-size: .9rem; margin-bottom: 1.75rem; }

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

.step-indicator { text-align: right; margin-bottom: .75rem; }
.step-num { font-size: .78rem; font-weight: 700; color: var(--gray-500); letter-spacing: .08em; text-transform: uppercase; }

.form-label {
  display: block;
  font-size: .95rem; font-weight: 700;
  color: var(--navy); margin-bottom: .6rem;
  line-height: 1.4;
}
.form-label.required::after { content: ' *'; color: var(--gold); }

.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid var(--gray-100); border-radius: 8px;
  font-size: .95rem; color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(91,189,181,.18); }
.form-control.error { border-color: #e74c3c; }

.radio-group { display: flex; flex-direction: column; gap: .6rem; }
.radio-option {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.1rem;
  border: 2px solid var(--gray-100); border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.radio-option:hover { border-color: var(--gold-light); background: #faf8f4; }
.radio-option input[type="radio"] { display: none; }
.radio-custom {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition);
}
.radio-custom::after {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.radio-option input:checked ~ .radio-custom { border-color: var(--gold); }
.radio-option input:checked ~ .radio-custom::after { opacity: 1; }
.radio-option input:checked ~ .radio-label { font-weight: 700; color: var(--navy); }
.radio-option:has(input:checked) { border-color: var(--gold); background: #faf8f4; }
.radio-label { font-size: .9rem; color: var(--gray-700); }

.form-error { font-size: .8rem; color: #e74c3c; margin-top: .35rem; min-height: 1.2rem; }

.form-nav {
  display: flex; gap: 1rem; justify-content: flex-end;
  margin-top: 1.5rem; padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.btn-submit .btn-loading { display: none; }

/* Éxito */
#form-success { text-align: center; padding: 1.5rem 0; }
.success-icon { font-size: 3.5rem; color: #22c55e; margin-bottom: 1rem; }
.success-title { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin-bottom: .75rem; }
.success-desc { color: var(--gray-700); font-size: 1rem; margin-bottom: 1.5rem; }
.success-wa-text { color: var(--gray-700); font-size: .9rem; margin-bottom: .75rem; }

.form-privacy { font-size: .78rem; color: var(--gray-500); text-align: center; margin-top: 1rem; }
.form-privacy a { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }

.footer-main { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1.25fr;
  gap: 3rem;
}

.footer-brand .logo img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-nav h4, .footer-contact h4, .footer-legal-col h4 {
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem;
  padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a {
  font-size: .875rem; color: rgba(255,255,255,.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-nav a:hover { color: var(--gold); padding-left: .3rem; }

.footer-contact p { display: flex; align-items: center; gap: .65rem; font-size: .875rem; margin-bottom: .65rem; }
.footer-contact i { color: var(--gold); font-size: .85rem; min-width: 14px; text-align: center; }
.footer-contact a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-wa-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .75rem; padding: .6rem 1.25rem;
  background: #25d366; color: var(--white);
  border-radius: 8px; font-weight: 700; font-size: .85rem;
  transition: background var(--transition), transform var(--transition);
}
.footer-wa-btn:hover { background: #1aab53; transform: translateY(-2px); }

.footer-legal-col ul { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.footer-legal-col a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-legal-col a:hover { color: var(--gold); }
.footer-disclaimer { font-size: .75rem; color: rgba(255,255,255,.35); line-height: 1.6; }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOTANTE
══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  display: flex; align-items: center; gap: .75rem;
  background: #25d366;
  color: var(--white);
  padding: .75rem 1.5rem .75rem 1rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  font-weight: 700; font-size: .9rem;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.wa-float i { font-size: 1.4rem; }
@keyframes waFloat {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-5px); }
}
.wa-float:hover { animation: none; }

/* ══════════════════════════════════════════════════════════
   BOTÓN VOLVER ARRIBA
══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 998;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.back-to-top:hover {
  background: #3aa79e;
  transform: translateX(-50%) translateY(-3px);
}

/* ══════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.cookie-banner p { font-size: .85rem; margin: 0; }
.cookie-banner.hidden { display: none; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .project-grid       { gap: 2.5rem; }
  .why-grid           { grid-template-columns: repeat(2,1fr); }
  .financing-grid     { gap: 3rem; }
  .gallery-grid       { grid-template-columns: repeat(3,1fr); }
  .about-grid         { gap: 3rem; }
  .footer-grid        { grid-template-columns: repeat(2,1fr); }
}

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

  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--navy);
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav ul  { flex-direction: column; gap: 0; }
  .main-nav a   { padding: .75rem 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.06); }

  .header-phone { display: none; }

  .project-grid,
  .financing-grid,
  .about-grid,
  .contact-grid     { grid-template-columns: 1fr; gap: 2.5rem; }

  .gallery-grid     { grid-template-columns: repeat(2,1fr); gap: .75rem; }
  .gallery-lightbox { padding: 3.5rem .5rem 2.5rem; }
  .financing-faq    { margin-top: 3rem; }

  .why-grid,
  .news-grid         { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .wa-float-text { display: none; }
  .wa-float { padding: 1rem; border-radius: 50%; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .slide-ctas { flex-direction: column; }
  .slide-ctas .btn { width: 100%; justify-content: center; }
  .project-ctas { flex-direction: column; }
  .project-thumbnails { grid-template-columns: repeat(2,1fr); }
  .project-thumbnails .thumb-img:last-child { display: none; }
  .form-nav { flex-direction: column; }
  .contact-form-wrap { padding: 1.75rem; }
  .financing-card { padding: 1.75rem 1.25rem; }
  .financing-plan { flex-direction: column; gap: .85rem; }
  .financing-plan-sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   AJUSTES DE MARCA — Manual de Normas MAS Desarrollos
   Acento turquesa #5BBDB5 · titulares Montserrat · fotos B/N
═══════════════════════════════════════════════════════════ */

/* El turquesa es claro: texto oscuro sobre botones/insignias de acento */
.btn-gold            { color: var(--navy); }
.btn-gold:hover      { background: #3aa79e; color: var(--navy); }
.badge-progress      { color: var(--navy); }

/* Acento sobre fondos claros: turquesa oscuro para legibilidad */
.section-label,
.news-date,
.news-link,
.project-address i,
.spec i,
.progress-header strong,
.progress-note i,
.value-item i,
.form-privacy a,
.form-label.required::after { color: var(--gold-dark); }

/* Restaurar turquesa brillante donde el fondo es oscuro */
.financing .section-label,
.section-label.light { color: var(--gold); }
.contact-phone-link  { color: var(--gold-light); }

/* Links inline dentro de tarjetas y fichas */
.spec a,
.why-card a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: .15em;
}
.spec a:hover,
.why-card a:hover { color: var(--navy); }

/* Fotografía siempre en blanco y negro (norma de marca) */
.hero-slide,
.project-main-img img,
.project-main-img .project-video,
.thumb-img,
.news-img img,
.about-image img,
.contact-bg img,
.gallery-btn img,
.gallery-swiper .swiper-slide img { filter: grayscale(100%); }
.thumb-img:hover               { filter: grayscale(100%) brightness(1.08); }
.news-card:hover .news-img img { filter: grayscale(100%); }

/* Escape hatch: si el cliente prefiere las fotos de obra en color,
   agregar la clase "is-color" a <section class="site-gallery"> */
.site-gallery.is-color .gallery-btn img,
.site-gallery.is-color .gallery-swiper .swiper-slide img { filter: none; }

/* Titulares de marca: Montserrat en peso fuerte, tracking ajustado */
.slide-title, .project-name, .section-title { letter-spacing: -0.01em; }
.project-name { letter-spacing: .06em; } /* "MÁS" abierto, como el logo */

/* ═══════════════════════════════════════════════════════════
   SECCIONES DE PRODUCTO D74 (Beneficios · Tipologías · Terminaciones · Amenities)
═══════════════════════════════════════════════════════════ */

/* Etiqueta de sección centrada (para secciones con encabezado al centro) */
.section-label.centered-label { display: block; text-align: center; }

/* ── Beneficios D74 ── */
.benefits-section { padding: 7rem 0; background: var(--off-white); }
.benefits-section .section-title { text-align: center; margin-bottom: 3.5rem; }

/* ── Tipologías ── */
.typologies { padding: 7rem 0; background: var(--white); }
.typology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.typology-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  background: var(--off-white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.typology-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.typology-head { margin-bottom: 1.5rem; }
.typology-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: .25rem .7rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.typology-head h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}
.typology-metrics {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.typology-metrics div { display: flex; flex-direction: column; }
.typology-metrics strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1.1;
}
.typology-metrics span { font-size: .8rem; color: var(--gray-500); }
.typology-features { display: flex; flex-direction: column; gap: .6rem; }
.typology-features li { font-size: .92rem; color: var(--gray-700); display: flex; gap: .6rem; align-items: baseline; }
.typology-features i { color: var(--gold-dark); font-size: .8rem; }

/* ── Terminaciones y equipamiento ── */
.finishes { padding: 7rem 0; background: var(--navy); color: var(--white); }
.finishes-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.finishes-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.finishes-content .section-title { color: var(--white); margin-bottom: 2rem; }
.finishes-content .section-label { color: var(--gold); }
.finishes-list { display: flex; flex-direction: column; gap: 1rem; }
.finishes-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1rem;
  color: var(--gray-300);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.finishes-list li:last-child { border-bottom: none; padding-bottom: 0; }
.finishes-list i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 1.6rem;
  text-align: center;
  flex-shrink: 0;
}

/* ── Amenities ── */
.amenities-section { padding: 7rem 0; background: var(--off-white); }
.amenities-section .section-title { text-align: center; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.amenity-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.amenity-icon i { font-size: 1.4rem; color: var(--gold); }
.amenity-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.amenity-card p { font-size: .85rem; color: var(--gray-700); line-height: 1.6; }

/* ── Avatar de testimonios — RETIRADO 25/07/2026 (ver index.php) ──
.testimonial-avatar {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
}
*/

/* Imágenes de relleno (stock) siempre en blanco y negro (norma de marca) */
.is-stock,
.finishes-media img { filter: grayscale(100%); }

/* ── Responsive de las secciones nuevas ── */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .typology-grid,
  .finishes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .finishes-media { order: -1; }
  .benefits-section .section-title,
  .why-invest .section-title { margin-bottom: 2.5rem; }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .typology-metrics { gap: 1rem; }
}
