@font-face {
  font-family: "Butler";
  src: url("../Fuentes/Butler-Free-Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../Fuentes/Montserrat-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../Fuentes/Montserrat-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #d4af6a;
  --gold-deep: #c49a52;
  --gold-soft: #e4c48a;
  --black: #0c0c0c;
  --ink: #111111;
  --charcoal: #1a1a1a;
  --muted: #6d6a64;
  --text: #2a2a2a;
  --white: #ffffff;
  --cream: #f7f5f1;
  --line: rgba(212, 175, 106, 0.35);
  --radius: 28px;
  --header-h: 82px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: "Butler", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.35rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.15rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

p { margin: 0 0 1em; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.gold { color: var(--gold); }
.center { text-align: center; }
.center-row { justify-content: center; }

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow.light { color: rgba(255, 255, 255, 0.78); }
.eyebrow.center { color: var(--gold); }

.lead-muted {
  color: var(--muted);
  max-width: 640px;
  margin-inline: auto  auto;
  margin-bottom: 3rem;
}

.center + .lead-muted { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-sm {
  min-height: 42px;
  padding: 0 22px;
  font-size: 0.84rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover { background: var(--gold-soft); }

.btn-gold-solid {
  background: var(--gold);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-full { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid var(--gold);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: var(--black);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.header-inner,
.footer-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-mark {
  width: auto;
  height: 56px;
  display: block;
  object-fit: contain;
}

.site-footer .logo-mark {
  /* Mismo logo detallado que el header (dorado + bordes negros), sin silueta negra */
  filter: none;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
}

.nav a:not(.btn):hover,
.nav a:not(.btn).is-active {
  color: var(--gold);
}
.nav .btn-gold { color: #111; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.55);
  padding: 11px;
  cursor: pointer;
  z-index: 60;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: #fff;
  border-radius: 1px;
}

@media (min-width: 801px) {
  .nav {
    display: flex;
    position: static;
    inset: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    margin-left: auto;
  }

  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.quote-media,
.hacemos-media,
.historia-media,
.posicion-media,
.dark-band-media,
.confianza-bg,
.funciona-bg,
.contacto-media,
.integra-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.28) 42%, rgba(8, 8, 8, 0.72) 78%, #0c0c0c 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 80px;
}

.hero h1 { color: var(--white); margin-bottom: 1rem; }

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.18em;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.hero .btn-row { justify-content: center; }

/* Stats */
.stats {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 96px;
}

.stats::before {
  content: "";
  display: block;
  width: min(720px, 72vw);
  height: 1px;
  margin: 0 auto 64px;
  background: rgba(212, 175, 106, 0.55);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 72px;
}

.stats-grid strong {
  display: block;
  font-family: "Butler", Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.stats-copy {
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
  max-width: 920px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
}

.stats-copy .gold {
  color: var(--gold);
  font-weight: 700;
}

/* Enfoque */
.enfoque {
  position: relative;
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.enfoque-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  opacity: 0.45;
}

.enfoque-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.enfoque-copy {
  max-width: 34rem;
}

.enfoque-copy .eyebrow {
  margin-bottom: 1.15rem;
}

.enfoque-copy h2 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.05rem, 3.4vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.enfoque-copy > p {
  margin: 0 0 1.05em;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.02rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
}

.enfoque-copy .gold {
  color: var(--gold);
  font-weight: 700;
}

.enfoque-close {
  margin-top: 1.6rem !important;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  max-width: 22ch;
  font-family: "Butler", Georgia, serif !important;
  font-size: clamp(1.25rem, 2vw, 1.6rem) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em;
  color: var(--ink) !important;
}

.enfoque-media img {
  width: 100%;
  border-radius: 26px;
}

.quienes-grid,
.obtiene-grid,
.contacto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

/* Quote */
.quote {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.quote-media {
  filter: brightness(0.42);
}

.quote-content {
  position: relative;
  z-index: 1;
  padding: 56px 0 60px;
}

.quote blockquote {
  margin: 0 auto 1.35rem;
  max-width: 760px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--white);
}

.quote blockquote .gold {
  color: var(--gold);
  font-weight: 700;
}

.quote .btn {
  margin-top: 0.15rem;
}

/* Principios */
.principios { padding: 110px 0 90px; background: var(--white); }

.principios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
}

.principios-grid article {
  padding: 8px 36px;
  border-right: 1px solid var(--line);
}

.principios-grid article:first-child { padding-left: 0; }
.principios-grid article:last-child { border-right: 0; padding-right: 0; }

.principios-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 22px;
}

.principios-grid p { color: var(--muted); font-size: 0.95rem; }

/* Qué hacemos */
.hacemos {
  position: relative;
  color: var(--white);
  padding: 110px 0 180px;
  overflow: hidden;
}

.hacemos-media {
  background-color: #070707;
  filter: brightness(0.36);
}

.hacemos-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hacemos h2 {
  color: var(--white);
  margin-bottom: 1.1rem;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.hacemos-lead {
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hacemos-lead .gold {
  font-weight: 700;
}

.hacemos-note {
  max-width: 36ch;
  margin: 2.4rem 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
}

.check-list li::before {
  content: "›";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}

/* Confianza banner */
.confianza {
  position: relative;
  margin-top: -120px;
  padding: 0 0 100px;
  background: transparent;
  overflow: hidden;
}

.confianza-bg {
  position: absolute;
  inset: 110px 0 0;
  background-size: cover;
  background-position: center top;
  filter: none;
}

.confianza-wrap {
  position: relative;
  z-index: 2;
}

.confianza-card {
  width: min(100%, 980px);
  margin: 0 auto;
  background: #d4af6a;
  color: var(--white);
  text-align: center;
  border-radius: 44px;
  padding: 64px 48px 68px;
}

.confianza-eyebrow {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
}

.confianza-card h2 {
  color: var(--white);
  margin: 0 0 0.2em;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
}

.confianza-strong {
  margin: 0 0 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.15;
}

.confianza-text {
  max-width: 640px;
  margin: 0 auto 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(12, 12, 12, 0.88);
}

.confianza-card .btn-light {
  background: var(--white);
  color: var(--black);
}

/* Quiénes somos */
.quienes { padding: 120px 0; background: var(--white); }

.quienes-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px 80px 8px 8px;
}

.quienes-copy p { color: var(--muted); }
.quienes-copy .btn { margin-top: 10px; }

/* Historia */
.historia {
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
  background: #050505;
}

.historia-media {
  filter: brightness(0.62);
  opacity: 0.95;
}

.historia .container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1180px);
}

.historia-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 36px;
  padding: 68px clamp(32px, 6vw, 96px) 64px;
  text-align: center;
  color: var(--white);
}

.historia-card h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
}

.historia-card .eyebrow {
  color: var(--gold);
  margin-bottom: 1.35rem;
}

.historia-card p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.historia-highlight {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  max-width: 40ch !important;
  margin-bottom: 1.15em !important;
}

.historia-close {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 720px;
  margin: 48px auto 0;
  line-height: 1.65;
}

/* Filosofía */
.filosofia {
  background: var(--black);
  color: var(--white);
  padding: 110px 0 120px;
}

.filosofia .eyebrow.center {
  margin-bottom: 2.4rem;
}

.filosofia h3 {
  color: var(--white);
  margin-bottom: 0.55em;
}

.filosofia-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin: 0 0 88px;
}

.filosofia-duo article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}

