/* ============================================================
   DESIGN SYSTEM — Integral Construct BenFel
   Premium Construction Studio · 2026
   Typografía: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

/* ─────────────────────────────────────────
   0. TOKENS & VARIABLES
───────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:       #0A2E5C;
  --blue:       #1E5BA8;
  --sky:        #2C7BE5;
  --gold:       #C9A227;
  --gold-light: #E8C547;

  /* Neutrals */
  --white:      #FFFFFF;
  --off-white:  #F6F5F0;
  --stone:      #EAE8E1;
  --gray-100:   #F4F4F2;
  --gray-200:   #E8E8E4;
  --gray-400:   #B0ADA6;
  --gray-600:   #706C63;
  --gray-800:   #343230;
  --black:      #0E0E0C;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --gap-xs:   0.5rem;
  --gap-sm:   1rem;
  --gap-md:   2rem;
  --gap-lg:   4rem;
  --gap-xl:   6rem;
  --gap-xxl:  10rem;

  /* Radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  32px;

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --t-fast:    0.18s;
  --t-med:     0.35s;
  --t-slow:    0.65s;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(10,46,92,0.08);
  --shadow-md:  0 8px 32px rgba(10,46,92,0.12);
  --shadow-lg:  0 24px 64px rgba(10,46,92,0.16);
  --shadow-xl:  0 40px 100px rgba(10,46,92,0.22);

  /* Layout */
  --container: 1280px;
  --container-sm: 800px;
  --nav-h: 80px;
}

/* ─────────────────────────────────────────
   1. RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

ul { list-style: none; }

/* ─────────────────────────────────────────
   2. TYPOGRAPHY SCALE
───────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
}
.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }

/* ─────────────────────────────────────────
   3. LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
}
.container-sm {
  width: 100%;
  max-width: var(--container-sm);
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ─────────────────────────────────────────
   4. NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  display: block;
  line-height: 1.2;
}
.nav--dark .nav-logo-text { color: var(--white); }
.nav.scrolled .nav-logo-text { color: var(--navy); }
/* Footer fallback texto logo */
.footer .nav-logo-text,
.footer-brand .nav-logo-text {
  color: rgba(255,255,255,0.9) !important;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: block;
}
@media (max-width: 480px) {
  .nav-logo-text { font-size: 0.9rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gray-800);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--navy);
  transition: width var(--t-med) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: none;
  padding: 0.65rem 1.5rem;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue) !important; color: var(--white) !important; transform: translateY(-1px); }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: all var(--t-med) var(--ease);
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

@media (min-width: 768px) {
  .nav-burger { display: none; }
  .nav-links { display: flex; }
}
@media (max-width: 767px) {
  .nav-links { display: none; }
}

/* Nav transparent (sobre hero oscuro) */
.nav--dark .nav-links a { color: rgba(255,255,255,0.85); }
.nav--dark .nav-links a::after { background: var(--white); }
.nav--dark .nav-links a:hover,
.nav--dark .nav-links a.active { color: var(--white); }
.nav--dark .nav-burger span { background: var(--white); }
.nav--dark .nav-cta { background: var(--gold); }
.nav--dark .nav-cta:hover { background: var(--gold-light) !important; }

/* ─────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn-primary:hover {
  background: transparent;
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ─────────────────────────────────────────
   6. SECTION LABELS & HEADINGS
───────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow--dark { color: var(--gray-400); }
.section-eyebrow--navy { color: var(--blue); }

.section-rule {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-rule::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ─────────────────────────────────────────
   7. HERO
───────────────────────────────────────── */
.hero-new {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--black);
}
.hero-new__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-new__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,46,92,0.75) 0%,
    rgba(10,46,92,0.4) 50%,
    rgba(0,0,0,0.2) 100%
  );
}
.hero-new__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 6rem;
  padding-top: calc(var(--nav-h) + 3rem);
}
.hero-new__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-new__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 640px;
}
.hero-new__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-new__desc {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-new__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.hero-new__stats {
  position: absolute;
  bottom: var(--gap-lg);
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: right;
}
.hero-new__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-new__stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}
.hero-new__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-new__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* Carousel in hero */
.hero-carousel-new {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--t-med) var(--ease), width var(--t-med) var(--ease);
}
.hero-dot.active {
  background: var(--white);
  width: 64px;
}

