/* =========================================================
   OSSSCOMP EMPRESAS · Mobile-first premium stylesheet
   Estilo inspirado en grupodags.com
   Paleta: #977f54 (gold) · #dac194 (sand) · #ffffff
   ========================================================= */

:root {
  --gold: #977f54;
  --gold-dark: #6f5c3b;
  --gold-deep: #4d3f28;
  --sand: #dac194;
  --sand-soft: #ecd8b0;
  --cream: #f3e9d8;
  --cream-soft: #faf3e7;
  --black: #0b0b0b;
  --black-soft: #141414;
  --ink: #1a1612;
  --ink-soft: #3a322a;
  --muted: #7a6f61;
  --muted-light: #9a8e7d;
  --line: rgba(151, 127, 84, 0.2);
  --line-dark: rgba(218, 193, 148, 0.16);
  --white: #ffffff;

  --serif: "Fraunces", "Georgia", serif;
  --display: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --narrow: "Archivo Narrow", "Archivo", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 10px rgba(11, 11, 11, 0.08);
  --shadow-md: 0 14px 40px rgba(11, 11, 11, 0.1);
  --shadow-lg: 0 30px 70px rgba(11, 11, 11, 0.18);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1280px;
  --container-wide: 1440px;
  --nav-h: 80px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }
::selection { background: var(--gold); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

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

/* ============ LOADER ============ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  animation: loaderIn .8s var(--ease) forwards;
}
.loader-mark svg {
  width: clamp(180px, 60vw, 320px);
  height: auto;
}
.loader-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 46px;
  fill: none;
  stroke: #dac194;
  stroke-width: 1.2;
  letter-spacing: 4px;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: loaderStroke 1.8s var(--ease) forwards;
}
.loader-sub {
  display: block;
  font-family: var(--narrow);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}
@keyframes loaderIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderStroke {
  to { stroke-dashoffset: 0; fill: #dac194; }
}
.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(218, 193, 148, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loaderBar 1.6s var(--ease) forwards;
  animation-delay: .3s;
}
@keyframes loaderBar {
  to { width: 100%; }
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 22px;
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar.is-scrolled {
  background: rgba(11, 11, 11, 0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 1px 0 rgba(218, 193, 148, 0.1);
}
.navbar-inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  mix-blend-mode: normal;
}
.nav-logo-mark {
  display: block;
}
.nav-logo-mark svg {
  width: 40px; height: 40px;
  border-radius: 8px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: inherit;
}
.nav-logo-text em {
  font-style: normal;
  font-family: var(--narrow);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: var(--sand);
  margin-top: 3px;
}
.nav-logo-text em span { color: var(--sand-soft); }

.navbar:not(.is-scrolled) .nav-logo-text strong { color: #fff; }
.navbar:not(.is-scrolled) .nav-logo-text em { color: var(--sand); }

/* Hamburguesa */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  background: rgba(11, 11, 11, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  z-index: 210;
  position: relative;
}
.nav-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.nav-toggle-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle-icon span {
  width: 18px; height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.is-open .nav-toggle-icon span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-icon span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Overlay menú */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 195;
  pointer-events: none;
  visibility: hidden;
}
.nav-overlay.is-open { pointer-events: auto; visibility: visible; }
.nav-overlay-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
.nav-overlay.is-open .nav-overlay-bg { transform: translateY(0); }
.nav-overlay-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(151, 127, 84, 0.25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(218, 193, 148, 0.18), transparent 50%);
}