.filosofia-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.filosofia-icon img:first-child {
  width: 72px;
  height: auto;
  filter: none;
}

.filosofia-icon .corchete {
  width: 18px;
  height: 64px;
  object-fit: contain;
  filter: none;
  transform: scaleX(-1);
}

.filosofia-duo p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.75;
  max-width: 36ch;
}

.valores {
  display: grid;
  grid-template-columns: minmax(160px, 200px) 1fr;
  gap: 36px;
  align-items: start;
}

.valores h3 {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.valores ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}

.valores li {
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.valores li::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 14px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold) 42%,
    rgba(120, 120, 120, 0.55) 100%
  );
}

/* Plataforma */
.plataforma { background: #f4f4f4; }

.plataforma-intro {
  position: relative;
  padding: 88px 0 72px;
  background: #f4f4f4;
  overflow: hidden;
}

.plataforma-bg {
  display: none;
}

.plataforma-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.plataforma-copy {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-inline: auto 0;
  padding-inline: 4px;
}

.plataforma-intro h2 {
  max-width: 10ch;
  margin-bottom: 0.35em;
}

.plataforma-points {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.plataforma-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.plataforma-points img { width: 26px; height: auto; flex-shrink: 0; }

.plataforma-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 700;
}

.plataforma-badge img { width: 28px; height: auto; flex-shrink: 0; }

.plataforma-visual {
  position: relative;
  z-index: 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plataforma-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin-inline: auto;
}

/* Desktop: dos columnas como el mockup, texto con aire a la izquierda */
@media (min-width: 901px) {
  .plataforma-intro {
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 72px 0 80px;
  }

  .plataforma-bg {
    display: none;
  }

  .plataforma-intro > .container.plataforma-intro-grid {
    width: min(calc(100% - 64px), var(--container));
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.2fr);
    gap: 28px 36px;
    align-items: center;
  }

  .plataforma-copy {
    max-width: 400px;
    margin-inline: 0;
    padding-left: clamp(12px, 3vw, 40px);
    justify-self: start;
  }

  .plataforma-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .plataforma-visual img {
    max-width: 100%;
    width: 100%;
  }
}

