/* ════════════════════════════════════════════
   PLUMA DEL SOL — Taxi Company · Quito Ecuador
   Premium Redesign v2
   ════════════════════════════════════════════ */

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

/* ── Design tokens ── */
:root {
  --gold:        #F5C518;
  --gold-dark:   #C8A000;
  --gold-dim:    #FEF3C7;
  --gold-glow:   rgba(245,197,24,.30);

  --dark:        #080810;
  --navy:        #0D0D1A;
  --navy-mid:    #14142A;
  --navy-card:   #1A1A35;
  --navy-border: rgba(255,255,255,.08);

  --text:        #1f2937;
  --text-muted:  #6b7280;
  --text-faint:  rgba(255,255,255,.45);
  --white:       #ffffff;
  --light:       #f8f9fb;

  --green:       #25D366;
  --green-dark:  #128C7E;
  --blue:        #3b82f6;
  --red:         #ef4444;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  --sh-sm:    0 1px 4px rgba(0,0,0,.07);
  --sh-md:    0 4px 20px rgba(0,0,0,.10);
  --sh-lg:    0 10px 48px rgba(0,0,0,.14);
  --sh-xl:    0 24px 80px rgba(0,0,0,.20);
  --sh-gold:  0 8px 32px rgba(245,197,24,.30);
  --sh-green: 0 8px 32px rgba(37,211,102,.35);

  --font:    'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Playfair Display', Georgia, serif;

  --nav-h:   70px;
  --wrap:    1200px;
  --ease:    0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

/* ══════════ BUTTONS ══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--sh-gold);
}
.btn--primary:hover { background: var(--gold-dark); box-shadow: 0 14px 44px var(--gold-glow); }

.btn--ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--sh-md);
}
.btn--white:hover { background: var(--gold-dim); }

.btn--wa, .btn--wa-hero, .btn--wa-dark, .btn--wa-form {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--sh-green);
}
.btn--wa:hover, .btn--wa-hero:hover, .btn--wa-dark:hover, .btn--wa-form:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 44px rgba(37,211,102,.45);
}
.btn--wa-dark { background: #1ebe5d; }

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

/* ══════════ SECTION HELPERS ══════════ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header--light .section-title,
.section-header--light .section-subtitle { color: var(--white); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  color: #78350f;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.section-tag--light {
  background: rgba(245,197,24,.15);
  color: var(--gold);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ══════════ NAVBAR ══════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.navbar.scrolled {
  background: rgba(8,8,16,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navy-border);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  margin-right: auto;
}
.navbar__logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.navbar__logo-text { display: flex; flex-direction: column; }
.navbar__logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.navbar__logo-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__link {
  padding: 8px 14px;
  font-size: .87rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--r-md);
  transition: color var(--ease), background var(--ease);
  position: relative;
}
.navbar__link:hover,
.navbar__link.active { color: var(--white); background: rgba(255,255,255,.07); }
.navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.navbar__wa {
  margin-left: 8px;
  padding: 9px 18px;
  font-size: .84rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  transition: background var(--ease);
}
.navbar__hamburger:hover { background: rgba(255,255,255,.08); }
.navbar__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  margin-inline: auto;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════ HERO — SPLIT LAYOUT ══════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Decorative background shapes */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Subtle dot-grid pattern */
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero__shape--1 {
  width: 500px; height: 500px;
  background: rgba(245,197,24,.13);
  top: -120px; left: -100px;
  animation: shape-drift 12s ease-in-out infinite;
}
.hero__shape--2 {
  width: 380px; height: 380px;
  background: rgba(59,130,246,.08);
  bottom: -80px; right: 38%;
  animation: shape-drift 15s ease-in-out infinite reverse;
}
.hero__shape--3 {
  width: 260px; height: 260px;
  background: rgba(245,197,24,.06);
  top: 30%; right: 42%;
  animation: shape-drift 18s ease-in-out infinite 3s;
}
@keyframes shape-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(20px,-15px) scale(1.05); }
  66%      { transform: translate(-10px,20px) scale(.97); }
}

/* Two-column grid */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 90px; /* espacio para la animación del taxi */
}

/* ── Left column ── */
.hero__left { display: flex; flex-direction: column; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.25);
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  width: fit-content;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.7)} }

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--display);
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}

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

/* ── Right column: slider card ── */
.hero__right {
  display: flex;
  justify-content: center;
}

.hero__slider-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--navy);
  box-shadow:
    0 40px 90px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.06);
}