.nav-overlay-inner {
  position: relative;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 120px 22px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  overflow-y: auto;
  color: #fff;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: link;
}
.nav-overlay-links li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.nav-overlay.is-open .nav-overlay-links li {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.is-open .nav-overlay-links li:nth-child(1) { transition-delay: .15s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(2) { transition-delay: .22s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(3) { transition-delay: .29s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(4) { transition-delay: .36s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(5) { transition-delay: .43s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(6) { transition-delay: .50s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(7) { transition-delay: .57s; }

.nav-overlay-links a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 12px 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 8vw, 78px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.nav-overlay-links a:hover {
  color: var(--sand);
  transform: translateX(10px);
}
.nav-overlay-links .num {
  font-family: var(--narrow);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  align-self: flex-start;
  padding-top: 10px;
  opacity: .85;
}

.nav-overlay-foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.nav-overlay-foot .kicker {
  display: block;
  font-family: var(--narrow);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.nav-overlay-foot a {
  display: block;
  line-height: 1.7;
  color: #fff;
}
.nav-overlay-foot a:hover { color: var(--sand); }
.nav-overlay-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.nav-overlay-social a {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .nav-overlay-foot {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-full { width: 100%; }

.btn-light {
  background: #fff;
  color: var(--black);
}
.btn-light:hover { background: var(--sand); color: var(--black); transform: translateY(-2px); }

.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid currentColor;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-ghost-dark:hover { background: var(--black); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-light:hover { background: #fff; color: var(--black); border-color: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) 22px 130px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(151, 127, 84, 0.4), rgba(11, 11, 11, 0.5)),
    linear-gradient(160deg, #6f5c3b 0%, #4d3f28 40%, #0b0b0b 100%);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  transform: scale(1.05);
  animation: heroPan 12s var(--ease) forwards;
  will-change: transform;
}
/* Si hay imagen real, el JS la añadirá como background-image */
.hero-media-img.has-image {
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
@keyframes heroPan {
  to { transform: scale(1); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.6) 0%, rgba(11, 11, 11, 0.2) 40%, rgba(11, 11, 11, 0.85) 100%),
    radial-gradient(circle at 20% 30%, rgba(151, 127, 84, 0.25), transparent 60%);
}

.hero-content {
  position: relative;
  max-width: var(--container-wide);
  margin: auto auto 0;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--narrow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(218, 193, 148, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(218, 193, 148, 0.55); }
  50% { box-shadow: 0 0 0 10px rgba(218, 193, 148, 0); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 11vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 40px;
  text-transform: uppercase;
}
.line-wrap {
  display: block;
  overflow: hidden;
}
.hero-title .line {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.1s var(--ease);
  transition-delay: var(--d, 0s);
}
.hero-title .line.alt {
  color: var(--sand);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
}
.hero.is-loaded .hero-title .line { transform: translateY(0); }

.hero-foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
  max-width: 1000px;
}
.hero-sub {
  max-width: 560px;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.hero-sub strong { color: var(--sand); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Marquee inferior hero */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 0;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.6));
  overflow: hidden;
  border-top: 1px solid rgba(218, 193, 148, 0.18);
}
.marquee-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 900px) {
  .hero-foot {
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: end;
  }
  .hero-ctas { justify-content: flex-end; }
}

/* ============ STATS BAND ============ */
.stats-band {
  background: var(--black);
  color: #fff;
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--container-wide);
  margin: 0 auto;
}
.stat {
  padding: 36px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  transition: background .3s var(--ease);
}
.stat:nth-child(2) { border-right: 0; }
.stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
.stat:nth-child(4) { border-right: 0; }
.stat:hover { background: rgba(218, 193, 148, 0.04); }

.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 100px);
  line-height: 1;
  color: var(--sand);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: baseline;
}
.stat-num em {
  font-style: normal;
  font-size: 0.6em;
  color: var(--gold);
  margin-left: 2px;
}
.stat-label {
  font-family: var(--narrow);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 50px 24px; border-bottom: 0; border-right: 1px solid var(--line-dark); }
  .stat:last-child { border-right: 0; }
  .stat:nth-child(2), .stat:nth-child(3) { border-right: 1px solid var(--line-dark); }
}

/* ============ SECTION BASE ============ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background: var(--black);
  color: #fff;
}
.section-dark p { color: rgba(255, 255, 255, 0.72); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-black {
  background: #000;
  color: #fff;
}
.section-black h1, .section-black h2, .section-black h3 { color: #fff; }
.section-black p { color: rgba(255, 255, 255, 0.72); }

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

.section-head {
  margin-bottom: 60px;
  max-width: 800px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 780px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--narrow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding: 0;
  position: relative;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
.eyebrow-gold { color: var(--sand); }
.eyebrow-gold::before { background: var(--sand); }
.section-head.center .eyebrow::before { margin-left: 12px; }
.section-head.center .eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 12px;
}
.section-head.center .eyebrow-gold::after { background: var(--sand); }

.display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 6.8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  letter-spacing: -0.02em;
}
.display .accent { color: var(--gold); }
.display-light { color: #fff; }
.display-light em { color: var(--sand); }
.accent-gold { color: var(--sand) !important; }

.section-intro {
  font-size: clamp(15px, 1.8vw, 17.5px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .section-intro,
.section-black .section-intro { color: rgba(255,255,255,0.7); }

/* ============ NOSOTROS ============ */
.nosotros {
  background: var(--cream);
}
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.nosotros-title .display {
  font-size: clamp(34px, 6vw, 78px);
  line-height: 1.05;
}
.nosotros-copy .lead {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 18px;
  font-family: var(--display);
  font-weight: 500;
}
.nosotros-copy .lead strong { color: var(--gold); font-weight: 700; }
.nosotros-copy p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
.nosotros-copy strong { color: var(--gold-dark); font-weight: 600; }

.founder-card {
  margin: 34px 0 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.founder-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.founder-photo {
  width: 72px; height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder-initials {
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
}
.founder-info strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.founder-info span {
  display: block;
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.founder-role {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover {
  color: var(--gold-dark);
  gap: 14px;
}

@media (min-width: 900px) {
  .nosotros-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
  }
  .nosotros-title { position: sticky; top: calc(var(--nav-h) + 20px); }
}

/* ============ GRUPO EMPRESARIAL ============ */
.grupo {
  background: var(--black);
  color: #fff;
  padding: 100px 0 120px;
}
.grupo .display-light em { color: var(--sand); }

.grupo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.grupo-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.grupo-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, var(--gold-dark) 0%, var(--black) 100%);
  margin-bottom: 22px;
}
.grupo-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.grupo-card:hover .grupo-media img { transform: scale(1.06); }
.grupo-media::before {
  content: attr(data-title);
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  color: rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 2px;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.grupo-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.2) 0%, rgba(11, 11, 11, 0.85) 100%);
  z-index: 1;
}
.grupo-media-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 24px;
  z-index: 2;
  color: #fff;
}
.grupo-tag {
  display: inline-block;
  font-family: var(--narrow);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(218, 193, 148, 0.14);
  border: 1px solid rgba(218, 193, 148, 0.3);
  border-radius: 50px;
}
.grupo-media-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}
.grupo-media-body p {
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  max-width: 340px;
}
.grupo-list {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 4px 0;
}
.grupo-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.grupo-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--sand);
}
.grupo-foot {
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}
.grupo-metric {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sand);
}