.actores { padding: 48px 0 100px; }

.actores h2 {
  margin-bottom: 44px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.2;
}

.actores h2 .gold { font-weight: 700; }

.actores-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.actores-grid article {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(20, 16, 10, 0.08);
  padding: 30px 14px 24px;
  text-align: center;
}

.actores-grid img {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.actores-grid h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 16px;
  color: var(--ink);
  line-height: 1.25;
}

.actores-grid article::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
}

.actores-note {
  width: min(100%, 820px);
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  background: #f7f4ef;
  border: 1px solid #ebe4d8;
  border-radius: 999px;
  padding: 20px 28px 20px 22px;
  box-sizing: border-box;
}

.actores-note-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #efe6d6;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.actores-note-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.actores-note-copy { min-width: 0; }

.actores-note-lead {
  position: relative;
  margin: 0 0 8px;
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.actores-note-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 2px;
  background: var(--gold);
}

.actores-strong {
  margin: 0 !important;
  font-family: "Butler", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--ink) !important;
  line-height: 1.3;
}

.actores-strong .gold { font-weight: 700; }

/* Integra */
.integra {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
  clip-path: inset(0);
}

.integra-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 78%,
    rgba(255, 255, 255, 0.15) 88%,
    rgba(255, 255, 255, 0.45) 95%,
    rgba(255, 255, 255, 0.85) 100%
  );
}

.integra-media {
  background-position: left center;
  background-size: cover;
  filter: none;
  opacity: 1;
}

.integra-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding: 72px 0;
}

.integra-panel {
  width: min(100%, 560px);
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(20, 16, 10, 0.12);
  padding: 48px 40px 44px;
}

.integra-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.15;
  color: var(--ink);
}

.integra-lead {
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.02rem;
}

.integra-lead .gold {
  font-weight: 700;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pills span {
  border: 1px solid rgba(212, 175, 106, 0.7);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.86rem;
  color: var(--ink);
  background: var(--white);
}

/* CTA dark */
.cta-dark {
  position: relative;
  z-index: 2;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 36px 0;
  overflow: hidden;
}

.cta-dark-inner {
  max-width: 920px;
  margin-inline: auto;
}

.cta-dark h2 {
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  max-width: 54ch;
  margin: 0 auto 1.1rem;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
}

.cta-dark .gold {
  color: var(--gold);
  font-weight: 700;
}

.cta-dark .btn-ghost {
  border-color: var(--gold);
  color: var(--white);
}

/* Cómo funciona + Qué obtiene — mismo fondo continuo */
.funciona-band {
  position: relative;
  background: #f3f0ea;
  overflow: hidden;
}

.funciona-band > .funciona-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.62;
  pointer-events: none;
}

.funciona {
  position: relative;
  z-index: 1;
  padding: 110px 0 56px;
  background: transparent;
  overflow: visible;
}

.funciona > .container {
  position: relative;
  z-index: 1;
}

.funciona h2 {
  color: #0a0a0a;
  font-weight: 700;
}

.funciona .lead-muted {
  color: #3a3a3a;
  max-width: 42ch;
}

