/* ============================================================
   Golden Lions — Landing Premium
   Paleta desde logo real: dorado león + negro carbón + blanco
   ============================================================ */
:root {
  --gold: #c9a227;
  --gold-light: #e4c65b;
  --gold-soft: #f7efd8;
  --black: #141414;
  --ink: #2b2b2b;
  --muted: #6b6b6b;
  --white: #ffffff;
  --soft: #faf9f6;
  --line: #ececec;
  --green: #25d366;
  --green-dark: #128c4a;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(20, 20, 20, .12);
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
h1, h2, h3 { color: var(--black); line-height: 1.15; font-weight: 700; }
.gold { color: var(--gold); }

.skip-link {
  position: absolute; top: -48px; left: 12px; z-index: 100;
  background: var(--black); color: #fff; text-decoration: none;
  padding: 10px 18px; border-radius: 10px; font-weight: 600; font-size: 14px;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,20,20,.16); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); }
.btn-wsp { background: var(--green); color: #fff; }
.btn-wsp:hover { background: #1fc25b; }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-pill { background: var(--black); color: #fff; padding: 11px 22px; font-size: 14px; }
.btn-card { background: var(--gold-soft); color: var(--black); padding: 11px 20px; font-size: 14px; }
.btn-card:hover { background: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__logo img { height: 44px; width: 44px; border-radius: 10px; object-fit: contain; }
.header__nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px); }
.header__nav a:not(.btn) {
  position: relative; color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 12.5px; letter-spacing: .09em; text-transform: uppercase;
  padding-bottom: 4px; transition: color .18s ease;
}
.header__nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right .22s ease;
}
.header__nav a:not(.btn):hover { color: var(--gold); }
.header__nav a:not(.btn):hover::after,
.header__nav a:not(.btn).active::after { right: 0; }
.header__nav a:not(.btn).active { color: var(--gold); }

/* Menú móvil (hamburguesa) */
.nav-toggle {
  display: none; width: 40px; height: 40px; border: none; background: none;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--black);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero Reel — 3 videos comerciales con sonido ---------- */
.hero-reel {
  position: relative; background: linear-gradient(160deg, #ffffff 0%, #faf7f0 55%, #ffffff 100%);
  padding: clamp(96px, 14vh, 140px) clamp(18px, 5vw, 70px) clamp(50px, 7vw, 80px);
  overflow: hidden;
}
.hero-reel::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 60%;
  background: radial-gradient(ellipse at top, rgba(201,162,39,.10), transparent 70%);
  pointer-events: none;
}
.hero-reel__grid {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 5vw, 64px); align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.hero-reel__head { text-align: left; max-width: 520px; }
.hero__eyebrow {
  color: var(--gold); letter-spacing: .16em; text-transform: uppercase;
  font-size: 13px; font-weight: 700; margin-bottom: 14px;
}
.hero-reel__head h1 {
  color: var(--black); font-size: clamp(32px, 4.6vw, 52px); font-weight: 800; margin-bottom: 14px;
}
.hero-reel__sub { color: var(--muted); font-size: clamp(15px, 1.8vw, 19px); margin-bottom: 4px; }
.hero-reel__wsp {
  display: block; margin-top: 16px; color: var(--muted); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: color .18s ease;
}
.hero-reel__wsp:hover { color: var(--gold); }
.google-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 14px;
  padding: 9px 18px; border-radius: 999px; text-decoration: none;
  background: var(--gold-soft); border: 1px solid var(--gold);
  box-shadow: 0 6px 16px rgba(201,162,39,.14);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.google-badge:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,162,39,.22); }
.google-badge__stars {
  color: var(--gold); font-size: 14px; letter-spacing: 1px;
  display: inline-block; animation: badge-twinkle 2.8s ease-in-out infinite;
}
.google-badge__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0;
}
.google-badge__text { color: var(--ink); font-size: 13.5px; font-weight: 700; }
@keyframes badge-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .google-badge__stars { animation: none; }
}

.hero-reel__quote { position: relative; }
.quote__live {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px;
  color: var(--gold); font-size: 12.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.quote__live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: quote-pulse 2s ease-out infinite;
}
@keyframes quote-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .quote__live-dot { animation: none; }
}

