:root {
  --blue-1: #008AEB;
  --blue-2: #013062;
  --blue-dark: #011f40;
  --ink: #0E1B2E;
  --bg: #E7EEF7;
  --white: #FFFFFF;
  --off-white: #F6F9FD;
  --accent: #FFC83D;
  --radius: 18px;
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-blue: 0 16px 40px rgba(0, 138, 235, 0.16);
  --shadow-dark: 0 20px 50px rgba(1, 48, 98, 0.11);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Sora', sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--blue-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  margin: -4px 0 0 -4px;
  transition: width 0.2s, height 0.2s, margin 0.2s, background 0.2s, opacity 0.3s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 2px solid var(--blue-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  margin: -20px 0 0 -20px;
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1),
              height 0.35s cubic-bezier(0.16,1,0.3,1),
              margin 0.35s cubic-bezier(0.16,1,0.3,1),
              background 0.35s, border-color 0.35s, opacity 0.3s;
  will-change: left, top;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cursor-label {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.25s;
  white-space: nowrap;
  pointer-events: none;
}
/* Estado: hover sobre links/botones → crece el punto pequeño */
body.cur-hover .cursor-dot  { width: 22px; height: 22px; margin: -11px 0 0 -11px; }
body.cur-hover .cursor-ring { width: 40px; height: 40px; margin: -20px 0 0 -20px; }

/* Estado: hover sobre carrusel/acción especial → anillo lleno con label */
body.cur-action .cursor-dot  { width: 4px; height: 4px; margin: -2px 0 0 -2px; opacity: 0; }
body.cur-action .cursor-ring {
  width: 90px; height: 90px; margin: -45px 0 0 -45px;
  background: var(--blue-1);
  border-color: var(--blue-1);
}
body.cur-action .cursor-label { opacity: 1; }

/* Estado: sobre fondo oscuro/coloreado → círculos blancos */
body.cur-dark .cursor-dot  { background: var(--white); }
body.cur-dark .cursor-ring { border-color: var(--white); }
body.cur-dark.cur-action .cursor-ring { background: var(--white); border-color: var(--white); }
body.cur-dark.cur-action .cursor-label { color: var(--blue-2); }

/* ===== GRAIN ===== */
.grain-overlay {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 300px 300px;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="200"] { transition-delay: 0.18s; }
[data-reveal-delay="400"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .float-badge { animation: none !important; }
}

/* ===== FLOATING NAV ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px; pointer-events: none;
}
.nav-wrap {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 18px 11px 22px;
  background: linear-gradient(90deg, rgba(0,138,235,0.82) 0%, rgba(1,48,98,0.92) 100%);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-radius: 60px;
  /* border: 1px solid rgba(255,255,255,0.15); */
  box-shadow: 0 8px 32px rgba(0,138,235,0.18), inset 0 1px 0 rgba(255,255,255,0.1);
  pointer-events: auto;
  transition: background 0.4s, box-shadow 0.4s, padding 0.35s, margin 0.35s, max-width 0.45s cubic-bezier(0.4,0,0.2,1);
}
.nav-wrap.scrolled {
  background: linear-gradient(90deg, rgba(0,120,210,0.97) 0%, rgba(1,48,98,0.99) 100%);
  box-shadow: 0 4px 24px rgba(0,138,235,0.28), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* --- Navbar compacto al hacer scroll --- */
.nav-expand-btn {
  display: flex;
  align-items: center; justify-content: center;
  width: 0; height: 36px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.18);
  color: #fff; cursor: pointer; flex-shrink: 0;
  opacity: 0; pointer-events: none; overflow: hidden;
  transition: opacity 0.35s ease, width 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.35s ease, background 0.2s;
}
.nav-expand-btn:hover { background: rgba(255,255,255,0.3); }
.nav-expand-btn svg { display: block; }

.nav-wrap {
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s ease, max-width 0.45s cubic-bezier(0.4,0,0.2,1), translate 0.45s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  translate: 0;
}
.nav-wrap .menu,
.nav-wrap .nav-actions {
  overflow: hidden;
  max-width: 900px;
  transition: opacity 0.3s ease, max-width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.nav-wrap.compact {
  max-width: 240px;
  padding: 8px 14px 8px 18px;
  translate: calc(144px - 50vw);
}
.nav-wrap.compact .menu,
.nav-wrap.compact .nav-actions {
  opacity: 0;
  max-width: 0;
  pointer-events: none;
}
.nav-wrap.compact .nav-expand-btn {
  opacity: 1;
  pointer-events: auto;
  width: 36px;
}
.nav-wrap.compact.nav-expanded {
  max-width: 1280px;
  translate: 0;
}
.nav-wrap.compact.nav-expanded .menu,
.nav-wrap.compact.nav-expanded .nav-actions {
  opacity: 1;
  max-width: 900px;
  pointer-events: auto;
}
.nav-wrap.compact.nav-expanded .nav-expand-btn {
  transform: rotate(90deg);
  background: rgba(255,255,255,0.28);
}
.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 38px; width: auto; display: block;
  object-fit: contain;
}

.nav-club-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--accent) !important;
  transition: color 0.22s !important;
}
.nav-club-link:hover { color: var(--accent) !important; }
.nav-club-link::after { display: none !important; }
.nav-club-crown {
  display: flex; align-items: center;
  overflow: visible;
  transform-origin: 50% 10%;
  filter: drop-shadow(0 0 3px rgba(255,200,61,0.5));
}
.nav-club-link:hover .nav-club-crown {
  animation: crownBell 0.7s ease-in-out;
}
.nav-club-crown.crown-active {
  animation: crownBell 0.9s ease-in-out;
  filter: drop-shadow(0 0 6px rgba(255,200,61,1)) drop-shadow(0 0 16px rgba(255,200,61,0.6));
}
@keyframes crownBell {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(22deg); }
  30%  { transform: rotate(-18deg); }
  45%  { transform: rotate(12deg); }
  60%  { transform: rotate(-7deg); }
  75%  { transform: rotate(3deg); }
  100% { transform: rotate(0deg); }
}
.nav-club-link.active .nav-club-crown {
  filter: drop-shadow(0 0 6px rgba(255,200,61,1)) drop-shadow(0 0 14px rgba(255,200,61,0.5));
}
.nav-club-link.active {
  text-shadow: 0 0 14px rgba(255,200,61,0.5);
}