.funciona-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.funciona-grid article {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 32px 28px 36px;
  box-shadow: 0 10px 30px rgba(20, 16, 10, 0.08);
}

.funciona-grid h3 {
  color: #0a0a0a;
}

.funciona-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 20px;
}

.funciona-grid p {
  color: #555;
  margin: 0;
}

/* Qué obtiene — continúa el mismo fondo */
.obtiene {
  position: relative;
  z-index: 1;
  padding: 40px 0 100px;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  border: 0;
}

.obtiene-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.obtiene-copy {
  position: relative;
  padding-left: 22px;
  border-left: 0;
  box-shadow: none;
  outline: none;
  filter: none;
}

.obtiene-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--gold) 14%,
    var(--gold) 86%,
    transparent 100%
  );
}

.obtiene-copy h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.obtiene-copy p {
  margin: 0;
  color: #1f1f1f;
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 48ch;
}

.obtiene-grid > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

/* Posicionamiento + cierre — banda oscura continua */
.dark-band {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  color: var(--white);
}

.dark-band-media {
  position: absolute;
  inset: 0 0 auto;
  height: min(78vh, 820px);
  z-index: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.55);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
}

.posicion {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: transparent;
  overflow: visible;
}

.posicion .container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-left: max(20px, calc((100% - var(--container)) / 2));
}

.posicion h2 { color: var(--gold-soft); }
.posicion p { color: rgba(255, 255, 255, 0.72); }

/* Cierre — kicker + cards + CTA en una sola sección compacta */
.cierre {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--white);
  padding: 36px 0 48px;
}

.cierre-kicker {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(0.98rem, 1.6vw, 1.2rem);
  line-height: 1.4;
  max-width: 36ch;
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.92);
}

.cierre-kicker .gold {
  color: var(--gold);
  font-weight: 700;
}

.cierre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto 40px;
}

.cierre-grid article {
  position: relative;
  background: #161616;
  border-radius: 18px;
  padding: 40px 16px 20px;
  text-align: center;
}

.cierre-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: #111;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.cierre-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cierre-grid h3 {
  color: var(--gold);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  margin: 0 0 0.45rem;
}

.cierre-grid p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.45;
  max-width: 22ch;
}

.cierre-grid article::after {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  margin: 12px auto 0;
  background: var(--gold);
}

.cierre-cta {
  text-align: center;
  padding-top: 4px;
}

.cierre-cta .eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.cierre-cta h2 {
  color: var(--white);
  margin: 0 0 0.55rem;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.2;
}

.cierre-cta .btn-row {
  margin-top: 1.1rem;
  gap: 12px;
}

.cierre-cta .btn {
  padding: 0.7rem 1.35rem;
  font-size: 0.85rem;
}

.cierre-cta .btn-ghost {
  border-color: var(--gold);
  color: var(--white);
}

/* Contacto */
.contacto {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: #c9a96a;
}

.contacto-media {
  opacity: 0.55;
  background-position: left center;
}

.contacto-grid {
  position: relative;
  z-index: 1;
  align-items: start;
  gap: 48px;
}

.contact-form,
.contacto-info {
  background: transparent;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label { display: block; margin-bottom: 14px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  padding: 16px 18px;
  font: inherit;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--black);
}

.contact-form textarea { resize: vertical; min-height: 110px; }

.form-status {
  margin-top: 14px;
  color: var(--black);
  font-size: 0.9rem;
}

.contacto-info h2 { color: var(--black); }

.contacto-info ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contacto-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
}

.contacto-info img { width: 18px; height: 18px; object-fit: contain; }

.contact-ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--black);
}

/* Footer — fondo dorado como mockup (imagen 3) */
.site-footer {
  position: relative;
  background: #d4b06a;
  color: var(--black);
  border-top: 1px solid #1a1a1a;
  border-bottom: 0;
  box-shadow: none;
}

.site-footer .footer-inner {
  height: auto;
  min-height: var(--header-h);
  padding: 20px 0 22px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.9rem;
  color: var(--black);
}

.site-footer nav a:not(.btn) {
  color: var(--black);
}

.site-footer nav a:not(.btn):hover {
  color: #3a2e18;
}