/* ─────────────────────────────────────────
   8. TICKER / MARQUEE
───────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: var(--navy);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  white-space: nowrap;
  padding: 0 2.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ticker__item::after {
  content: '·';
  color: var(--gold);
  font-size: 1.2rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   9. INTRO / ABOUT SPLIT
───────────────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 960px) {
  .intro-split { grid-template-columns: 1fr 1fr; }
}
.intro-split__text {
  padding: var(--gap-xl) 2rem var(--gap-xl) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 960px) {
  .intro-split__text {
    padding: var(--gap-xl) 5rem var(--gap-xl) calc(50vw - var(--container)/2 + 2rem);
    padding-left: clamp(2rem, calc(50vw - 640px + 2rem), 8rem);
  }
}
.intro-split__media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.intro-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-split__stats {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
}
.intro-split__stat {
  background: rgba(10,46,92,0.85);
  backdrop-filter: blur(8px);
  padding: 1.25rem 1rem;
  text-align: center;
}
.intro-split__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.intro-split__stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}

/* ─────────────────────────────────────────
   10. TRUST BAR
───────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 2rem 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--stone);
}
@media (min-width: 640px) { .trust-bar__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .trust-bar__grid { grid-template-columns: repeat(5, 1fr); } }
.trust-bar__item {
  background: var(--off-white);
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}
.trust-bar__item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-bar__item-desc {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.4;
}
.trust-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 0.25rem;
}

/* ─────────────────────────────────────────
   11. SERVICES — EDITORIAL LIST
───────────────────────────────────────── */
.services-list {
  padding: var(--gap-xl) 0;
}
.services-list__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .services-list__header { grid-template-columns: 1fr 1fr; align-items: end; }
}
.services-list__items {}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 1.25rem 1.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .service-row { grid-template-columns: 80px 1fr 260px 120px auto; align-items: center; }
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--off-white);
  transition: width var(--t-slow) var(--ease);
  z-index: -1;
}
.service-row:hover::before { width: 100%; }
.service-row__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
  padding-top: 0.3rem;
}
.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  transition: color var(--t-fast);
}
.service-row:hover .service-row__title { color: var(--blue); }
.service-row__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  display: none;
}
@media (min-width: 768px) { .service-row__desc { display: block; } }
.service-row__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1rem;
  transition: all var(--t-med) var(--ease);
  flex-shrink: 0;
}
.service-row:hover .service-row__arrow {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: rotate(45deg);
}
.service-row__img {
  display: none;
}
@media (min-width: 768px) {
  .service-row__img {
    display: block;
    width: 110px;
    height: 72px;
    object-fit: cover;
    border-radius: 3px;
    filter: grayscale(20%);
    transition: filter var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  }
  .service-row:hover .service-row__img {
    filter: grayscale(0%);
    transform: scale(1.04);
  }
}

/* ─────────────────────────────────────────
   12. PROJECTS GRID
───────────────────────────────────────── */
.projects-section {
  padding: var(--gap-xl) 0;
  background: var(--off-white);
}
.projects-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
}
@media (min-width: 640px) {
  .projects-grid-new { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .projects-grid-new { grid-template-columns: repeat(3, 1fr); }
  .projects-grid-new .project-card-new:first-child { grid-column: span 2; }
}
.project-card-new {
  position: relative;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.projects-grid-new .project-card-new:first-child { aspect-ratio: 16/9; }
@media (max-width: 1023px) {
  .projects-grid-new .project-card-new:first-child { aspect-ratio: 4/3; }
}
.project-card-new img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease), opacity var(--t-slow) var(--ease);
}
.project-card-new:hover img {
  transform: scale(1.06);
  opacity: 0.75;
}
.project-card-new__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,46,92,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.project-card-new:hover .project-card-new__overlay { opacity: 1; }
.project-card-new__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  transform: translateY(8px);
  transition: transform var(--t-med) var(--ease);
}
.project-card-new:hover .project-card-new__info { transform: translateY(0); }
.project-card-new__cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.3rem;
}
.project-card-new__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