nav.menu { display: flex; gap: 26px; align-items: center; position: relative; }
nav.menu a {
  color: rgba(255,255,255,0.7); font-weight: 600; font-size: 0.84rem;
  letter-spacing: .02em; padding: 6px 2px; position: relative;
  transition: color 0.2s;
}
nav.menu a:hover, nav.menu a.active { color: var(--white); }
#nav-indicator {
  position: absolute; bottom: -4px; height: 2px;
  background: var(--accent); border-radius: 2px;
  pointer-events: none;
  transition: left 0.38s cubic-bezier(0.4,0,0.2,1), width 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
  opacity: 0;
}
.nav-actions { display: flex; gap: 8px; align-items: center; }
.btn {
  padding: 9px 18px; border-radius: 30px; font-weight: 700; font-size: .8rem;
  border: 1.5px solid rgba(255,255,255,0.32); color: var(--white); background: transparent;
  transition: all 0.25s var(--ease-out); letter-spacing: .01em; display: inline-block;
}
.btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.58); }
.btn.solid { background: var(--white); color: var(--blue-2); border-color: var(--white); }
.btn.solid:hover { background: var(--accent); border-color: var(--accent); color: var(--blue-dark); }
.btn.accent { background: var(--accent); border-color: var(--accent); color: var(--blue-dark); }
.btn.accent:hover { background: #e6b22e; border-color: #e6b22e; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  width: 36px; height: 36px; padding: 6px; color: var(--white);
}
.burger span {
  display: block; width: 20px; height: 1.5px; background: currentColor;
  border-radius: 2px; transition: all 0.3s var(--ease-out); transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mm-overlay {
  display: none; position: fixed; inset: 0; z-index: 198;
  background: rgba(1, 15, 40, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.35s var(--ease-out);
}
.mm-overlay.show { display: block; }
.mm-overlay.visible { opacity: 1; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 100vw);
  background: linear-gradient(160deg, #012d62 0%, #011830 60%, #010f24 100%);
  z-index: 200;
  display: flex; flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-spring);
  box-shadow: -20px 0 60px rgba(0,0,0,0.35);
  overflow-y: auto;
}
.mobile-menu.show { transform: translateX(0); }

/* Header */
.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mm-logo {
  height: 38px; width: auto;
  object-fit: contain;
}
.mobile-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.22s var(--ease-out);
  flex-shrink: 0;
}
.mobile-close:hover { background: rgba(255,255,255,0.18); }
.mobile-close svg { width: 18px; height: 18px; }

/* Nav */
.mm-nav {
  display: flex; flex-direction: column;
  padding: 16px 16px 8px; gap: 4px; flex: 1;
}
.mm-link {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.72);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 13px 14px; border-radius: 14px;
  transition: all 0.22s var(--ease-out);
  position: relative;
}
.mm-link:hover, .mm-link.active {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}
.mm-link-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0,138,235,0.18); border: 1px solid rgba(0,138,235,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.22s;
}
.mm-link-ico svg { width: 17px; height: 17px; }
.mm-link:hover .mm-link-ico { background: rgba(0,138,235,0.32); }

.mm-link-club {
  color: var(--accent);
  margin-top: 4px;
}
.mm-link-club .mm-link-ico {
  background: rgba(255,200,61,0.12);
  border-color: rgba(255,200,61,0.3);
  color: var(--accent);
}
.mm-link-club:hover { background: rgba(255,200,61,0.08); color: var(--accent); }
.mm-link-club:hover .mm-link-ico { background: rgba(255,200,61,0.22); }

/* Divider */
.mm-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 8px 24px;
}

/* CTAs */
.mm-ctas {
  display: flex; flex-direction: column; gap: 10px;
  padding: 12px 24px;
}
.mm-cta-primary {
  display: block; text-align: center;
  background: var(--blue-1); color: var(--white);
  font-weight: 700; font-size: .92rem; font-family: 'Sora', sans-serif;
  padding: 14px; border-radius: 14px;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 4px 16px rgba(0,138,235,0.3);
}
.mm-cta-primary:hover { background: #0079d4; transform: translateY(-1px); }
.mm-cta-outline {
  display: block; text-align: center;
  background: transparent; color: var(--white);
  font-weight: 700; font-size: .92rem; font-family: 'Sora', sans-serif;
  padding: 13px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.22);
  transition: all 0.25s var(--ease-out);
}
.mm-cta-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

/* Social */
.mm-social {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mm-social-link {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease-spring);
}
.mm-social-link svg { width: 18px; height: 18px; }
.mm-social-link:hover {
  background: var(--accent); border-color: var(--accent);
  color: var(--blue-dark); transform: scale(1.1);
}

/* ===== SECTION BASE ===== */
section { position: relative; }
section:not(.hero) { padding: 100px 24px 0px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.eyebrow {
  color: var(--blue-1); font-weight: 700; font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 12px; font-family: 'Sora', sans-serif;
}
h2.title { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; color: var(--ink); line-height: 1.12; }
p.lead { font-size: 1rem; color: #4A5568; max-width: 580px; line-height: 1.68; }
.wave-wrap {
  position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 180px;
  overflow: hidden; pointer-events: none; line-height: 0;
}
.wave-wrap svg {
  position: absolute; bottom: 0; left: 0;
  width: 200%; height: 100%;
}
/* Hero wave gets a smooth slide transition on slide change */
.wave-wrap svg.hero-wave {
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Static waves (other sections) keep full width */
.wave-wrap svg.static-wave {
  width: 100%;
}

/* Inline wave SVGs placed directly inside sections */
svg.wave {
  position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 120px;
  display: block; pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100dvh;
  max-height: 700px;
  min-height: 500px;
  overflow: hidden;
  background: var(--off-white);
  padding: 0;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(72px); opacity: 0.55;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,138,235,0.2) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(1,48,98,0.14) 0%, transparent 70%);
  bottom: 60px; left: -60px;
}
.dots {
  position: absolute; inset: 0; opacity: .055;
  background-image: radial-gradient(circle, var(--blue-1) 1.5px, transparent 1.5px);
  background-size: 42px 42px;
}
.hero-split {
  max-width: 1220px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; z-index: 2;
}
.hero-copy { max-width: 520px; }
.eyebrow-badge {
  display: inline-flex; align-items: center;
  background: rgba(0,138,235,0.07); color: var(--blue-1);
  border: 1px solid rgba(0,138,235,0.18);
  border-radius: 30px; padding: 5px 14px;
  font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  margin-bottom: 22px; font-family: 'Sora', sans-serif;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800; line-height: 1.09; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.02rem; color: #5A6473; line-height: 1.68;
  margin-bottom: 34px; max-width: 430px;
}
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-1); color: var(--white);
  padding: 13px 22px; border-radius: 30px;
  font-weight: 700; font-size: .88rem;
  transition: all 0.32s var(--ease-spring);
  box-shadow: 0 6px 20px rgba(0,138,235,0.32);
}
.btn-primary svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease-spring); }
.btn-primary:hover { background: var(--blue-2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,138,235,0.38); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--ink); font-weight: 700; font-size: .88rem;
  padding: 13px 20px; border-radius: 30px;
  border: 1.5px solid rgba(14,27,46,0.14);
  transition: all 0.25s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--blue-1); color: var(--blue-1); background: rgba(0,138,235,0.04); }

.hero-stats { display: flex; align-items: center; gap: 0; }
.hero-stats .stat { text-align: center; padding: 0 22px; }
.hero-stats .stat:first-child { padding-left: 0; }
.hero-stats .stat b { display: block; font-size: 1.65rem; color: var(--blue-2); font-family: 'Sora', sans-serif; font-weight: 800; line-height: 1; }
.hero-stats .stat span { font-size: .73rem; color: #8A99AA; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; display: block; }
.stat-sep { width: 1px; height: 34px; background: rgba(14,27,46,0.1); flex-shrink: 0; }

/* HERO CAROUSEL */
.hero-carousel {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 80px 140px;
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1; transform: translateX(0);
  pointer-events: auto;
}
.hero-slide.exit-left  { opacity: 0; transform: translateX(-40px); }
.hero-slide.exit-right { opacity: 0; transform: translateX(40px); }

.hero-slide--light { background: var(--off-white); }
.hero-slide--dark  { background: linear-gradient(135deg, var(--blue-2) 0%, #010e20 100%); }
.hero-slide--blue  { background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 100%); }
.hero-slide--video { background: #000; padding: 0; align-items: stretch; }

/* Video slide */
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(1,15,40,0.82) 0%,
    rgba(1,15,40,0.55) 50%,
    rgba(1,15,40,0.2) 100%
  );
}
.hero-video-content {
  position: relative; z-index: 2;
  max-width: 580px; padding: 120px 80px 140px;
  align-self: center;
}

/* ===== HERO CLUB SLIDE ===== */
.hero-slide--club { }
.hero-club-bg {
  position: absolute; inset: 0;
}
.hero-club-bg > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-club-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,80,180,0.75) 0%, rgba(0,138,235,0.65) 100%);
}
.hero-club-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 56px;
  padding: 0 80px;
}
.hero-club-left {
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-60px);
}
.hero-club-logo {
  height: 300px; width: auto; object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
}
.hero-club-divider {
  width: 2px; height: 240px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6), transparent);
  flex-shrink: 0;
  opacity: 0;
}
.hero-club-right {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 20px;
  opacity: 0; transform: translateX(60px);
}
.hero-club-cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #013062;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-club-cta:hover {
  background: #008AEB;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,138,235,0.35);
}
.hero-club-tagline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white); line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-club-tagline strong {
  font-weight: 800; font-style: italic; display: block;
}