/* Línea dorada superior — acento limpio y elegante */
.hero__slider-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  z-index: 6;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent
  );
  pointer-events: none;
}

/* Label "Nuestros Socios" */
.hero__slider-label {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8,8,16,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,197,24,.25);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.hero__slider-label svg { width: 7px; height: 7px; animation: blink 1.8s ease-in-out infinite; }

/* ── Slides container ── */
.slider {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  background: #0a0a18;
}

/* Fotos en cover: llenan el marco sin barras negras */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity .9s ease, transform 1.1s ease;
  transform: scale(1.04);
  will-change: opacity, transform;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.slide.prev {
  opacity: 0;
  transform: scale(.98);
}

/* Gradiente inferior suave para que los controles floten sobre la foto */
.slider::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(8,8,24,.95) 100%);
}

/* ── Controles flotantes SOBRE la foto (dentro del gradiente) ── */
.hero__slider-ui {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 16px;
}

/* Flechas compactas */
.slider-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), transform var(--ease);
  flex-shrink: 0;
}
.slider-arrow svg { width: 14px; height: 14px; }
.slider-arrow:hover { background: var(--gold); color: var(--navy); transform: scale(1.12); }

/* Puntos de navegación elegantes */
.slider-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 200px;
}
.slider-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), width var(--ease);
  flex-shrink: 0;
}
.slider-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}
.slider-dot:hover:not(.active) { background: rgba(255,255,255,.65); transform: scale(1.3); }

/* Contador */
.slider-counter {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Barra de progreso oculta (ya no se usa visualmente, JS la conserva) */
.slider-progress { display: none; }

/* ══════════ TAXI ANIMATION ══════════ */

/* Carril en la parte inferior del hero */
.taxi-lane {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Línea de carretera */
.taxi-lane::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(245,197,24,.18) 15%,
    rgba(245,197,24,.18) 85%,
    transparent 100%
  );
}

/* Guiones de la carretera */
.taxi-lane::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    transparent        0px,
    transparent        30px,
    rgba(255,255,255,.06) 30px,
    rgba(255,255,255,.06) 70px
  );
}

/* El auto */
.taxi-car {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 195px;
  will-change: transform, opacity;
  animation: taxi-drive 22s linear infinite;
}
.taxi-car svg {
  width: 195px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.5));
}

/* Ruedas giratorias */
.taxi-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheel-spin 0.7s linear infinite;
}

@keyframes wheel-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Trayectoria: izquierda → derecha → derecha → izquierda en loop */
@keyframes taxi-drive {
  /* ── Aparece desde la izquierda ── */
  0%   { transform: translateX(-160px) scaleX(1); opacity: 0; }
  2%   { transform: translateX(-160px) scaleX(1); opacity: 1; }

  /* ── Cruza hacia la derecha ── */
  43%  { transform: translateX(calc(100vw + 150px)) scaleX(1); opacity: 1; }
  45%  { transform: translateX(calc(100vw + 150px)) scaleX(1); opacity: 0; }

  /* ── Cambia de dirección (invisible) ── */
  48%  { transform: translateX(calc(100vw + 150px)) scaleX(-1); opacity: 0; }

  /* ── Aparece desde la derecha, ahora va hacia la izquierda ── */
  50%  { transform: translateX(calc(100vw + 150px)) scaleX(-1); opacity: 1; }

  /* ── Cruza hacia la izquierda ── */
  93%  { transform: translateX(-160px) scaleX(-1); opacity: 1; }
  95%  { transform: translateX(-160px) scaleX(-1); opacity: 0; }

  /* ── Reset invisible ── */
  99%  { transform: translateX(-160px) scaleX(1);  opacity: 0; }
  100% { transform: translateX(-160px) scaleX(1);  opacity: 0; }
}