/* ─────────────────────────────────────────
   13. BEFORE/AFTER SLIDER
───────────────────────────────────────── */
.ba-section {
  padding: var(--gap-xl) 0;
  background: var(--white);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--gap-lg);
}
@media (min-width: 768px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
.ba-card {}
.ba-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  user-select: none;
}
.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
}
.ba-slider__after { clip-path: inset(0 50% 0 0); }
.ba-slider__before img,
.ba-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__label {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.ba-label-before {
  left: 1rem;
  background: rgba(0,0,0,0.5);
  color: var(--white);
}
.ba-label-after {
  right: 1rem;
  background: var(--navy);
  color: var(--white);
}
.ba-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  cursor: ew-resize;
  transform: translateX(-50%);
}
.ba-slider__handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ba-slider__handle::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 700;
}
.ba-card__caption {
  padding: 1.25rem 0 0;
}
.ba-card__caption h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.ba-card__caption p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ─────────────────────────────────────────
   14. PROCESS / STEPS
───────────────────────────────────────── */
.process-section {
  padding: var(--gap-xl) 0;
  background: var(--navy);
  color: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--gap-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }
.process-step {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.process-step:last-child { border-right: none; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.process-step__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ─────────────────────────────────────────
   15. TESTIMONIALS
───────────────────────────────────────── */
.testimonials-section {
  padding: var(--gap-xl) 0;
  background: var(--off-white);
}
.testimonials-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--gap-lg);
}
@media (min-width: 768px) { .testimonials-grid-new { grid-template-columns: repeat(3, 1fr); } }
.testimonial-new {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
}
.testimonial-new__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  font-style: italic;
}
.testimonial-new__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}
.testimonial-new__author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.testimonial-new__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-new__loc {
  font-size: 0.78rem;
  color: var(--gray-600);
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────
   16. CTA FULLSCREEN
───────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: var(--gap-xl) 0;
  background: var(--black);
  overflow: hidden;
  text-align: center;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.cta-section__content {
  position: relative;
  z-index: 1;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.cta-section__title em {
  font-style: italic;
  color: var(--gold-light);
}
.cta-section__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   17. VIDEO SECTION
───────────────────────────────────────── */
.video-section {
  padding: var(--gap-xl) 0;
  background: var(--white);
}
.video-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}
@media (min-width: 960px) {
  .video-split { grid-template-columns: 1fr 1fr; align-items: center; }
}
.video-split__player {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black);
  overflow: hidden;
}
.video-split__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-split__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background var(--t-med);
}
.video-split__play:hover { background: rgba(0,0,0,0.35); }
.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-fast) var(--ease);
}
.video-split__play:hover .video-play-btn { transform: scale(1.1); }
.video-split__text { padding: 0 0.5rem; }
.video-split__features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.video-split__feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-800);
}
.video-split__feat::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   18. FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: var(--gap-xl) 0 var(--gap-md);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img {
  height: 84px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}
.footer-links-list a:hover { color: var(--white); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: var(--gap-md);
}
.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: all var(--t-fast);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,0.1);
}

/* ─────────────────────────────────────────
   19. FLOATING BUTTONS
───────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: all var(--t-med) var(--ease);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  color: var(--white);
}
.whatsapp-fab svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-med) var(--ease);
  box-shadow: var(--shadow-md);
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover { background: var(--blue); transform: translateY(-3px); }

/* ─────────────────────────────────────────
   20. SCROLL REVEAL ANIMATIONS
───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
[data-reveal="left"] {
  transform: translateX(-28px);
}
[data-reveal="right"] {
  transform: translateX(28px);
}
[data-reveal="scale"] {
  transform: scale(0.95);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ─────────────────────────────────────────
   21. PAGE HEROES (subpages)
───────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,46,92,0.85) 40%, rgba(10,46,92,0.3) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: var(--gap-xl);
  padding-top: var(--nav-h);
  width: 100%;
}
.page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.75rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.025em;
}

/* ─────────────────────────────────────────
   22. NOSOTROS PAGE
───────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  margin-top: var(--gap-lg);
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card-new {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
}
.value-card-new__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.value-card-new__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.value-card-new__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: var(--off-white);
}
.team-card__img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.team-card:hover .team-card__img img { transform: scale(1.04); }
.team-card__info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}
.team-card__role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   23. SERVICIOS PAGE
───────────────────────────────────────── */
.service-detail {
  padding: var(--gap-xl) 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}
