/* ══════════════════════════════════════════════════════════════
   ORUS EMPOWERMENT — styles.css
   Elegant, modern, corporate — Tecnológico y vanguardista
   ══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:        #0a0f1e;
  --navy-mid:    #111827;
  --navy-light:  #1a2540;
  --gold:        #b8924a;
  --gold-light:  #d4ae72;
  --gold-pale:   #f0dbb8;
  --white:       #ffffff;
  --off-white:   #f5f5f3;
  --gray-light:  #e8e8e5;
  --gray:        #9ca3af;
  --graphite:    #374151;

  --font-display: 'Inter', 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);

  --radius:     6px;
  --radius-lg:  14px;

  --header-h:   80px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

em { font-style: italic; color: var(--gold); }

/* ── SECTION HEADER ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1.05rem; color: var(--gray); }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.65); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,146,74,.1);
  border: 1px solid rgba(184,146,74,.3);
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-tag--gold { background: rgba(184,146,74,.2); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,146,74,.35);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(184,146,74,.5);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.revealed {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.header--scrolled {
  background: var(--navy);
  box-shadow: 0 2px 30px rgba(0,0,0,.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.header__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
  transition: color var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.header__nav a:hover { color: var(--gold); }
.header__nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: .45rem 1.2rem;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,30,.92) 0%,
    rgba(10,15,30,.75) 50%,
    rgba(26,37,64,.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 0 6rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero__title em {
  display: block;
  font-style: italic;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__lbl {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .25rem;
}
.stat__div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 100px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease infinite;
}
@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  60% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ══════════════════════════════════════════════════════════════
   RETOS
   ══════════════════════════════════════════════════════════════ */
.retos {
  padding: 7rem 0;
  background: var(--off-white);
}

.retos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.reto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.reto-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.reto-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(184,146,74,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.reto-card__icon svg { width: 22px; height: 22px; }
.reto-card h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--navy); }
.reto-card p { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   NOSOTROS
   ══════════════════════════════════════════════════════════════ */
.nosotros {
  padding: 7rem 0;
  background: var(--white);
}

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

.nosotros__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.nosotros__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.nosotros__badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-align: center;
}
.badge__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge__txt {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: .25rem;
}

.nosotros__copy .section-tag { margin-bottom: 1rem; }
.nosotros__copy h2 { margin-bottom: 1.25rem; color: var(--navy); }
.nosotros__lead {
  font-size: 1.05rem;
  color: var(--graphite);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-weight: 500;
}
.nosotros__copy > p {
  font-size: .95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.nosotros__valores {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.nosotros__valores span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.nosotros__mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.mv-block {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 3px solid var(--gold);
}
.mv-block h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: .4rem;
  font-size: 1rem;
}
.mv-block p { font-size: .85rem; color: var(--gray); }

/* ══════════════════════════════════════════════════════════════
   SERVICIOS (6 servicios)
   ══════════════════════════════════════════════════════════════ */
.servicios {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.servicios::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,146,74,.06) 0%, transparent 70%);
  pointer-events: none;
}

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servicio-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.servicio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,146,74,.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.servicio-card:hover {
  border-color: rgba(184,146,74,.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.servicio-card:hover::before { opacity: 1; }

.servicio-card--featured {
  border-color: rgba(184,146,74,.5);
  background: linear-gradient(135deg, var(--navy-light) 0%, rgba(184,146,74,.08) 100%);
}

.servicio-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,146,74,.15);
  line-height: 1;
  margin-bottom: .75rem;
}

.servicio-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(184,146,74,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.servicio-card__icon svg { width: 20px; height: 20px; }

.servicio-card h3 {
  color: var(--white);
  margin-bottom: .75rem;
  font-size: 1.2rem;
}
.servicio-card > p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.servicio-card ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.servicio-card ul li {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  padding-left: 1rem;
  position: relative;
}
.servicio-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.servicio-card__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: .3rem .75rem;
  border-radius: 100px;
  margin-top: 1.25rem;
}

/* ══════════════════════════════════════════════════════════════
   BENEFICIOS
   ══════════════════════════════════════════════════════════════ */
.beneficios {
  padding: 7rem 0;
  background: var(--off-white);
}

.beneficios__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.beneficios__copy .section-tag { margin-bottom: 1rem; }
.beneficios__copy h2 {
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.beneficios__copy > p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.beneficios__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.beneficio {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.beneficio:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.beneficio__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(184,146,74,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.beneficio__icon svg { width: 20px; height: 20px; }

.beneficio h4 {
  color: var(--navy);
  margin-bottom: .3rem;
  font-size: 1rem;
}
.beneficio p { font-size: .88rem; color: var(--gray); }

/* ══════════════════════════════════════════════════════════════
   PROCESO
   ══════════════════════════════════════════════════════════════ */
.proceso {
  padding: 7rem 0;
  background: var(--white);
}

.proceso__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  counter-reset: step;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 2rem 1rem;
}

.step__num {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.step:hover .step__num {
  background: var(--gold);
  color: var(--white);
}

.step__content h3 {
  color: var(--navy);
  margin-bottom: .5rem;
  font-size: 1.05rem;
}
.step__content p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

.step__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(184,146,74,.3));
  margin-top: 2.5rem;
  position: relative;
}
.step__connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIOS
   ══════════════════════════════════════════════════════════════ */
.testimonios {
  padding: 7rem 0;
  background: var(--off-white);
}

.testimonios__slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonios__track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonio {
  flex-shrink: 0;
  width: 100%;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
}

.testimonio__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}