/* Contenido del slide Club: oculto hasta que el puzzle termina de ensamblarse */
.hero-club-left,
.hero-club-right,
.hero-club-divider {
  opacity: 0;
}

/* .hcp-reveal se añade por JS una vez que las piezas se desvanecen */
.hero-slide--club.hcp-reveal .hero-club-left {
  animation: prodCircleIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.0s both;
}
.hero-slide--club.hcp-reveal .hero-club-divider {
  animation: clubDividerIn 0.6s ease 0.3s both;
}
.hero-slide--club.hcp-reveal .hero-club-right {
  animation: prodContentIn 0.85s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
@keyframes clubDividerIn {
  from { opacity: 0; transform: scaleY(0); }
  to   { opacity: 1; transform: scaleY(1); }
}

/* ===== HERO PRODUCT SLIDES ===== */
.hero-product-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: 56px; padding: 0 100px;
  background: linear-gradient(to right, rgba(0,10,30,0.55) 0%, rgba(0,10,30,0.2) 100%);
}
.hero-product-overlay--reverse {
  flex-direction: row;
  background: linear-gradient(to left, rgba(0,10,30,0.55) 0%, rgba(0,10,30,0.2) 100%);
}

/* Imagen del dispositivo */
.hero-product-circle {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  opacity: 0; transform: translateX(-70px);
}
.hero-product-overlay--reverse .hero-product-circle {
  transform: translateX(70px);
}
.hero-product-circle img {
  height: 340px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* Texto */
.hero-product-content {
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0; transform: translateX(70px);
}
.hero-product-overlay--reverse .hero-product-content {
  transform: translateX(-70px);
}
.hero-product-name {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--white); line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero-product-name strong {
  font-weight: 800; display: inline;
}
.hero-product-name span, .hero-product-name :not(strong) {
  font-weight: 300;
}

/* Botón CTA */
.hero-product-cta {
  display: inline-flex; align-items: center; gap: 0;
  background: var(--blue-1); color: var(--white);
  border-radius: 40px; padding: 12px 28px;
  font-family: 'Sora', sans-serif; font-size: 1.1rem;
  box-shadow: 0 8px 28px rgba(0,138,235,0.45);
  width: fit-content;
  opacity: 0; transform: translateY(18px);
  transition: background 0.2s;
}
.hero-product-cta:hover { background: var(--blue-2); }
.hero-product-cta strong { font-weight: 700; }

/* Animaciones al entrar (cuando el slide es .active) */
.hero-slide.active .hero-product-circle {
  animation: prodCircleIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-slide.active .hero-product-overlay--reverse .hero-product-circle {
  animation: prodCircleInR 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-slide.active .hero-product-content {
  animation: prodContentIn 0.85s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.hero-slide.active .hero-product-overlay--reverse .hero-product-content {
  animation: prodContentInR 0.85s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.hero-slide.active .hero-product-cta {
  animation: prodCtaIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.65s both;
}

@keyframes prodCircleIn {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes prodCircleInR {
  from { opacity: 0; transform: translateX(70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes prodContentIn {
  from { opacity: 0; transform: translateX(70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes prodContentInR {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes prodCtaIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Flechas */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 20; cursor: pointer;
  transition: background 0.22s, transform 0.22s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.hero-arrow:hover { background: rgba(255,255,255,0.35); transform: translateY(-50%) scale(1.08); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* Dots */
.hero-dots {
  position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 20;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.hero-dot.active {
  background: var(--white); width: 28px; border-radius: 6px;
}

/* HERO VISUAL */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 40px;
}
.card-shell {
  position: relative;
  transition: transform 0.55s var(--ease-spring);
  display: inline-block;
}
.card-shell:hover { transform: translateY(-6px); }
.hero-device-img {
  max-height: 600px; width: auto; object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,138,235,0.3)) drop-shadow(0 6px 18px rgba(0,0,0,0.18));
  display: block;
}

/* Floating badges */
.float-badge {
  position: absolute; background: var(--white); border-radius: 40px;
  padding: 9px 18px;
  box-shadow: 0 8px 28px rgba(1,48,98,0.18), 0 0 0 1px rgba(1,48,98,0.06);
  display: flex; align-items: center; gap: 8px; font-size: .85rem;
  font-weight: 800; font-family: 'Sora', sans-serif; letter-spacing: -.01em;
  white-space: nowrap;
}
.float-badge-1 { top: 15%; right: -30px; color: var(--blue-1); animation: fbFloat1 4s ease-in-out infinite; }
.float-badge-2 { top: 50%; left: -30px; color: #00A86B; animation: fbFloat2 4s ease-in-out infinite; }
.float-badge-3 { bottom: 20%; right: 45px; color: var(--accent); animation: fbFloat1 4s ease-in-out infinite 1.5s; }
@keyframes fbFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes fbFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ===== NOSOTROS ===== */
/* ===== NOSOTROS ===== */
#nosotros {
  background: linear-gradient(to bottom, var(--blue-1) 0%, var(--blue-2) 60%, #010e20 100%);
  color: var(--white); padding-bottom: 0;
}

/* Sub-1: Quiénes somos */
.nosotros-who { padding: 0px; }
.nosotros-who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.nosotros-who-text .eyebrow { color: var(--accent); }
.nosotros-who-text h2.title { color: var(--white); margin-top: 10px; }
.nosotros-body { color: rgba(215,227,247,0.82); line-height: 1.78; margin-bottom: 20px; font-size: .95rem; }
.nosotros-founding {
  display: flex; align-items: center; gap: 16px; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
}
.nosotros-year {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.2rem;
  color: var(--accent); line-height: 1; flex-shrink: 0;
}
.nosotros-year-label { font-size: .82rem; color: rgba(215,227,247,0.6); line-height: 1.5; }
.nosotros-who-img {
  position: relative;
  overflow: visible;
}

/* === COMPOSICIÓN INTERACTIVA NOSOTROS === */
/* El contenedor mantiene el aspect-ratio de la composición original (Recurso 3: 4016×3711) */
.nosotros-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4016 / 3711;
}
/* Recurso 14 (equipo, 2438×2888) posicionado en la zona superior centrada  */
.nosotros-base-img {
  position: absolute;
  left: 21%;
  top: 1%;
  width: 59%;
  height: auto;
  z-index: 3;
}

/* Arco de iconos (Recurso 4) sobre la imagen base */
.nosotros-arc-img {
  position: absolute;
  left: 0;
  top: 36.5%;
  width: 100%;
  height: auto;
  cursor: pointer;
  z-index: 2;
  transform-origin: 50% 15%;
}
@keyframes arcSpin360 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.nosotros-arc-img.spinning {
  animation: arcSpin360 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TICKER PUBLICITARIO ===== */
.banner-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--blue-1);
  height: 104px;
}
.banner-group {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 56px;
  pointer-events: none;
}
.banner-group img {
  height: 72px;
  width: auto;
  display: block;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.banner-group img.bi-visible {
  opacity: 1;
  transform: translateX(0);
}
.banner-group img.bi-exit {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* Sub-2: Misión, Visión y Valores */
.nosotros-mvv { padding: 28px 0 220px; }

/* Separador decorativo entre subsecciones */
.nosotros-mv-divider {
  display: flex; align-items: center; gap: 12px; margin-bottom: 52px;
}
.nosotros-mv-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
}
.nosotros-mv-divider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255,200,61,0.5);
}

.nosotros-mv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.nosotros-mv-card {
  background: rgba(255,255,255,0.05); border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09); padding: 36px 32px;
  transition: background 0.25s, border-color 0.25s;
}
.nosotros-mv-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.16); }
.nosotros-mv-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,138,235,0.2); border: 1px solid rgba(0,138,235,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent);
}
.nosotros-mv-icon svg { width: 22px; height: 22px; }
.nosotros-mv-card h3 {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--white); margin-bottom: 14px;
}
.nosotros-mv-card p { color: rgba(215,227,247,0.72); font-size: .9rem; line-height: 1.75; margin: 0; }

/* ===== PRODUCTOS ===== */
#productos { background: var(--bg); padding-bottom: 220px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 48px;
}
/* Z-pattern bento: span 2+1 / 1+2 / 2+1 */
.cards-grid .card:nth-child(1) { grid-column: span 2; }
.cards-grid .card:nth-child(4) { grid-column: span 2; }
.cards-grid .card:nth-child(5) { grid-column: span 2; }

.cards-grid .card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid rgba(14,27,46,0.055);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.cards-grid .card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-1), rgba(0,138,235,0));
  opacity: 0; transition: opacity 0.3s;
}
.cards-grid .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-blue); border-color: transparent; }
.cards-grid .card:hover::before { opacity: 1; }
.cards-grid .card:active { transform: translateY(-2px) scale(0.99); }