.reel {
  position: relative; z-index: 1; display: flex; gap: clamp(16px, 2.4vw, 26px);
  justify-content: center; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 18px; -webkit-overflow-scrolling: touch;
}
.reel::-webkit-scrollbar { display: none; }
.reel-card {
  position: relative; flex: 0 0 auto; width: min(280px, 76vw); aspect-ratio: 9 / 16;
  border-radius: 26px; overflow: hidden; background: #000; scroll-snap-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease;
}
.reel-card:hover { transform: translateY(-4px); }
.reel-card video { width: 100%; height: 100%; object-fit: cover; }
.reel-card__label {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--gold); color: var(--black); font-size: 12px; font-weight: 700;
  letter-spacing: .03em; padding: 6px 14px; border-radius: 999px;
}
.reel-card__sound {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 2;
  white-space: nowrap; background: rgba(20,20,20,.78); color: #fff;
  border: 1px solid rgba(255,255,255,.4); border-radius: 999px;
  font-family: var(--font); font-size: 13.5px; font-weight: 600;
  padding: 10px 20px; cursor: pointer; backdrop-filter: blur(6px);
  transition: background .2s ease;
}
.reel-card__sound.on { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ---------- Bandas de video full-width ---------- */
.band {
  position: relative; min-height: 94vh; overflow: hidden;
  display: grid; place-items: center; text-align: center;
  background: var(--black);
}
.band__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.band__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.82), rgba(8,8,8,.32) 55%, rgba(8,8,8,.45));
}
.band__content {
  position: relative; z-index: 2; padding: clamp(56px, 9vw, 100px) clamp(18px, 5vw, 70px);
  max-width: 760px;
}
.band__content h2 {
  color: #fff; font-size: clamp(30px, 5vw, 54px); font-weight: 800; margin-bottom: 14px;
  text-shadow: 0 4px 26px rgba(0,0,0,.5);
}
.band__content p { color: rgba(255,255,255,.86); font-size: clamp(15px, 1.8vw, 19px); margin-bottom: 28px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }

/* ---------- Trustbar ---------- */
.trustbar {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: clamp(28px, 4vw, 44px) clamp(18px, 5vw, 70px);
  max-width: 1200px; margin: 0 auto;
}
.trustbar::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 100vw; transform: translateX(-50%); background: var(--black); z-index: -1;
}
.trust { text-align: center; }
.trust strong { display: block; font-size: clamp(20px, 2.4vw, 28px); color: #fff; font-weight: 800; }
.trust strong::after { content: ""; display: block; width: 34px; height: 3px; background: var(--gold); margin: 8px auto; border-radius: 2px; }
.trust span { color: rgba(255,255,255,.65); font-size: 14px; }

/* ---------- Secciones ---------- */
.section { padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 70px); max-width: 1200px; margin: 0 auto; }
.section--soft { max-width: none; background: var(--soft); }
.section--soft > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); }
.kicker {
  color: var(--gold); text-transform: uppercase; letter-spacing: .18em;
  font-weight: 700; font-size: 13px; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 14px; }
.section-head h2.big { font-size: clamp(38px, 6vw, 64px); }
.section-sub { color: var(--muted); font-size: clamp(15px, 1.7vw, 18px); }