/* En móvil el taxi se hace un poco más pequeño */
@media (max-width: 768px) {
  .taxi-car { width: 130px; }
  .taxi-car svg { width: 130px; }
  .taxi-lane { height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  .taxi-car { animation: none; display: none; }
}

/* ══════════ STATS BAR ══════════ */
.stats-bar {
  background: var(--navy);
  border-bottom: 1px solid var(--navy-border);
  padding-block: 28px;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-inline: 48px;
}
.stats-bar__item strong {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.02em;
}
.stats-bar__item span {
  font-size: .75rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 500;
}
.stats-bar__sep {
  width: 1px;
  height: 44px;
  background: var(--navy-border);
}

/* ══════════ FEATURES ══════════ */
.features {
  padding-block: 104px;
  background: var(--light);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.feat-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feat-card__icon svg { width: 24px; height: 24px; }
.feat-card__icon--gold   { background: #FEF3C7; color: #92400e; }
.feat-card__icon--blue   { background: #EFF6FF; color: #1d4ed8; }
.feat-card__icon--green  { background: #ECFDF5; color: #065f46; }
.feat-card__icon--purple { background: #F5F3FF; color: #6d28d9; }

.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feat-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════ SERVICES ══════════ */
.services {
  position: relative;
  padding-block: 104px;
  overflow: hidden;
}
.services__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.services .container { position: relative; z-index: 1; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--r-xl);
  padding: 36px 32px 32px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,197,24,.04) 0%, transparent 60%);
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,197,24,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 40px rgba(245,197,24,.06);
}
.svc-card--featured {
  border-color: rgba(245,197,24,.3);
  background: linear-gradient(160deg, #1e1e3c 0%, #141430 100%);
}
.svc-card--featured::before {
  background: linear-gradient(135deg, rgba(245,197,24,.08) 0%, transparent 60%);
}

.svc-card__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: var(--r-full);
}

.svc-card__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(245,197,24,.06);
  line-height: 1;
  font-family: var(--display);
  margin-bottom: -8px;
}
.svc-card--featured .svc-card__num { color: rgba(245,197,24,.1); }

.svc-card__icon {
  width: 68px; height: 68px;
  margin-bottom: 20px;
}
.svc-card__icon svg { width: 100%; height: 100%; }

.svc-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.svc-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 24px; }

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--ease), opacity var(--ease);
}
.svc-card__link svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.svc-card__link:hover { gap: 10px; opacity: .8; }

/* ══════════ GALLERY / SOCIOS ══════════ */
.gallery {
  padding-block: 104px;
  background: var(--light);
}

/* ── Carousel wrapper ── */
.gal-carousel {
  position: relative;
  margin-top: 8px;
}

/* Clip window */
.gal-carousel__viewport {
  overflow: hidden;
  border-radius: var(--r-lg);
}

/* Sliding reel */
.gal-carousel__reel {
  display: flex;
  gap: 16px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Individual photo card */
.gal-card {
  flex: 0 0 calc((100% - 3 * 16px) / 4);   /* 4 per view desktop */
  min-width: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
  position: relative;
  box-shadow: var(--sh-md);
  transition: transform var(--ease), box-shadow var(--ease);
  aspect-ratio: 3 / 4;                      /* portrait frame */
}
.gal-card:hover { transform: translateY(-4px); box-shadow: var(--sh-xl); }
.gal-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* show full photo, no crop */
  object-position: center;
  display: block;
  background: var(--navy);
}

/* Hover overlay hint */
.gal-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,.65) 0%, transparent 45%);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  pointer-events: none;
}
.gal-card:hover .gal-card__overlay { opacity: 1; }
.gal-card__overlay svg {
  width: 22px; height: 22px;
  color: var(--white);
  margin-left: auto;
}

/* Navigation arrows */
.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid rgba(0,0,0,.08);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}
.gal-arrow svg { width: 18px; height: 18px; }
.gal-arrow:hover { background: var(--gold); box-shadow: var(--sh-gold); transform: translateY(-50%) scale(1.08); }
.gal-arrow:disabled { opacity: .3; cursor: not-allowed; transform: translateY(-50%); }
.gal-arrow--prev { left: -22px; }
.gal-arrow--next { right: -22px; }

/* Footer: dots + counter */
.gal-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.gal-dots {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}
.gal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--ease), transform var(--ease), width var(--ease);
}
.gal-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

.gal-counter {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── Responsive: cards per view ── */
@media (max-width: 1100px) {
  .gal-card { flex: 0 0 calc((100% - 2 * 16px) / 3); }  /* 3 per view */
}
@media (max-width: 700px) {
  .gal-card { flex: 0 0 calc((100% - 1 * 16px) / 2); }  /* 2 per view */
  .gal-arrow--prev { left: -14px; }
  .gal-arrow--next { right: -14px; }
}
@media (max-width: 420px) {
  .gal-card { flex: 0 0 100%; }                           /* 1 per view */
  .gal-arrow--prev { left: 0; }
  .gal-arrow--next { right: 0; }
  .gal-carousel__viewport { border-radius: var(--r-md); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(10px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-lg);
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
  object-fit: contain;
  display: block;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  border: 1px solid rgba(255,255,255,.15);
}
.lightbox__nav:hover { background: rgba(245,197,24,.3); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
}

/* ══════════ PROCESS ══════════ */
.process {
  padding-block: 104px;
  background: var(--light);
}
.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 940px;
  margin-inline: auto;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  padding-inline: 20px;
}

.process-step__bubble {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-gold);
  position: relative;
  z-index: 1;
}