@media (min-width: 900px) {
  .grupo-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
}

/* ============ PROYECTOS ============ */
.proyectos {
  background: var(--cream);
}
.proyectos-list {
  display: grid;
  gap: 100px;
}
.proyecto-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.proyecto-row-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand) 0%, var(--gold-dark) 100%);
  box-shadow: var(--shadow-md);
}
.proyecto-row-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.proyecto-row:hover .proyecto-row-media img { transform: scale(1.05); }
.proyecto-row-media::before {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  color: rgba(255,255,255,0.88);
  letter-spacing: 2px;
  pointer-events: none;
  text-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.proyecto-row-media img ~ ::before,
.proyecto-row-media img:not([style*="display:none"]) ~ * { display: none; }
.proyecto-row-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: #fff;
  color: var(--black);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 50px;
  z-index: 2;
}
.proyecto-row-head {
  margin-bottom: 18px;
}
.proyecto-row-loc {
  font-family: var(--narrow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.proyecto-row-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 86px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}
.proyecto-row-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin: 0;
}
.proyecto-row-desc {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}
.proyecto-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  overflow: hidden;
}
.proyecto-stats div {
  background: #fff;
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proyecto-stats strong {
  font-family: var(--display);
  font-weight: 800;
  color: var(--gold);
  font-size: clamp(14px, 1.9vw, 18px);
  line-height: 1;
}
.proyecto-stats span {
  font-family: var(--narrow);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}
.proyecto-amen {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 26px;
}
.proyecto-amen span {
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  background: #fff;
  color: var(--gold-dark);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-weight: 500;
}
.proyecto-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .proyecto-row {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .proyecto-row.reverse .proyecto-row-media { order: 2; }
}

/* ============ QUOTE ============ */
.section-quote {
  background: var(--cream-soft);
  padding: 120px 0;
  text-align: center;
}
.quote-block {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 10px;
}
.quote-mark {
  width: 50px;
  height: 40px;
  color: var(--gold);
  margin: 0 auto 30px;
  opacity: 0.5;
}
.quote-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 34px;
  letter-spacing: -0.01em;
}
.quote-text em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quote-author strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--ink);
  text-transform: uppercase;
}
.quote-author span {
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============ ECOSISTEMA ============ */
.ecosistema { padding: 100px 0 120px; }
.eco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.eco-card {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, #1a1a1a 0%, #0b0b0b 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
  isolation: isolate;
}
.eco-card::before {
  content: attr(data-title);
  position: absolute;
  bottom: 10%;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  color: rgba(255,255,255,0.04);
  letter-spacing: 2px;
  pointer-events: none;
  z-index: 0;
  text-transform: uppercase;
}
.eco-card:hover {
  transform: translateY(-6px);
  border-color: var(--sand);
}
.eco-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.3;
  transition: opacity .4s var(--ease), transform .6s var(--ease);
  z-index: 1;
}
.eco-card-bg svg { width: 60%; height: auto; }
.eco-card:hover .eco-card-bg {
  opacity: 0.5;
  transform: scale(1.05);
  color: var(--sand);
}
.eco-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 24px 26px;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.8));
}
.eco-tag {
  display: inline-block;
  font-family: var(--narrow);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}