@media (min-width: 768px) {
  .service-detail__inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .service-detail:nth-child(even) .service-detail__img { order: -1; }
}
.service-detail__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.service-detail:hover .service-detail__img img { transform: scale(1.04); }
.service-detail__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: -1rem;
}
.service-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.service-detail__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}
.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.service-detail__feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-800);
}
.service-detail__feat::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   24. PROYECTOS PAGE
───────────────────────────────────────── */
.gallery-filters-new {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--gap-lg);
  margin-top: var(--gap-md);
}
.filter-btn-new {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.filter-btn-new:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-btn-new.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-masonry {
  columns: 1;
  gap: var(--gap-sm);
}
@media (min-width: 640px) { .gallery-masonry { columns: 2; } }
@media (min-width: 1024px) { .gallery-masonry { columns: 3; } }
.gallery-item-new {
  break-inside: avoid;
  margin-bottom: var(--gap-sm);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item-new img {
  width: 100%;
  display: block;
  transition: transform var(--t-slow) var(--ease), opacity var(--t-slow) var(--ease);
}
.gallery-item-new:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}
.gallery-item-new__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,46,92,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  pointer-events: none;
}
.gallery-item-new:hover .gallery-item-new__overlay { opacity: 1; }
.gallery-item-new__info {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-med) var(--ease);
  pointer-events: none;
}
.gallery-item-new:hover .gallery-item-new__info {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item-new__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.gallery-item-new__cat {
  font-size: 0.68rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   25. CALCULADORA
───────────────────────────────────────── */
.calc-wrapper {
  max-width: 860px;
  margin: 0 auto;
}
.calc-steps-nav {
  display: flex;
  gap: 0;
  margin-bottom: var(--gap-lg);
  border-bottom: 1px solid var(--gray-200);
}
.calc-step-nav {
  flex: 1;
  text-align: center;
  padding: 1.25rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--t-fast);
}
.calc-step-nav.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.calc-step-nav.done {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.calc-step { display: none; }
.calc-step.active { display: block; }
.calc-step__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.calc-step__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.calc-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.calc-option {
  border: 1.5px solid var(--gray-200);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-fast);
  background: var(--white);
}
.calc-option:hover {
  border-color: var(--blue);
  background: var(--gray-100);
}
.calc-option.selected {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.calc-option__label {
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}
.calc-option__sub {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: block;
}
.calc-option.selected .calc-option__sub { color: rgba(255,255,255,0.7); }
.calc-slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.calc-slider-label span {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
}
input[type="range"].calc-range {
  width: 100%;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-200);
  border-radius: 2px;
  outline: none;
  margin-bottom: 1.5rem;
}
input[type="range"].calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--navy);
}
.calc-result-box {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.calc-result-box__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.calc-result-box__price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.calc-result-box__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}
.calc-nav-btns {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}
.calc-progress {
  height: 2px;
  background: var(--gray-200);
  margin-bottom: var(--gap-md);
  border-radius: 2px;
  overflow: hidden;
}
.calc-progress__bar {
  height: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: width var(--t-med) var(--ease);
}

/* ─────────────────────────────────────────
   26. CONTACTO PAGE
───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-xl);
  padding: var(--gap-xl) 0;
}
@media (min-width: 960px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}
.contact-form-group {
  margin-bottom: 1.5rem;
}
.contact-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--gray-200);
  background: transparent;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--t-fast);
  border-radius: 0;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  border-bottom-color: var(--navy);
}
.contact-form-group textarea { resize: vertical; min-height: 120px; }
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info__item:last-child {
  border-bottom: none;
}
.contact-info__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
}
.contact-info__value a {
  color: var(--navy);
  transition: color var(--t-fast);
}
.contact-info__value a:hover { color: var(--blue); }

/* FAQ */
.faq-list {
  margin-top: var(--gap-lg);
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all var(--t-fast);
  color: var(--gray-600);
}
.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.faq-item.open .faq-answer { display: block; }