.card .ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,138,235,0.22);
}
.card .ico svg { width: 20px; height: 20px; }
.card h3 { font-size: 1.02rem; margin-bottom: 9px; color: var(--ink); font-family: 'Sora', sans-serif; font-weight: 700; }
.card p { font-size: .86rem; color: #5A6473; line-height: 1.62; }

/* ===== ALIADOS ===== */
#aliados { background: var(--white); text-align: center; padding-bottom: 220px; }
#aliados h2.title { margin-bottom: 8px; }
.aliados-sub { font-weight: 700; color: var(--blue-2); font-size: .98rem; margin-bottom: 40px; }
.aliados-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.aliado-box {
  background: var(--off-white); border-radius: 14px; height: 86px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(14,27,46,0.07);
  transition: all 0.28s var(--ease-out); padding: 0 14px;
  overflow: hidden;
}
.aliado-box:hover { border-color: rgba(0,138,235,0.28); box-shadow: 0 4px 16px rgba(0,138,235,0.09); background: var(--white); }
.aliado-box svg { width: 100%; max-width: 130px; height: 40px; }

/* ===== SERVICIOS ===== */
#aliados { background: var(--white); padding-bottom: 220px; }

.svc-header { text-align: center; margin-bottom: 40px; }
.svc-header .eyebrow { margin-bottom: 10px; }
.svc-lead { margin: 0 auto; text-align: center; max-width: 640px; }

/* Filtros */
.svc-filters {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.svc-filter {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 30px;
  border: 1.5px solid rgba(14,27,46,0.12);
  font-weight: 700; font-size: .82rem; color: #5A6473;
  background: var(--white);
  transition: all 0.28s var(--ease-out); cursor: pointer;
  position: relative;
}
.svc-filter svg { width: 15px; height: 15px; flex-shrink: 0; }
.svc-filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg); color: #8A99AA;
  font-size: .68rem; font-weight: 700;
  transition: all 0.25s;
}
.svc-filter:hover { border-color: var(--blue-1); color: var(--blue-1); }
.svc-filter.active {
  background: var(--blue-1); border-color: var(--blue-1);
  color: var(--white); box-shadow: 0 4px 16px rgba(0,138,235,0.3);
}
.svc-filter.active .svc-filter-count {
  background: rgba(255,255,255,0.22); color: var(--white);
}

/* Grid de operadores */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 40px;
}
.svc-card {
  background: var(--off-white);
  border: 1px solid rgba(14,27,46,0.07);
  border-radius: 18px; padding: 22px 18px 18px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: transform 0.32s var(--ease-spring), box-shadow 0.32s, opacity 0.3s, scale 0.3s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }

/* ---- Flip card (La Mundial) ---- */
.svc-card--flip {
  perspective: 900px;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  transform: none !important;
}
.svc-card--flip:hover { transform: none !important; box-shadow: none !important; }
.svc-flip-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  border-radius: 18px;
}
.svc-card--flip:hover .svc-flip-inner { transform: rotateY(180deg); }
.svc-flip-front {
  position: relative;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 18px;
  padding: 22px 18px 18px;
  background: var(--off-white);
  border: 1px solid rgba(14,27,46,0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.svc-flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  border-radius: 18px;
  padding: 22px 18px 18px;
  background: #002B5B;
  border: 1px solid #002B5B;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.svc-flip-back {
  transform: rotateY(180deg);
  background: #002B5B;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.svc-flip-logo {
  width: 72px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.svc-flip-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(220,235,255,0.92);
  line-height: 1.65;
}
.svc-card.hidden { opacity: 0; scale: 0.94; pointer-events: none; display: none; }

.svc-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue-1); 
  border-radius: 18px 18px 0 0;
}
.svc-icon-wrap {
  width: 72px; height: 52px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon-wrap svg { width: 100%; height: 100%; }
.svc-icon-wrap img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.svc-name {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1rem; color: var(--ink); text-align: center;
  margin-bottom: 5px;
}
.svc-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--blue-1);
  text-align: center; margin-bottom: 10px;
}
.svc-services {
  font-size: .75rem; color: #8A99AA; text-align: center;
  line-height: 1.5; padding-top: 10px;
  border-top: 1px solid rgba(14,27,46,0.07);
}

/* Chips de dispositivos */
.svc-devices {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.svc-devices > p {
  font-size: .78rem; font-weight: 700; color: #8A99AA;
  text-transform: uppercase; letter-spacing: .08em;
}
.svc-device-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.svc-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, rgba(0,138,235,0.07), rgba(1,48,98,0.05));
  border: 1px solid rgba(0,138,235,0.18);
  border-radius: 30px; padding: 8px 16px;
  font-size: .78rem; font-weight: 700; color: var(--blue-2);
  font-family: 'Sora', sans-serif;
}
.svc-chip svg { width: 14px; height: 14px; }

/* ===== FAQ ===== */
/* ===== FAQ ===== */
#faq {
  background: #E7EEF7;
  padding-bottom: 220px;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative large "?" */
.faq-deco-q {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Sora', sans-serif;
  font-size: 28rem;
  font-weight: 900;
  color: rgba(0,138,235,0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.faq-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}

/* Header centrado */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,138,235,0.10);
  color: var(--blue-1);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.faq-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--blue-2);
  line-height: 1.18;
  margin-bottom: 36px;
}
.faq-heading-accent { color: var(--blue-1); }