/* ---------- Servicios ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { font-size: 34px; }
.card h3 { font-size: 20px; }
.card p { color: var(--muted); font-size: 15px; flex: 1; }
.card .btn { align-self: flex-start; }
.card--photo { padding: 0; overflow: hidden; border: none; }
.card--photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Banner urgente ---------- */
.urgent {
  display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 48px);
  flex-wrap: wrap; text-align: center;
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  padding: clamp(30px, 4vw, 44px) clamp(18px, 5vw, 70px);
}
.urgent h3 { color: #fff; font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.urgent p { color: rgba(255,255,255,.9); }
.urgent .btn-wsp { background: #fff; color: var(--green-dark); font-weight: 700; }
.urgent .btn-wsp:hover { background: #f2fff7; }

/* ---------- Calendario-Cotizador ---------- */
.quote { max-width: 860px; margin: 0 auto; }
.calendar {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow); padding: clamp(20px, 3.5vw, 38px);
}
.calendar__head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.calendar__head strong { font-size: clamp(19px, 2.4vw, 24px); font-weight: 700; text-transform: capitalize; }
.calendar__head button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--white); font-size: 22px; cursor: pointer; color: var(--ink);
  transition: background .18s ease;
}
.calendar__head button:hover { background: var(--gold-soft); }
.calendar__week {
  display: grid; grid-template-columns: repeat(7, 1fr); text-align: center;
  color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .06em;
}
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.day {
  aspect-ratio: 1; border-radius: 14px; border: none; background: transparent;
  font-family: var(--font); font-size: clamp(15px, 2vw, 18px); font-weight: 500;
  color: var(--ink); cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.day:hover:not(:disabled) { background: var(--gold-soft); transform: scale(1.06); }
.day:disabled { color: #c9c9c9; cursor: not-allowed; }
.day.today { outline: 2px solid var(--gold); outline-offset: -2px; }
.day.selected { background: var(--gold); color: var(--black); font-weight: 700; }
.day.empty { visibility: hidden; }
.calendar__hint { text-align: center; color: var(--muted); font-size: 14px; margin-top: 18px; }

/* Wizard */
.wizard {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow); padding: clamp(22px, 3.5vw, 40px); margin-top: 20px;
  animation: wizIn .45s ease both;
}
@keyframes wizIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.wizard__progress { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; margin-bottom: 16px; }
.wizard__progress span {
  display: block; height: 100%; width: 25%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .35s ease;
}
.wizard__date { color: var(--gold); font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.wizard__step h3 { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 20px; }
.wizard__step { animation: wizIn .35s ease both; }
.options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.options--2 { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
.opt {
  border: 2px solid var(--line); background: var(--white); border-radius: 16px;
  padding: 18px 10px; font-family: var(--font); font-size: 14px; font-weight: 600;
  color: var(--ink); cursor: pointer; text-align: center; line-height: 1.3;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.opt span { display: block; font-size: 30px; margin-bottom: 8px; }
.opt:hover { border-color: var(--gold); transform: translateY(-2px); }
.opt.active { border-color: var(--gold); background: var(--gold-soft); }
.route { display: flex; align-items: end; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.route label, .floors label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--muted); flex: 1; min-width: 180px; }
.route__arrow { font-size: 22px; color: var(--gold); padding-bottom: 12px; }
select {
  font-family: var(--font); font-size: 16px; padding: 13px 14px;
  border: 2px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink);
}
select:focus { border-color: var(--gold); }
select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.floors { display: flex; gap: 14px; flex-wrap: wrap; }
.summary { list-style: none; margin-bottom: 22px; display: grid; gap: 8px; }
.summary li { background: var(--soft); border-radius: 12px; padding: 11px 16px; font-size: 15px; }
.summary li strong { color: var(--black); }
.price {
  text-align: center; border: 2px dashed var(--gold); border-radius: 18px;
  padding: 22px; margin-bottom: 22px; background: var(--gold-soft);
}
.price__label { font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.price__range { font-size: clamp(30px, 5vw, 42px); font-weight: 800; color: var(--black); margin: 6px 0; }
.price__legend { font-size: 13px; color: var(--muted); }
#btnWsp { display: block; text-align: center; }
.wizard__back {
  margin-top: 18px; background: none; border: none; color: var(--muted);
  font-family: var(--font); font-size: 14px; font-weight: 600; cursor: pointer;
}
.wizard__back:hover { color: var(--black); }

/* ---------- Cobertura (oscura) ---------- */
.section--dark { max-width: none; background: var(--black); }
.section--dark > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section--dark h2 { color: #fff; }
.section--dark .section-sub { color: rgba(255,255,255,.7); }
.kicker--gold { color: var(--gold-light); }
.coverage { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 5vw, 70px); align-items: center; }
.peru { width: min(300px, 62vw); margin: 0 auto; }
.coverage__list { list-style: none; display: grid; gap: 18px; }
.coverage__list li { color: rgba(255,255,255,.82); font-size: 16px; padding-left: 18px; border-left: 3px solid var(--gold); }
.coverage__list strong { color: #fff; }

/* ---------- Testimonios / Servicios en acción (mismo patrón .vcard) ---------- */
.videos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 44px; }
.videos--3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-inline: auto; margin-bottom: 44px; }
.vcard { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); background: var(--black); }
.vcard video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.vcard__tag {
  display: inline-block; background: var(--gold); color: var(--black);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: 3px 10px; margin-bottom: 8px;
}
.vcard__tag--cliente { background: var(--green); color: #fff; }
.vcard__tag--servicio { background: var(--black); color: var(--gold-light); }
.vcard__sound {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; background: rgba(20,20,20,.72); color: #fff;
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 8px 16px; cursor: pointer; backdrop-filter: blur(6px);
}
.vcard__sound.on { background: var(--gold); color: var(--black); border-color: var(--gold); }
.vcard figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 16px 14px; color: #fff; font-size: 14px; font-weight: 500;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
}
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.quotes blockquote {
  background: var(--soft); border-radius: 16px; padding: 22px;
  font-size: 15px; color: var(--ink);
}
.quotes cite { display: block; margin-top: 12px; color: var(--gold); font-style: normal; font-weight: 700; font-size: 14px; }

/* ---------- Equipo + pagos ---------- */
.team { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 5vw, 60px); align-items: center; }
.team__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.team__photos img { border-radius: 16px; aspect-ratio: 4 / 3; object-fit: cover; }
.team__text h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.team__text > p { color: var(--muted); }
.pays { margin-top: 24px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pays p { font-weight: 600; color: var(--black); width: 100%; }
.pay-logo {
  height: 54px; width: auto; background: var(--white); border-radius: 12px;
  padding: 8px 16px; box-shadow: 0 3px 10px rgba(20,20,20,.1); object-fit: contain;
}
.chip {
  background: var(--white); border: 1.5px solid var(--gold); color: var(--black);
  border-radius: 999px; padding: 7px 16px; font-size: 14px; font-weight: 600;
}

/* ---------- FAQ ---------- */
.faqs { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
details {
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px;
  background: var(--white); transition: box-shadow .2s ease;
}
details[open] { box-shadow: var(--shadow); border-color: var(--gold); }
summary { font-weight: 700; color: var(--black); cursor: pointer; font-size: 16px; }
details p { margin-top: 12px; color: var(--muted); font-size: 15px; }

/* ---------- CTA final ---------- */
.final {
  background: var(--black); text-align: center;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 70px);
}
.final img { margin: 0 auto 26px; height: 88px; width: 88px; object-fit: contain; filter: drop-shadow(0 0 24px rgba(201,162,39,.35)); }
.final__trust {
  color: var(--gold-light); font-size: 14.5px; font-weight: 600;
  letter-spacing: .2px; margin-bottom: 18px;
}
.final__trust strong { color: #fff; }
.final h2 { color: #fff; font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; margin-bottom: 14px; }
.final p { color: rgba(255,255,255,.75); margin-bottom: 30px; }
.final__ctas { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-wrap: wrap; }
.final__wsp {
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: color .18s ease;
}
.final__wsp:hover { color: var(--gold-light); }

/* ---------- Footer ---------- */
.footer {
  background: #0d0d0d; color: rgba(255,255,255,.6);
  text-align: center; padding: 40px clamp(18px, 5vw, 70px) 110px; font-size: 14px;
}
.footer__social { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 18px; }
.footer__social a { color: var(--gold-light); text-decoration: none; font-weight: 600; }
.footer__social a:hover { text-decoration: underline; }
.footer__legal { margin-top: 10px; font-size: 12px; color: rgba(255,255,255,.4); max-width: 640px; margin-inline: auto; }

/* ---------- WhatsApp flotante ---------- */
.float-wsp {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(18, 140, 74, .45);
  transition: transform .2s ease;
}
.float-wsp:hover { transform: scale(1.08); }

/* ---------- Scroll reveal ---------- */
.section-head, .card, .vcard, .quotes blockquote, details, .trust, .coverage__list li, .team__photos img {
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.in { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .section-head, .card, .vcard, .quotes blockquote, details, .trust, .coverage__list li, .team__photos img {
    opacity: 1; transform: none; transition: none;
  }
  .wizard, .wizard__step { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header__nav {
    position: fixed; inset: 0 0 auto 0; top: 68px; z-index: 55;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(20,20,20,.14);
    padding: 8px clamp(16px, 4vw, 48px) 20px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .header__nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .header__nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .header__nav a:not(.btn)::after { display: none; }
  .header__nav .btn { margin-top: 14px; text-align: center; }
  .nav-toggle { display: flex; }
  .hero-reel__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-reel__head { text-align: center; max-width: 560px; margin: 0 auto; }
  .hero-reel__head h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-reel__wsp { margin-inline: auto; }
  .band { min-height: 82vh; }
  .trustbar { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr 1fr; }
  .options { grid-template-columns: repeat(2, 1fr); }
  .coverage, .team { grid-template-columns: 1fr; }
  .videos { grid-template-columns: 1fr 1fr; }
  .videos--3 { grid-template-columns: 1fr 1fr; max-width: none; }
}
@media (max-width: 600px) {
  .videos { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .videos--3 { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .trustbar { gap: 22px; }
  .day { border-radius: 10px; }
}