.process-step__connector {
  flex: 0 0 auto;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(245,197,24,.2));
  margin-top: 32px;
  flex-shrink: 0;
}

.process-step__body { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.process-step__icon {
  width: 48px; height: 48px;
  background: var(--white);
  border: 1.5px solid rgba(245,197,24,.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  box-shadow: var(--sh-sm);
}
.process-step__icon svg { width: 22px; height: 22px; }

.process-step__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.process-step__body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-step__body a { color: var(--gold-dark); font-weight: 600; }
.process-step__body a:hover { text-decoration: underline; }

/* ══════════ TESTIMONIALS ══════════ */
.testimonials {
  padding-block: 100px;
  background: var(--dark);
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.testimonials .section-title,
.testimonials .section-subtitle { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,.5); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.testi-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(245,197,24,.25);
  transform: translateY(-4px);
}

.testi-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testi-card__quote {
  font-size: .93rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  quotes: "\201C" "\201D";
}
.testi-card__quote::before { content: open-quote; }
.testi-card__quote::after  { content: close-quote; }

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 16px;
}
.testi-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card__author strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
}
.testi-card__author span {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

/* ── Mapa de contacto ── */
.contact__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1.5px solid rgba(245,197,24,.12);
  margin-top: 20px;
}
.contact__map iframe { display: block; }

/* ══════════ CTA BAND ══════════ */
.cta-band {
  position: relative;
  padding-block: 80px;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #e8b800 55%, #c8a000 100%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-band__text p {
  font-size: 1rem;
  color: rgba(13,13,26,.7);
  max-width: 400px;
  line-height: 1.7;
}
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn--white { border: 2px solid rgba(13,13,26,.12); }

/* ══════════ CONTACT ══════════ */
.contact {
  padding-block: 104px;
  background: var(--white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact__lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
}

.contact__cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.contact__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.contact__card:hover { transform: translateX(4px); box-shadow: var(--sh-md); }
.contact__card--phone { border-color: rgba(245,197,24,.2); }
.contact__card--wa    { border-color: rgba(37,211,102,.2); }
.contact__card--email { border-color: rgba(59,130,246,.15); }

.contact__card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__card-icon svg { width: 20px; height: 20px; }
.contact__card--phone .contact__card-icon { background: var(--gold-dim); color: #92400e; }
.contact__card--wa    .contact__card-icon { background: #DCFCE7; color: #166534; }
.contact__card--email .contact__card-icon { background: #EFF6FF; color: #1e40af; }

.contact__card div { display: flex; flex-direction: column; gap: 2px; }
.contact__card span { font-size: .73rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: 600; }
.contact__card strong { font-size: .95rem; font-weight: 700; color: var(--navy); }
.contact__card a { transition: color var(--ease); }
.contact__card a:hover { color: var(--gold-dark); }

.contact__locations { display: flex; flex-direction: column; gap: 14px; }
.contact__loc {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--r-md);
  border: 1.5px solid rgba(245,197,24,.12);
}
.contact__loc-pin {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  color: #92400e;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__loc-pin svg { width: 18px; height: 18px; }
.contact__loc h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact__loc p { font-size: .84rem; color: var(--text-muted); line-height: 1.5; }
.contact__loc em { font-style: normal; opacity: .8; }

/* Contact form */
.contact__form-col {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 44px;
  box-shadow: var(--sh-xl);
  border: 1.5px solid rgba(0,0,0,.05);
}
.contact__form-header { margin-bottom: 28px; }
.contact__form-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact__form-header p { font-size: .88rem; color: var(--text-muted); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.form-group label span { color: var(--gold-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: var(--light);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,.15);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: var(--red); }

.form-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 18px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--r-md);
  font-size: .88rem;
  font-weight: 600;
  color: #065F46;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success[hidden] { display: none; }

/* ══════════ FOOTER ══════════ */
.footer { background: var(--dark); padding-top: 72px; }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--navy-border);
}
.footer__logo { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer__tagline { font-size: .87rem; color: var(--text-faint); margin-bottom: 22px; }

.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background var(--ease), color var(--ease);
}
.footer__social-link svg { width: 18px; height: 18px; }
.footer__social-link:hover { background: rgba(255,255,255,.12); color: var(--white); }
.footer__social-link--wa:hover { background: var(--green); color: var(--white); }

.footer__col h4 {
  font-size: .73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer__col ul a:hover { color: var(--gold); }

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer__contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer__contact a { transition: color var(--ease); }
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  padding-block: 22px;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.25); }

/* ══════════ FLOATING WHATSAPP ══════════ */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--sh-green);
  transition: transform var(--ease), box-shadow var(--ease);
}
.fab-wa svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.fab-wa:hover { transform: scale(1.12); box-shadow: 0 16px 56px rgba(37,211,102,.55); }