/* Stats row */
.faq-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(0,138,235,0.14);
  border-radius: 100px;
  padding: 10px 32px;
  box-shadow: 0 4px 20px rgba(0,60,120,0.07);
}
.faq-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 28px;
}
.faq-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--blue-1); line-height: 1;
}
.faq-stat-label {
  font-size: 0.72rem; font-weight: 600; color: #7a8ba0;
  text-align: center; margin-top: 3px; line-height: 1.3;
}
.faq-stat-sep {
  width: 1px; height: 36px;
  background: rgba(0,138,235,0.15);
}

/* Main layout: accordion + sidebar */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* Accordion items — flat style */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(0,60,120,0.10);
  overflow: hidden;
  transition: background 0.2s;
}
.faq-item:first-child { border-top: 1px solid rgba(0,60,120,0.10); }
.faq-item:hover { background: rgba(0,138,235,0.03); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  width: 100%; padding: 20px 8px;
  text-align: left; background: transparent;
  position: relative;
}
.faq-q-main {
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.faq-q-text {
  font-weight: 700; font-size: 0.97rem; color: var(--blue-2); line-height: 1.4;
}
.faq-item.open .faq-q-text { color: var(--blue-1); }

/* Ghost number */
.faq-num-ghost {
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem; font-weight: 900;
  color: rgba(0,138,235,0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 64px; text-align: right;
  transition: color 0.25s;
}
.faq-item.open .faq-num-ghost { color: rgba(0,138,235,0.15); }

/* Category tags */
.faq-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
  width: fit-content;
}
.faq-tag--req  { background: rgba(0,138,235,0.10); color: #0059b3; }
.faq-tag--cost { background: rgba(16,185,129,0.10); color: #047857; }
.faq-tag--proc { background: rgba(139,92,246,0.10); color: #5b21b6; }
.faq-tag--loc  { background: rgba(245,158,11,0.12); color: #92400e; }

/* Plus icon */
.plus {
  width: 30px; height: 30px; border-radius: 50%;
  background: #e8f1fc; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s var(--ease-spring);
}
.plus svg { width: 14px; height: 14px; color: var(--blue-2); transition: transform 0.3s var(--ease-spring); stroke: currentColor; }
.faq-item.open .plus { background: var(--blue-1); }
.faq-item.open .plus svg { transform: rotate(45deg); color: var(--white); }

/* Answer */
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s var(--ease-out), padding 0.3s;
  color: #5A6473; font-size: .9rem; line-height: 1.68;
  padding: 0 8px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 8px 24px; }

.faq-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 4px;
}
.faq-col-title {
  display: block; font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: .84rem; color: var(--blue-2); margin-bottom: 10px;
}
.faq-list-items {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
}
.faq-list-items li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .86rem; color: #5A6473; line-height: 1.5;
}
.faq-list-items li::before {
  content: '';
  display: block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-1); flex-shrink: 0; margin-top: 6px;
}

/* Sidebar */
.faq-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }

.faq-sidebar-card {
  background: linear-gradient(135deg, #013062 0%, #008AEB 100%);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-sidebar-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.faq-sidebar-card strong {
  font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700;
  color: #fff; line-height: 1.3;
}
.faq-sidebar-card p {
  font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0;
}
.faq-wa-cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.85rem; font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  background: rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 8px 16px;
  transition: background 0.2s;
  width: fit-content;
}
.faq-wa-cta:hover { background: rgba(255,255,255,0.28); }

.faq-sidebar-topics {
  background: #fff;
  border: 1px solid rgba(0,138,235,0.14);
  border-radius: 16px;
  padding: 20px;
}
.faq-topics-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #7a8ba0; margin-bottom: 12px;
}
.faq-topics-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* Responsive */
@media (max-width: 960px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .faq-sidebar-card { flex: 1 1 280px; }
  .faq-sidebar-topics { flex: 1 1 200px; }
}
@media (max-width: 640px) {
  .faq-inner { padding: 56px 20px 48px; }
  .faq-stats { flex-wrap: wrap; border-radius: 16px; padding: 12px 16px; gap: 8px; }
  .faq-stat { padding: 0 12px; }
  .faq-stat-sep { display: none; }
  .faq-deco-q { font-size: 14rem; right: -20px; }
  .faq-cols { grid-template-columns: 1fr; gap: 16px; }
  .faq-sidebar { flex-direction: column; }
}

/* ===== CLUB ===== */
#club {
  background: linear-gradient(to bottom, var(--blue-1) 0%, var(--blue-2) 55%, #010e20 100%);
  color: var(--white); text-align: center; padding: 0; overflow: hidden;
  position: relative;
}

/* Hero Club - Puzzle pieces */
.hero-club-puzzle {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hcp-piece {
  position: absolute;
  width: 33.8%; /* 700px ÷ total puzzle width × container = scale factor */
  height: auto;
  opacity: 0;
  will-change: transform, opacity;
  user-select: none;
  /* left/top set by JS positionPieces() so they scale correctly with container width */
}

/* Slider */
.club-slider-wrap { position: relative; overflow: hidden; }
.club-slider { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.club-slide {
  flex: 0 0 100%; min-width: 100%;
  padding: 64px 24px 90px;
  display: flex; align-items: center; justify-content: center;
}
.club-slide-inner { max-width: 900px; width: 100%; margin: 0 auto; }

/* Slide 1: Logo + intro */
.club-logo-wrap { display: flex; justify-content: center; margin-bottom: 52px; }
.club-logo-img {
  max-height: 300px; width: auto; object-fit: contain;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,0.35));
}
.club-intro-cols {
  display: grid; grid-template-columns: 1fr 2px 1fr; gap: 44px;
  align-items: center;
}
.club-intro-divider { background: rgba(255,255,255,0.2); height: 110px; border-radius: 2px; }
.club-intro-left p { color: rgba(215,227,247,0.85); font-size: 1rem; line-height: 1.75; text-align: center; }
.club-intro-highlight {
  font-size: 1.5rem; font-weight: 700; font-style: italic;
  color: var(--white); line-height: 1.3; font-family: 'Sora', sans-serif;
}

/* Slide 2: Partners + benefits */
.club-benefits-intro {
  font-size: 1rem; line-height: 1.75; color: rgba(215,227,247,0.85);
  margin-bottom: 44px; max-width: 680px; margin-left: auto; margin-right: auto;
}
.club-partners { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.club-partner-card {
  background: var(--white); border-radius: 18px;
  width: 240px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.2); flex-shrink: 0;
  display: flex; flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s;
}
.club-partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.3);
}
.club-partner-top {
  width: 100%; height: 90px; display: flex; align-items: center; justify-content: center;
  padding: 16px 24px; background: #fff;
}
.club-partner-logo { width: 160px; height: 56px; object-fit: contain; object-position: center; }
.club-partner-body { flex: 1; width: 100%; background: #D6E8F7; padding: 16px 20px; }
#club .club-partner-body p {
  font-size: .85rem; color: var(--blue-2); font-weight: 600;
  line-height: 1.6; text-align: center; margin: 0;
}
.club-benefit-list {
  list-style: none; max-width: 560px;
  margin: 0 auto 24px; display: flex; flex-direction: column; gap: 10px;
}
.club-benefit-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; color: rgba(215,227,247,0.88); line-height: 1.6; text-align: left;
}
.club-benefit-list li::before {
  content: '★'; color: var(--accent); font-size: .65rem; flex-shrink: 0; margin-top: 5px;
}
.club-no-te-quedes {
  font-size: 1.2rem; font-weight: 700; font-style: italic;
  color: var(--accent); font-family: 'Sora', sans-serif; margin-top: 6px;
}