/* Map section */
.map-section {
  height: 420px;
  background: var(--gray-100);
  position: relative;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─────────────────────────────────────────
   27. UTILITY
───────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-600); }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.bg-black { background: var(--black); }
.mt-sm { margin-top: var(--gap-sm); }
.mt-md { margin-top: var(--gap-md); }
.mt-lg { margin-top: var(--gap-lg); }
.mb-md { margin-bottom: var(--gap-md); }
.mb-lg { margin-bottom: var(--gap-lg); }
.py-xl { padding-top: var(--gap-xl); padding-bottom: var(--gap-xl); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.gap-sm { gap: var(--gap-sm); }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--t-fast);
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transition: transform var(--t-med) var(--ease);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─────────────────────────────────────────
   27b. ZONAS DE SERVICIO
───────────────────────────────────────── */
/* -- Clases globales de etiqueta y heading (usadas en varias secciones) -- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-heading-new {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.section-heading-new em {
  font-style: italic;
  color: var(--gold);
}

.zones-section {
  padding: var(--gap-xl) 0;
  background: #f5f7fa;
  border-top: 1px solid rgba(10,46,92,0.06);
}
.zones-section .section-label {
  text-align: center;
}
.zones-section .section-heading-new {
  text-align: center;
  margin-bottom: 0.75rem;
}
.zones-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.zone-card {
  background: var(--white);
  border: 1px solid rgba(10,46,92,0.1);
  border-radius: 6px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: box-shadow var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.zone-card:hover {
  box-shadow: 0 4px 18px rgba(10,46,92,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.zone-card--main {
  border-color: var(--navy);
  background: var(--navy);
}
.zone-card--main .zone-card__name,
.zone-card--main .zone-card__icon { color: var(--white); }
.zone-card--main .zone-card__tag { color: var(--gold-light); }
.zone-card--more {
  border: 2px dashed rgba(10,46,92,0.2);
  background: transparent;
}
.zone-card--more .zone-card__name { color: var(--navy); opacity: 0.7; }
.zone-card__icon { font-size: 0.9rem; color: var(--gold); }
.zone-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.zone-card__tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.zones-cta-note {
  text-align: center;
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
}
.zones-cta-note a {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.zones-cta-note a:hover { color: var(--gold); }
.zones-cta-note small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* ─────────────────────────────────────────
   28. VIDEO ANTES & DESPUÉS
───────────────────────────────────────── */
.video-ba-section {
  padding: var(--gap-xl) 0;
  background: #0a0e17;
}
.video-ba-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.video-ba-header .section-heading-new {
  color: var(--white);
}
.video-ba-header .section-heading-new em {
  color: var(--gold-light);
}
.video-ba-header p {
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}
/* Single-player with tabs */
.video-ba-player {
  max-width: 880px;
  margin: 0 auto;
}
.video-ba-tabs {
  display: flex;
  gap: 0;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.video-ba-tab {
  flex: 1;
  padding: 0.9rem 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: color 0.2s, background 0.2s;
}
.video-ba-tab:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
}
.video-ba-tab--active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-bottom: 2px solid var(--gold);
}
.video-ba-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.video-ba-dot--antes  { background: #e05252; }
.video-ba-dot--despues{ background: var(--gold); }
.video-ba-wrap {
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.video-ba-wrap video {
  width: 100%;
  display: block;
  max-height: 510px;
  object-fit: contain;
  background: #000;
}
.video-ba-caption {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
/* Grid variant (proyectos.html) */
.video-ba-grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .video-ba-grid-cards { grid-template-columns: 1fr 1fr; }
}
.video-ba-card {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.video-ba-card video {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
  background: #000;
}
.video-ba-card__info {
  padding: 1.1rem 1.25rem;
}
.video-ba-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
}
.video-ba-card__badge--antes   { background: rgba(224,82,82,0.18); color: #e05252; }
.video-ba-card__badge--despues { background: rgba(var(--gold-rgb,212,175,55),0.18); color: var(--gold); }
.video-ba-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.video-ba-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* ─────────────────────────────────────────
   29. RESPONSIVE FINE-TUNING
───────────────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --gap-xl: 4rem;
    --gap-lg: 2.5rem;
  }
  .hero-new__stats { display: none; }
  .container { padding-inline: 1.25rem; }
  .nav-inner { padding-inline: 1.25rem; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
  .calc-options { grid-template-columns: 1fr 1fr; }
}