.fab-wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .6; }
  70%  { transform: scale(1.5);  opacity: 0; }
  100% { transform: scale(1.5);  opacity: 0; }
}

/* ══════════════════════════════════════
   RADIO PLAYER WIDGET
   ══════════════════════════════════════ */

/* Contenedor posicionado abajo a la izquierda */
.radio-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 12px;
}

/* ── Botón FAB (colapsado) ── */
.radio-widget__fab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px 0 14px;
  height: 52px;
  background: var(--navy-card);
  color: var(--white);
  border-radius: var(--r-full);
  border: 1.5px solid rgba(245,197,24,.25);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  font-family: var(--font);
}
.radio-widget__fab svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.radio-widget__fab-label {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
}
.radio-widget__fab:hover {
  background: #22224a;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,.55), 0 0 0 1px rgba(245,197,24,.3);
}
.radio-widget[data-open] .radio-widget__fab {
  background: var(--gold);
  color: var(--navy);
  border-color: transparent;
}
.radio-widget[data-open] .radio-widget__fab svg { color: var(--navy); }
.radio-widget[data-open] .radio-widget__fab-label { color: var(--navy); }

/* ── Panel expandido ── */
.radio-panel {
  width: 310px;
  background: var(--navy-card);
  border: 1.5px solid rgba(245,197,24,.18);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
  /* Animación de entrada */
  opacity: 0;
  transform: translateY(12px) scale(.97);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.radio-widget[data-open] .radio-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Línea dorada superior */
.radio-panel::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

/* Cabecera */
.radio-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 8px;
}
.radio-panel__title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.5);
}
.radio-panel__close {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
}
.radio-panel__close svg { width: 14px; height: 14px; }
.radio-panel__close:hover { background: rgba(239,68,68,.25); color: #f87171; }

/* Estación actual */
.radio-panel__station {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 14px;
}
.radio-panel__logo-wrap {
  position: relative;
  width: 58px; height: 58px;
  flex-shrink: 0;
}
.radio-panel__logo {
  width: 100%; height: 100%;
  border-radius: var(--r-md);
  object-fit: contain;
  background: rgba(255,255,255,.06);
  display: block;
  border: 1px solid rgba(255,255,255,.08);
}

/* Ecualizador animado sobre el logo (visible solo al reproducir) */
.radio-eq {
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 14px;
  opacity: 0;
  transition: opacity .3s ease;
}
.radio-eq.playing { opacity: 1; }
.radio-eq span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: eq-bar 1.1s ease-in-out infinite;
}
.radio-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.radio-eq span:nth-child(2) { height: 90%; animation-delay: .18s; }
.radio-eq span:nth-child(3) { height: 60%; animation-delay: .36s; }
.radio-eq span:nth-child(4) { height: 80%; animation-delay: .12s; }
.radio-eq span:nth-child(5) { height: 45%; animation-delay: .28s; }

@keyframes eq-bar {
  0%,100% { transform: scaleY(.4); }
  50%      { transform: scaleY(1); }
}

.radio-panel__meta { flex: 1; min-width: 0; }
.radio-panel__name {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.radio-panel__status {
  display: block;
  font-size: .73rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .02em;
}

/* Controles */
.radio-panel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 4px 16px 16px;
}