.eco-card-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 24px);
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin-bottom: 8px;
  color: #fff;
}
.eco-card-body p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 700px) {
  .eco-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (min-width: 1100px) {
  .eco-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============ WHY ============ */
.why {
  background: var(--cream);
}
.why .display { max-width: 720px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why-card {
  padding: 38px 28px 34px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.why-num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
}
.why-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: var(--ink);
}
.why-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.65;
}

@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ ALIANZAS ============ */
.alianzas {
  background: #000;
  color: #fff;
  padding: 100px 0 110px;
}
.alianzas .section-head { margin-bottom: 60px; }

.alianzas-marquee {
  overflow: hidden;
  margin: 0 -22px;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.alianzas-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding: 0 22px;
}
.alianza-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  padding: 14px 0;
}
.alianza-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 56px;
  padding: 0 14px;
  border: 1px solid rgba(218, 193, 148, 0.35);
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: #fff;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.alianza-mark.ampi {
  background: linear-gradient(135deg, #1a3756 0%, #0f2438 100%);
  border-color: rgba(100, 150, 200, 0.3);
}
.alianza-logo:hover .alianza-mark {
  background: var(--sand);
  color: var(--black);
  border-color: var(--sand);
}
.alianza-logo em {
  font-family: var(--narrow);
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  max-width: 280px;
  white-space: normal;
  line-height: 1.3;
}
.alianzas-note {
  max-width: 620px;
  margin: 40px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.65;
}