.testimonio blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  position: relative;
}
.testimonio blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold-pale);
  font-family: var(--font-display);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  line-height: 1;
}

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

.testimonio__avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonio__author strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
}
.testimonio__author span {
  font-size: .8rem;
  color: var(--gray);
}

.testimonios__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: var(--transition);
}
.dot--active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq {
  padding: 7rem 0;
  background: var(--navy);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq__item {
  background: var(--navy-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: border-color var(--transition);
}
.faq__item--open {
  border-color: rgba(184,146,74,.4);
}

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: color var(--transition);
}
.faq__q:hover { color: var(--gold); }

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  transition: var(--transition);
}
.faq__item--open .faq__icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
  border-color: var(--gold);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq__item--open .faq__a {
  max-height: 300px;
  padding-bottom: 1.4rem;
}
.faq__a p {
  padding: 0 1.75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════ */
.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gold) 0%, #8b6a2e 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band__inner {
  position: relative;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}
.cta-band .btn--gold {
  background: var(--white);
  color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.cta-band .btn--gold:hover {
  background: var(--navy);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   CONTACTO
   ══════════════════════════════════════════════════════════════ */
.contacto {
  padding: 7rem 0;
  background: var(--white);
}

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

.contacto__copy .section-tag { margin-bottom: 1rem; }
.contacto__copy h2 { color: var(--navy); margin-bottom: 1.25rem; }
.contacto__copy > p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--graphite);
}
.info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* FORM */
.contacto__form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form__disclaimer {
  font-size: .78rem;
  color: var(--gray);
  text-align: center;
  margin-top: .75rem;
}
.form__disclaimer a { color: var(--gold); text-decoration: underline; }

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

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer__brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: .75rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer__nav h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__nav li,
.footer__nav a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FAB — FLOATING ACTION BUTTONS
   ══════════════════════════════════════════════════════════════ */
.fab {
  position: fixed;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
}

.fab--wa {
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: var(--white);
  gap: .6rem;
  padding: .8rem 1.25rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
}
.fab--wa svg { width: 22px; height: 22px; }
.fab--wa span { display: inline; }
.fab--wa:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
}

.fab--top {
  bottom: 5.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,.15);
  color: var(--white);
}
.fab--top:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.fab--top svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 900px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Header */
  .hamburger { display: flex; }

  .header__nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    border-left: 1px solid rgba(255,255,255,.08);
    padding: calc(var(--header-h) + 2rem) 2rem 2rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -10px 0 40px rgba(0,0,0,.4);
    z-index: 1050;
  }
  .header__nav.nav--open { transform: translateX(0); }

  .header__nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .header__nav a {
    font-size: 1rem;
    padding: .6rem 0;
    display: block;
  }
  .nav-cta {
    margin-top: .5rem;
    padding: .6rem 1.4rem !important;
  }

  /* Layout grids */
  .retos__grid { grid-template-columns: 1fr 1fr; }
  .nosotros__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nosotros__img-wrap img { height: 320px; }
  .servicios__grid { grid-template-columns: 1fr 1fr; }
  .beneficios__inner { grid-template-columns: 1fr; gap: 3rem; }
  .nosotros__mv { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .contacto__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Proceso */
  .proceso__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step__connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), rgba(184,146,74,.3));
    margin: 0 auto;
  }
  .step__connector::after {
    right: -4px;
    top: auto;
    bottom: -5px;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    transform: rotate(-45deg);
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 600px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {

  :root { --header-h: 64px; }

  .retos__grid { grid-template-columns: 1fr; }
  .servicios__grid { grid-template-columns: 1fr; }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding-top: 1.5rem;
  }
  .stat__div { display: none; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-direction: column; align-items: center; gap: .75rem; }

  .testimonio { padding: 2rem 1.25rem; }
  .testimonio blockquote { font-size: 1.1rem; }

  .fab--wa span { display: none; }
  .fab--wa { padding: .9rem; border-radius: 50%; }
  .fab--top { bottom: 5rem; right: 1.25rem; }
  .fab--wa { right: 1.25rem; bottom: 1.25rem; }

  .nosotros__media { order: -1; }

  .contacto__form-wrap { padding: 1.75rem; }

  .cta-band { padding: 4rem 0; }
}