.site-footer .btn-dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Responsive */
@media (max-width: 1080px) {
  .enfoque-grid,
  .quienes-grid,
  .hacemos-grid,
  .obtiene-grid,
  .contacto-grid,
  .filosofia-duo {
    grid-template-columns: 1fr;
  }

  .principios-grid,
  .funciona-grid,
  .cierre-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .principios-grid article {
    border-right: 0;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line);
  }

  .actores-grid { grid-template-columns: repeat(3, 1fr); }

  .valores {
    grid-template-columns: 1fr;
  }

  .valores ul { grid-template-columns: repeat(2, 1fr); }

  .quienes-media img { height: 380px; }

  .integra {
    min-height: 0;
    padding: 48px 0;
  }

  .integra-media {
    opacity: 1;
  }

  .integra-fade {
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.9) 100%);
  }

  .integra-layout {
    justify-content: center;
    padding: 24px 0;
  }

  .integra-panel {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 36px 24px;
  }
}

@media (max-width: 900px) {
  .plataforma-intro {
    padding: 56px 0 36px;
  }

  .plataforma-intro > .container.plataforma-intro-grid {
    width: min(calc(100% - 48px), var(--container));
    gap: 28px;
  }

  .plataforma-intro h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .plataforma-copy {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }

  .plataforma-points {
    margin: 18px 0 22px;
    gap: 12px;
  }

  .plataforma-points li {
    font-size: 0.98rem;
  }

  .plataforma-visual {
    display: flex !important;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding: 8px 0 4px;
  }

  .plataforma-visual img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
  }

  .plataforma-badge {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 22px 28px;
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    z-index: 50;
  }

  .nav.is-open { display: flex; }

  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .actores-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .header-inner { width: min(calc(100% - 28px), var(--container)); }

  .confianza-card,
  .historia-card {
    padding: 40px 22px;
    border-radius: 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer nav { flex-wrap: wrap; }

  .actores-note { flex-direction: column; align-items: flex-start; }
  .posicion .container { margin-left: 20px; margin-right: 20px; }
}

@media (max-width: 520px) {
  .actores-grid { grid-template-columns: 1fr 1fr; }
  .valores ul { grid-template-columns: 1fr; }
  .hero h1 {
    font-size: clamp(1.45rem, 6.6vw, 1.9rem);
    max-width: 18ch;
    margin-inline: auto;
  }
  .hero h1 span { display: block; }
  .hero-eyebrow {
    letter-spacing: 0.06em;
    font-size: 0.62rem;
    max-width: 28ch;
    margin-inline: auto;
  }
  .hero-eyebrow span { display: block; }
  .hero-content {
    padding-inline: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-lead {
    font-size: 0.9rem;
    max-width: 34ch;
    margin-inline: auto;
  }
  .hero .btn-row {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 300px);
    margin-inline: auto;
  }
  .logo-mark { height: 42px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .nav-toggle {
    width: 46px;
    height: 46px;
    border-width: 1.5px;
    border-color: #fff;
    background: rgba(0, 0, 0, 0.55);
  }
}

/* Reveal motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero-content {
    animation: heroIn 0.9s ease both;
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }
}

/* QA: isolate one section via ?only= */
html[data-only] .site-header,
html[data-only] .site-footer,
body.qa-only .site-header,
body.qa-only .site-footer {
  display: none !important;
}

html[data-only] .hero,
body.qa-only .hero {
  min-height: auto;
  padding: 80px 0;
}

html[data-only] .reveal,
body.qa-only .reveal {
  opacity: 1 !important;
  transform: none !important;
}

html[data-only="inicio"] main > section:not(#inicio),
html[data-only="stats"] main > section:not(.stats),
html[data-only="enfoque"] main > section:not(#enfoque),
html[data-only="quote"] main > section:not(.quote),
html[data-only="principios"] main > section:not(.principios),
html[data-only="hacemos"] main > section:not(.hacemos),
html[data-only="confianza"] main > section:not(.confianza),
html[data-only="quienes-somos"] main > section:not(#quienes-somos),
html[data-only="historia"] main > section:not(.historia),
html[data-only="filosofia"] main > section:not(.filosofia),
html[data-only="plataforma"] main > section:not(#plataforma),
html[data-only="contacto"] main > section:not(#contacto) {
  display: none !important;
}