/* ============ PROCESS ============ */
.process { background: var(--cream); }
.process-list {
  display: grid;
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.process-step:last-child { border-bottom: 0; }
.process-step:hover { padding-left: 10px; }
.process-step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  min-width: 80px;
}
.process-step-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--ink);
}
.process-step-body p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

/* ============ CONTACTO ============ */
.contacto {
  background: var(--black);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
.contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(151, 127, 84, 0.22), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(218, 193, 148, 0.12), transparent 40%);
}
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  position: relative;
}
.contacto-copy .eyebrow { color: var(--sand); }
.contacto-copy .eyebrow::before { background: var(--sand); }
.contacto-copy .display { color: #fff; }
.contacto-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 460px;
}
.contacto-info {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}
.contacto-info li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contacto-info .ico {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: rgba(218, 193, 148, 0.12);
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contacto-info .ico svg { width: 18px; height: 18px; }
.contacto-info strong {
  display: block;
  font-family: var(--narrow);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 3px;
}
.contacto-info a, .contacto-info span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.contacto-info a:hover { color: var(--sand); }

.contacto-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.social {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.social:hover {
  color: var(--black);
  background: var(--sand);
  border-color: var(--sand);
}

.contacto-form {
  display: grid;
  gap: 14px;
  padding: 32px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(218, 193, 148, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contacto-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contacto-form label span {
  font-family: var(--narrow);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sand);
}
.contacto-form input,
.contacto-form select,
.contacto-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(218, 193, 148, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(218, 193, 148, 0.05);
}
.contacto-form select option { background: var(--black); color: #fff; }
.contacto-form textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.contacto-form .full { grid-column: 1 / -1; }
.form-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.5;
}
.form-status {
  font-size: 13px;
  font-weight: 600;
  margin: 4px 0 0;
  text-align: center;
  min-height: 18px;
}
.form-status.is-success { color: #7fc99f; }
.form-status.is-error { color: #e6a59a; }

@media (min-width: 700px) {
  .contacto-form {
    grid-template-columns: 1fr 1fr;
    padding: 36px 32px;
  }
  .contacto-form .full { grid-column: 1 / -1; }
  .contacto-form .btn-full { grid-column: 1 / -1; }
  .contacto-form .form-note, .contacto-form .form-status { grid-column: 1 / -1; }
}
@media (min-width: 1000px) {
  .contacto-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 0 0;
  border-top: 1px solid var(--line-dark);
}
.footer a { color: rgba(255, 255, 255, 0.65); }
.footer a:hover { color: var(--sand); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand {
  max-width: 360px;
}
.footer-brand .nav-logo-text strong { color: #fff; font-size: 18px; }
.footer-brand .nav-logo-text em { color: var(--sand); font-size: 10px; }
.footer-col h4 {
  font-family: var(--display);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.75);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.footer-col a:hover { color: #fff; transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  color: rgba(255,255,255,0.45);
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 100;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  transition: transform .35s var(--ease);
  animation: fabPulse 2.4s ease-in-out infinite;
}
.whatsapp-fab svg { width: 34px; height: 34px; }
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
  animation-play-state: paused;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal[data-reveal="fade-left"] { transform: translateX(30px); }
.reveal[data-reveal="fade-right"] { transform: translateX(-30px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============ UTILITIES ============ */
@media (max-width: 768px) {
  body { font-size: 15.5px; }
  .container { padding: 0 18px; }
  .section { padding: 80px 0; }
  .display { font-size: clamp(34px, 10vw, 68px); }
  .hero-title { font-size: clamp(42px, 13vw, 70px); }
}

/* No-image fallback helper */
img[src*="xencalli"],
img[src*="boheme"],
img[src*="grupo-"],
img[src*="oscar"],
img[src*="hero"] {
  min-height: 1px;
}