/* Slide 3: How to start */
.club-how-title {
  font-size: 2rem; font-weight: 700; font-style: italic;
  color: var(--white); font-family: 'Sora', sans-serif; margin-bottom: 14px; line-height: 1.2;
}
.club-how-sub { font-size: .97rem; color: rgba(215,227,247,0.78); margin-bottom: 12px; }
.club-how-desc {
  font-size: .97rem; color: rgba(215,227,247,0.85); margin-bottom: 40px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.club-req-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.club-req-badge {
  background: var(--white); border-radius: 18px;
  width: 280px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s;
}
.club-req-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.3);
}
.club-req-top {
  padding: 20px 24px 16px; font-size: 1.05rem; font-weight: 700;
  color: var(--blue-1); font-family: 'Sora', sans-serif; font-style: italic;
  text-align: center; border-bottom: 2px solid #D6E8F7;
}
.club-req-body { flex: 1; background: #D6E8F7; padding: 16px 20px; }
#club .club-req-body p {
  font-size: .85rem; color: var(--blue-2); font-weight: 600;
  line-height: 1.6; text-align: center; margin: 0;
}
.club-how-note {
  font-size: .88rem; color: rgba(215,227,247,0.78); line-height: 1.7;
  max-width: 700px; margin: 0 auto;
  background: rgba(255,255,255,0.07); border-radius: 14px; padding: 22px 30px;
  border: 1px solid rgba(255,255,255,0.12);
}
.club-how-note b { color: var(--white); }

/* Arrows */
.club-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.club-arrow:hover { background: rgba(255,255,255,0.22); }
.club-arrow svg { width: 20px; height: 20px; }
.club-arrow-prev { left: 20px; }
.club-arrow-next { right: 20px; }

/* Dots */
.club-dots { display: flex; justify-content: center; gap: 8px; padding-bottom: 48px; }
.club-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.club-dot.active { background: var(--white); transform: scale(1.35); }

/* ===== FOOTER ===== */
footer {
  background: #011930;
  color: rgba(220,230,245,0.80);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  line-height: 1.75;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
/* Location slider */
.loc-slider { position: relative; overflow: hidden; }
.loc-slide {
  display: none;
  animation: locFadeIn 0.35s ease;
}
.loc-slide.active { display: block; }
@keyframes locFadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.loc-slide-header { margin-bottom: 10px; }
.loc-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,138,235,0.18); color: #7dd3fc;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.loc-controls {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
}
.loc-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(220,235,255,0.8);
  transition: background 0.2s;
}
.loc-arrow:hover { background: rgba(0,138,235,0.30); }
.loc-dots { display: flex; gap: 6px; flex: 1; justify-content: center; }
.loc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.25s, transform 0.25s;
}
.loc-dot.active { background: #008AEB; transform: scale(1.3); }

.footer-address {
  font-style: italic;
  margin-bottom: 14px;
  color: rgba(220,230,245,0.75);
}
.footer-map {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  border: none;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-detail {
  margin: 4px 0;
}
.footer-detail b {
  color: #fff;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links a {
  color: rgba(220,230,245,0.80);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.78rem;
  color: rgba(220,230,245,0.50);
}
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px 36px; }
}

/* ===== MODAL LCFT ===== */
.lcft-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(1,25,48,0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 32px 20px;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s;
}
.lcft-overlay.open { opacity: 1; pointer-events: all; }

.lcft-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%; max-width: 860px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
.lcft-overlay.open .lcft-modal { transform: translateY(0); }

.lcft-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  background: linear-gradient(135deg, #013062 0%, #008AEB 100%);
  padding: 28px 32px 24px;
}
.lcft-modal-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(180,220,255,0.85);
  margin-bottom: 6px;
}
.lcft-modal-title {
  font-family: 'Poppins', sans-serif; font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 700; color: #fff; line-height: 1.35; max-width: 680px;
}
.lcft-modal-close {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.2s;
}
.lcft-modal-close:hover { background: rgba(255,255,255,0.28); }
.lcft-modal-close svg { width: 18px; height: 18px; }

.lcft-modal-body {
  padding: 32px 36px 40px;
  display: flex; flex-direction: column; gap: 32px;
  font-family: 'Poppins', sans-serif;
}