.radio-btn {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: background var(--ease), transform var(--ease), color var(--ease);
  flex-shrink: 0;
}
.radio-btn--nav {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.radio-btn--nav svg { width: 18px; height: 18px; }
.radio-btn--nav:hover { background: rgba(245,197,24,.18); color: var(--gold); transform: scale(1.08); }

.radio-btn--play {
  width: 54px; height: 54px;
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--sh-gold);
}
.radio-btn--play svg { width: 24px; height: 24px; }
.radio-btn--play:hover { background: var(--gold-dark); transform: scale(1.08); }
.radio-btn--play .icon-loading { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Índice */
.radio-panel__index {
  text-align: center;
  padding: 0 16px 14px;
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .06em;
}

/* ── Estado de error con botones inline ── */
.radio-panel__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: .73rem;
  color: rgba(255,255,255,.4);
}
.radio-retry {
  font-size: .7rem;
  font-weight: 700;
  font-family: var(--font);
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.3);
  color: var(--gold);
  cursor: pointer;
  transition: background var(--ease);
  white-space: nowrap;
}
.radio-retry:hover { background: rgba(245,197,24,.3); }
.radio-open-tab {
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.radio-open-tab:hover { background: rgba(255,255,255,.14); color: var(--white); }
/* Borde rojo sutil cuando hay error */
.radio-panel.radio-error {
  border-color: rgba(239,68,68,.25);
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(239,68,68,.1);
}

/* ══════════ SCROLL TO TOP ══════════ */
.scroll-top {
  position: fixed;
  bottom: 98px;
  right: 30px;
  z-index: 998;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(15,15,35,.85);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(245,197,24,.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover { background: var(--gold); color: var(--navy); }
.scroll-top svg { width: 18px; height: 18px; }

/* ══════════ IMAGE FADE-IN ON LOAD ══════════ */
.gal-card img {
  opacity: 0;
  transition: opacity .5s ease, transform var(--ease), box-shadow var(--ease);
}
.gal-card img.loaded { opacity: 1; }

/* ══════════ NAVBAR GOLD ACCENT LINE ══════════ */
.navbar.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,197,24,.4), transparent);
}

/* ══════════ SECTION DIVIDERS ══════════ */
.features::before,
.process::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(245,197,24,.2), transparent);
  margin-bottom: 0;
}

/* ══════════ BUTTON SHIMMER ══════════ */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .55s ease;
  pointer-events: none;
}
.btn--primary:hover::after { left: 140%; }

/* ══════════ HERO TITLE GRADIENT ACCENT ══════════ */
.hero__title em {
  background: linear-gradient(135deg, #F5C518 0%, #ffd84d 50%, #C8A000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════ STATS BAR — gold separator ══════════ */
.stats-bar {
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,197,24,.25), transparent);
}

/* ══════════ FEAT-CARD accent top border ══════════ */
.feat-card {
  position: relative;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: transparent;
  border-radius: 2px;
  transition: background var(--ease);
}
.feat-card:hover::before { background: var(--gold); }

/* ══════════ AOS — Built-in scroll reveal ══════════ */
[data-aos] {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
[data-aos="fade-up"]    { transform: translateY(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos].aos-animate  { opacity: 1; transform: translate(0); }
[data-aos-delay="0"]   { transition-delay: 0s; }
[data-aos-delay="80"]  { transition-delay: .08s; }
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="150"] { transition-delay: .15s; }
[data-aos-delay="160"] { transition-delay: .16s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="240"] { transition-delay: .24s; }
[data-aos-delay="300"] { transition-delay: .3s; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1100px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .services__grid .svc-card:last-child { grid-column: span 2; max-width: 400px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 52px;
  }
  .hero__right { width: 100%; }
  .hero__slider-card { max-width: 480px; margin-inline: auto; }
  .slider { height: 360px; }
  .hero__title { font-size: clamp(2rem, 7vw, 3.2rem); }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__text p { margin-inline: auto; }
  .cta-band__actions { justify-content: center; }
  .process__steps { flex-direction: column; align-items: center; }
  .process-step__connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--gold), rgba(245,197,24,.1)); margin: 0; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8,8,16,.97);
    backdrop-filter: blur(20px);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--navy-border);
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
    gap: 2px;
  }
  .navbar__nav.open .navbar__link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--r-md);
    border-bottom: none;
  }
  .navbar__nav.open .navbar__wa {
    margin-top: 10px;
    justify-content: center;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 48px;
  }
  .hero__right { width: 100%; }
  .hero__slider-card { max-width: 100%; }
  .slider { height: 320px; }

  .stats-bar__item { padding-inline: 24px; }

  .features__grid { grid-template-columns: 1fr; }

  .services__grid { grid-template-columns: 1fr; }
  .services__grid .svc-card:last-child { grid-column: auto; max-width: none; }

  .contact__form-col { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__slider-ui { left: 16px; right: 16px; transform: none; }
  .stats-bar__inner { gap: 0; }
  .stats-bar__item { padding-inline: 14px; }
  .stats-bar__sep { height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  [data-aos] { opacity: 1; transform: none; }
}