.lcft-intro {
  font-size: 0.875rem; line-height: 1.75; color: #445;
  padding: 18px 20px; background: #f5f8fe;
  border-left: 4px solid #008AEB; border-radius: 0 10px 10px 0;
}
.lcft-commitment {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(0,138,235,0.07); border: 1px solid rgba(0,138,235,0.2);
  border-radius: 14px; padding: 18px 22px;
}
.lcft-commitment-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: #008AEB; display: flex; align-items: center; justify-content: center; color: #fff;
}
.lcft-commitment strong { display: block; color: #013062; font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.lcft-commitment p { font-size: 0.825rem; color: #556; margin: 0; line-height: 1.6; }

.lcft-section { display: flex; flex-direction: column; gap: 14px; }
.lcft-section-title {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
  color: #013062; border-bottom: 2px solid #e4edf8; padding-bottom: 10px;
}
.lcft-section-sub { font-size: 0.825rem; color: #667; }

.lcft-legal-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  counter-reset: legal;
}
.lcft-legal-list li {
  counter-increment: legal;
  display: flex; gap: 12px;
  font-size: 0.8rem; color: #445; line-height: 1.65;
  padding: 10px 14px; background: #f9fbff;
  border: 1px solid #e4edf8; border-radius: 8px;
}
.lcft-legal-list li::before {
  content: counter(legal);
  flex-shrink: 0; width: 22px; height: 22px;
  background: #008AEB; color: #fff; border-radius: 50%;
  font-size: 0.68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* Definición blocks */
.lcft-def-block {
  border: 1px solid #e4edf8; border-radius: 16px;
  overflow: hidden;
}
.lcft-def-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
}
.lcft-def-header--lc  { background: linear-gradient(90deg, #013062, #0059b3); }
.lcft-def-header--ft  { background: linear-gradient(90deg, #0059b3, #008AEB); }
.lcft-def-header--fp  { background: linear-gradient(90deg, #013062, #005fa3); }
.lcft-def-header h4 { font-family: 'Poppins', sans-serif; color: #fff; font-size: 0.95rem; font-weight: 700; margin: 0; }
.lcft-def-tag {
  background: rgba(255,255,255,0.22); color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: 100px;
}
.lcft-def-block > p, .lcft-law-ref {
  margin: 0; padding: 14px 20px;
  font-size: 0.825rem; color: #445; line-height: 1.7;
}
.lcft-def-block > p em {
  font-size: 0.72rem; color: #7a8ba0; font-style: italic;
  display: inline-block; margin-top: 4px;
}
.lcft-law-ref {
  background: #f5f8fe; border-top: 1px solid #e4edf8;
  font-style: italic; color: #667; font-size: 0.725rem;
}
.lcft-phases-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 0.75rem; color: #008AEB;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0 20px 4px;
}

/* Phase cards */
.lcft-phases {
  display: flex; align-items: stretch; gap: 0;
  padding: 0 20px 16px; flex-wrap: wrap;
}
.lcft-phases--4 { gap: 0; }
.lcft-phase {
  flex: 1; min-width: 120px;
  background: #f9fbff; border: 1px solid #e4edf8; border-radius: 12px;
  padding: 14px 12px 12px; display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
.lcft-phase-arrow {
  display: flex; align-items: center; color: #008AEB;
  font-size: 1.4rem; padding: 0 6px; flex-shrink: 0;
}
.lcft-phase-badge {
  display: flex; flex-direction: column; align-items: center;
  border-radius: 10px; padding: 6px 10px; margin: 0 auto 6px;
  width: fit-content; min-width: 52px;
}
.lcft-phase-badge span { font-family: 'Poppins', sans-serif; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.85); }
.lcft-phase-badge strong { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.lcft-phase-badge--1 { background: linear-gradient(135deg, #013062, #0059b3); }
.lcft-phase-badge--2 { background: linear-gradient(135deg, #0059b3, #008AEB); }
.lcft-phase-badge--3 { background: linear-gradient(135deg, #008AEB, #00b4d8); }
.lcft-phase-name { font-weight: 600; color: #008AEB; font-size: 0.8rem; }
.lcft-phase p { font-size: 0.75rem; color: #556; line-height: 1.55; margin: 0; }

/* Policy cards */
.lcft-policy-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.lcft-policy-card {
  background: #f9fbff; border: 1px solid #e4edf8; border-radius: 14px;
  padding: 18px 16px; display: flex; flex-direction: column; gap: 8px;
}
.lcft-policy-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,138,235,0.10); color: #008AEB;
  display: flex; align-items: center; justify-content: center;
}
.lcft-policy-card strong { font-size: 0.825rem; font-weight: 600; color: #013062; }
.lcft-policy-card p { font-size: 0.775rem; color: #556; line-height: 1.6; margin: 0; }

.lcft-check-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.lcft-check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.825rem; color: #445; line-height: 1.6;
}
.lcft-check-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 20px; height: 20px; background: rgba(0,138,235,0.12);
  color: #008AEB; border-radius: 50%; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}

/* Tips */
.lcft-tips .lcft-section-title { color: #013062; }
.lcft-tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lcft-tip {
  display: flex; gap: 12px; align-items: flex-start;
  background: #f9fbff; border: 1px solid #e4edf8;
  border-radius: 10px; padding: 12px 14px;
}
.lcft-tip span {
  flex-shrink: 0; font-size: 0.65rem; font-weight: 700; color: #008AEB;
  background: rgba(0,138,235,0.10); padding: 2px 7px; border-radius: 100px;
}
.lcft-tip p { font-size: 0.8rem; color: #445; line-height: 1.6; margin: 0; }
.lcft-tip a { color: #008AEB; font-weight: 600; text-decoration: none; }

@media (max-width: 640px) {
  .lcft-modal-body { padding: 20px; }
  .lcft-policy-cards { grid-template-columns: 1fr; }
  .lcft-tips-grid { grid-template-columns: 1fr; }
  .lcft-phases { flex-direction: column; }
  .lcft-phase-arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* ===== SOCIAL RAIL ===== */
.social-rail {
  position: fixed; left: 20px; bottom: 10%;
  display: flex; flex-direction: column; gap: 10px; z-index: 90;
}
.social-rail a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-2); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(1,48,98,0.22);
  transition: all 0.26s var(--ease-spring);
}
.social-rail a svg { width: 17px; height: 17px; }
.social-rail a:hover { background: var(--accent); color: var(--blue-dark); transform: scale(1.1) translateX(3px); box-shadow: 0 6px 18px rgba(255,200,61,0.3); }

/* ===== CHAT FLOAT ===== */
.chat-float-wrap {
  position: fixed; right: 10px; bottom: 20px; z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}

/* Speech bubble */
.chat-float-bubble {
  background: #fff;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 8px 32px rgba(1,48,98,0.18);
  padding: 14px 16px 12px;
  max-width: 210px;
  position: relative;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  margin-right: 8px;
}
.chat-float-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px; right: 16px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 10px solid #fff;
  filter: drop-shadow(0 2px 2px rgba(1,48,98,0.10));
}
.chat-float-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.chat-float-bubble p {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: #013062; line-height: 1.45; margin: 0 0 8px;
}
.chat-bubble-cta {
  font-size: 0.75rem; font-weight: 700;
  color: #008AEB; display: block;
}
.chat-bubble-close {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #f0f4fa; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #667; transition: background 0.2s;
}
.chat-bubble-close:hover { background: #e0e8f4; }

/* Button */
.whats-float {
  position: relative;
  width: 120px; height: auto;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 6px 18px rgba(1,48,98,0.28));
  transition: all 0.3s var(--ease-spring);
  text-decoration: none;
}
.whats-float-logo { width: 100%; height: auto; display: block; }
.whats-float:hover,
.whats-float.respond-hover { transform: scale(1.1); filter: drop-shadow(0 10px 24px rgba(1,48,98,0.4)); }
.whats-float:active { transform: scale(0.96); }


/* Pulse ring */
.chat-float-pulse {
  position: absolute; top: 50%; left: 50%;
  width: 64px; height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0,138,235,0.25);
  animation: chatPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes chatPulse {
  0%   { transform: translate(-50%,-50%) scale(0.7); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(1.7); opacity: 0; }
}

/* Badge */
.chat-float-badge {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: #008AEB;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px 3px 7px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 2px 8px rgba(0,138,235,0.4);
  white-space: nowrap;
}

/* ===== EQUIPOS POS ===== */
#productos { padding-top: 60px; }
.equipos-header { margin-top: 0; }
.equipos-header .eyebrow { margin-bottom: 10px; }

/* Productos slider */
.equipos-slider-wrap {
  position: relative; margin-top: 40px;
  padding: 0 56px;
}
.equipos-track-clip {
  overflow: hidden;
}
.equipos-track {
  display: flex; gap: 22px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.equipos-track .equipo-card {
  flex: 0 0 calc((100% - 44px) / 3);
}
.eq-arrow {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(14,27,46,0.12);
  color: var(--blue-2); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: background 0.2s, box-shadow 0.2s; z-index: 2;
}
.eq-arrow:hover { background: var(--blue-1); color: var(--white); box-shadow: 0 6px 20px rgba(0,138,235,0.3); }
.eq-arrow:disabled { opacity: 0.35; pointer-events: none; }
.eq-arrow svg { width: 18px; height: 18px; }
.eq-arrow-prev { left: 4px; }
.eq-arrow-next { right: 4px; }

.equipo-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(14,27,46,0.07);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.38s var(--ease-spring), box-shadow 0.38s, border-color 0.25s;
  position: relative;
}
.equipo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-1), var(--accent));
  opacity: 0; transition: opacity 0.3s;
}
.equipo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: transparent; }
.equipo-card:hover::before { opacity: 1; }

.equipo-img-wrap {
  position: relative;
  background: linear-gradient(145deg, #f0f5fc, #e4edf8);
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.equipo-img-wrap img {
  max-height: 220px; max-width: 85%;
  object-fit: contain;
  transition: transform 0.55s var(--ease-spring);
  filter: drop-shadow(0 12px 24px rgba(1,48,98,0.14));
}
.equipo-img-wrap img.equipo-img-sm {
  max-height: 160px; max-width: 65%;
}
.equipo-card:hover .equipo-img-wrap img { transform: scale(1.05) translateY(-4px); }

.equipo-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,138,235,0.1);
  color: var(--blue-1);
  border: 1px solid rgba(0,138,235,0.22);
  border-radius: 20px; padding: 4px 12px;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; font-family: 'Sora', sans-serif;
}

.equipo-info {
  padding: 24px 22px 26px;
  display: flex; flex-direction: column; flex: 1;
}
.equipo-info h3 {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1.28rem; color: var(--ink);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.equipo-info p {
  font-size: .86rem; color: #5A6473; line-height: 1.65;
  flex: 1; margin-bottom: 20px;
}
.equipo-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  color: var(--white); font-weight: 700; font-size: .82rem;
  padding: 11px 18px; border-radius: 30px;
  align-self: flex-start;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 14px rgba(0,138,235,0.28);
}
.equipo-btn svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease-spring); }
.equipo-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,138,235,0.38); }
.equipo-btn:hover svg { transform: translateX(3px); }

/* ===== TARJETA KIOSCO DESTACADA ===== */
.equipo-card--kiosco::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--blue-1), var(--accent), var(--blue-1));
  background-size: 200%;
  animation: kioscoShine 3s linear infinite;
}
@keyframes kioscoShine {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}
.equipo-img-wrap--kiosco {
  height: 260px;
}
.equipo-img-wrap--kiosco img {
  max-height: 100%; max-width: 100%;
  object-fit: cover; width: 100%;
}
.kiosco-badge-card {
  position: absolute; bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,200,61,0.92); border-radius: 20px;
  padding: 4px 10px; font-size: .65rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  font-family: 'Sora', sans-serif; color: var(--blue-dark);
}

/* ===== MODAL PRODUCTO ===== */
.prod-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(1, 25, 55, 0.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.32s var(--ease-out);
}
.prod-overlay.open {
  opacity: 1; pointer-events: auto;
}
.prod-modal {
  background: var(--white);
  border-radius: 24px;
  width: 100%; max-width: 960px; max-height: 90vh;
  overflow: hidden; overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.38s var(--ease-spring);
  box-shadow: 0 40px 100px rgba(1,48,98,0.28);
}
.prod-overlay.open .prod-modal {
  transform: translateY(0) scale(1);
}
.prod-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s var(--ease-out);
}
.prod-modal-close:hover { background: var(--blue-1); color: var(--white); transform: scale(1.08); }
.prod-modal-close svg { width: 18px; height: 18px; }

.prod-modal-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

/* Gallery */
.prod-gallery {
  background: linear-gradient(145deg, #eef4fb, #dde8f5);
  display: flex; flex-direction: column;
  padding: 28px 20px 20px;
  gap: 14px;
}
.prod-gallery-main {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
#galMainImg {
  max-height: 300px; max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(1,48,98,0.18));
  transition: opacity 0.22s ease, transform 0.22s var(--ease-out);
}
#galMainImg.switching { opacity: 0; transform: scale(0.95); }

.gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); color: var(--blue-2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(1,48,98,0.14);
  transition: all 0.22s var(--ease-out); z-index: 2;
}
.gal-arrow:hover { background: var(--blue-1); color: var(--white); transform: translateY(-50%) scale(1.08); }
.gal-arrow svg { width: 16px; height: 16px; }
.gal-prev { left: 0; }
.gal-next { right: 0; }

.prod-thumbs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.prod-thumb {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--white); border: 2px solid transparent;
  overflow: hidden; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.prod-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.prod-thumb.active { border-color: var(--blue-1); transform: scale(1.06); }
.prod-thumb:hover:not(.active) { border-color: rgba(0,138,235,0.4); }

/* Info panel */
.prod-modal-info {
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 0;
  overflow-y: auto;
}
.prod-modal-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--blue-1);
  font-family: 'Sora', sans-serif; margin-bottom: 8px;
}
.prod-modal-name {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 2.2rem; color: var(--ink);
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 14px;
}
.prod-modal-desc {
  font-size: .88rem; color: #5A6473; line-height: 1.68;
  margin-bottom: 24px;
}

/* Specs grid */
.prod-specs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 28px;
}
.prod-spec {
  display: flex; align-items: center; gap: 10px;
  background: var(--off-white);
  border: 1px solid rgba(14,27,46,0.07);
  border-radius: 12px; padding: 10px 12px;
}
.prod-spec-ico {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.prod-spec-ico svg { width: 16px; height: 16px; }
.prod-spec-text { display: flex; flex-direction: column; }
.prod-spec-text b { font-size: .78rem; color: var(--ink); font-weight: 700; line-height: 1.2; }
.prod-spec-text span { font-size: .7rem; color: #8A99AA; margin-top: 1px; }

/* Specs table (for Sunmi K2 detailed specs) */
.prod-specs-table {
  width: 100%; border-collapse: collapse; margin-bottom: 28px;
  font-size: .82rem;
}
.prod-specs-table tr { border-bottom: 1px solid rgba(14,27,46,0.07); }
.prod-specs-table tr:last-child { border-bottom: none; }
.prod-specs-table td { padding: 8px 6px; vertical-align: top; }
.prod-specs-table td:first-child {
  font-weight: 700; color: var(--blue-2); width: 42%;
  font-family: 'Sora', sans-serif; font-size: .76rem;
}
.prod-specs-table td:last-child { color: #5A6473; line-height: 1.5; }

.prod-modal-cta { align-self: flex-start; margin-top: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid .card:nth-child(n) { grid-column: span 1; }
  .cards-grid .card:nth-child(1) { grid-column: span 2; }
  .aliados-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .nosotros-who-grid { grid-template-columns: 1fr; gap: 40px; }
  .nosotros-who-img { order: -1; max-height: none; overflow: visible; }
  .nosotros-img-wrap { aspect-ratio: 4016 / 3711; }
  .nosotros-mv-grid { grid-template-columns: 1fr; }
  .equipos-track .equipo-card { flex: 0 0 calc((100% - 22px) / 2); }
  .eq-arrow-prev { left: 0; }
  .eq-arrow-next { right: 0; }
  .burger { display: flex; }
  nav.menu { display: none; }
  .nav-actions .btn:not(.btn.accent) { display: none; }
  .social-rail { display: none; }
}

@media (max-width: 820px) {
  .prod-modal-inner { grid-template-columns: 1fr; }
  .prod-gallery { padding: 20px 16px 14px; }
  .prod-gallery-main { min-height: 220px; }
  #galMainImg { max-height: 200px; }
  .prod-modal-info { padding: 24px 20px 24px; }
  .prod-modal-name { font-size: 1.7rem; }
  .prod-specs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .btn.accent { display: none; }
  section:not(.hero) { padding: 70px 20px; }
  section:not(.hero)[id] { padding-bottom: 140px; }
  h2.title { font-size: 2rem; }
  .wave-wrap { height: 100px; }
  .hero { min-height: 480px; }
  .hero-slide { padding: 100px 24px 120px; }
  .hero-split { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero-copy { max-width: none; }
  .hero-copy h1 { font-size: 2.1rem; }
  .hero-sub { max-width: none; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stats .stat:first-child { padding-left: 22px; }
  .hero-visual { padding: 32px 40px; }
  .card-shell { transform: none; }
  .card-shell:hover { transform: translateY(-4px); }
  .float-badge-1 { right: -10px; }
  .float-badge-2 { left: -10px; }
  .float-badge-3 { right: -10px; }
}

@media (max-width: 600px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-filters { gap: 7px; }
  .svc-filter { padding: 8px 12px; font-size: .76rem; }
  .equipos-grid { grid-template-columns: 1fr; }
  .equipos-track .equipo-card { flex: 0 0 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .card:nth-child(n) { grid-column: span 1; }
  .aliados-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: 1fr; }
  header { padding: 12px 16px; }
  .nav-wrap { padding: 10px 14px; border-radius: 50px; }
  .card-core { padding: 40px 36px; }
  .hero-logo { font-size: 2.4rem; }
  .hero-stats .stat b { font-size: 1.45rem; }
  .nosotros-who-grid { gap: 32px; }
}
