/* =====================================================================
   LIGHTHOUSE CLUB — web-faro3d
   Premium static site · faro 3D de fondo · ES/EN/DE
   ===================================================================== */

/* ----------------------------- TOKENS ----------------------------- */
:root {
  /* Paleta de marca */
  --indigo:  #2e1065;  --indigo2: #4c1d95;
  --violet:  #7c3aed;  --violet2: #8b5cf6;
  --magenta: #db2777;  --pink:    #ff4d8d;
  --coral:   #ff7a3c;  --coral2:  #ff9e4d;
  --gold:    #ffc21e;  --gold2:   #ffd54a;  --amber: #f7b733;
  --cyan:    #29c5e6;  --cyan2:   #38e1ff;
  --cream:   #f6f2ea;  --white:   #ffffff;
  --green:   #2fbf5f;

  /* Superficie */
  --bg:      #0a0418;
  --bg2:     #140626;
  --text:    #f4eeff;
  --muted:   #c6b9e4;
  --line:    rgba(255,255,255,.10);

  /* Cristal */
  --glass:      rgba(30,14,58,.42);
  --glass-strong: rgba(24,10,48,.66);
  --glass-brd:  rgba(255,255,255,.12);

  /* Degradados */
  --grad-primary: linear-gradient(135deg, var(--gold2) 0%, var(--coral) 100%);
  --grad-brand:   linear-gradient(115deg, #ff5c96 0%, #ff9e4d 42%, #a78bfa 100%);
  --grad-gold:    linear-gradient(120deg, #ffe08a, #ffc21e 45%, #ff8a3c);

  --shadow:    0 24px 60px -24px rgba(0,0,0,.7);
  --shadow-sm: 0 12px 30px -16px rgba(0,0,0,.6);
  --glow-gold: 0 0 40px -6px rgba(255,194,30,.55);

  --radius:  22px;
  --radius-sm: 14px;
  --ease:    cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --maxw: 1200px;
  --nav-h: 76px;
}

/* ----------------------------- RESET ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: clip;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; line-height: 1.08; font-weight: 700; letter-spacing: -.01em; }
::selection { background: rgba(255,138,60,.35); color: #fff; }

.container { width: min(92%, var(--maxw)); margin-inline: auto; }

/* ------------------------- ESCENA 3D FONDO ------------------------ */
.scene-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 62% 22%, rgba(255,180,90,.10), transparent 55%),
    linear-gradient(180deg, #34146e 0%, #641a86 32%, #c23a7e 58%, #ff7a4d 82%, #ffb26b 100%);
}
.scene-stage canvas { width: 100% !important; height: 100% !important; display: block; }
.scene-fallback {
  position: absolute; inset: 0;
  background: url('../assets/img/fondo-menu.webp') center/cover no-repeat;
  opacity: 0;
  transition: opacity .8s ease;
}
.scene-stage.no-webgl .scene-fallback { opacity: 1; animation: slowZoom 28s ease-in-out infinite alternate; }
.scene-stage.no-webgl canvas { display: none; }
@keyframes slowZoom { from { transform: scale(1.02); } to { transform: scale(1.12); } }
/* Velo para legibilidad del contenido, sin tapar el faro */
.scene-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(140% 80% at 50% 0%, transparent 40%, rgba(10,4,24,.28) 100%),
    linear-gradient(180deg, transparent 42%, rgba(10,4,24,.30) 100%);
  pointer-events: none;
}

/* Capa de contenido: deja ver el faro por detrás con degradado translúcido */
main {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(20,8,44,0) 0%,
    rgba(17,7,38,.72) 7%,
    rgba(13,5,30,.90) 26%,
    rgba(11,4,26,.94) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ------------------------------ BOTONES --------------------------- */
.btn {
  --bpx: 1.35rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .82rem var(--bpx);
  border-radius: 100px;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  position: relative; isolation: isolate;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s;
  will-change: transform;
}
.btn-primary {
  background: var(--grad-primary); color: #2a1200;
  box-shadow: 0 10px 26px -10px rgba(255,138,60,.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(255,150,60,.85), var(--glow-gold); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.4); color: #fff;
  background: rgba(255,255,255,.05); backdrop-filter: blur(6px);
}
.btn-outline:hover { transform: translateY(-3px); border-color: var(--cyan2); box-shadow: 0 0 30px -6px rgba(56,225,255,.5); }
.btn-ghost { color: var(--muted); border: 1.5px solid var(--line); }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-sm { padding: .58rem 1.05rem; font-size: .86rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ------------------------------ TIPOS ----------------------------- */
.eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold2);
  padding: .3rem .8rem; margin-bottom: 1.1rem;
  border: 1px solid rgba(255,194,30,.28);
  border-radius: 100px;
  background: rgba(255,194,30,.06);
}
.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); text-align: center; }
.section-head h2, .about-text h2 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); margin-bottom: 1rem; text-wrap: balance; }
.section-sub { color: var(--muted); font-size: 1.06rem; max-width: 60ch; margin-inline: auto; }

/* ------------------------------ REVEAL ---------------------------- */
/* Solo se ocultan si hay JS (html.js); sin JS todo es visible. */
html.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
html.js .reveal.in { opacity: 1; transform: none; }

/* Transición suave al cambiar de idioma */
[data-i18n], [data-i18n-ph] { transition: opacity .22s ease; }
body.lang-switching [data-i18n] { opacity: 0; }
.cards .card:nth-child(2), .steps .step:nth-child(2), .values .value:nth-child(2) { transition-delay: .08s; }
.cards .card:nth-child(3), .steps .step:nth-child(3), .values .value:nth-child(3) { transition-delay: .16s; }
.cards .card:nth-child(4), .steps .step:nth-child(4), .values .value:nth-child(4) { transition-delay: .24s; }
.cards .card:nth-child(5) { transition-delay: .32s; }
.cards .card:nth-child(6) { transition-delay: .40s; }

/* ------------------------------ LOADER ---------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 3000;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 30%, #3a1570 0%, #180a34 60%, #0a0418 100%);
  transition: opacity .7s ease, visibility .7s ease;
}
.loader.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: grid; justify-items: center; gap: 1.4rem; text-align: center; }
.loader-logo { width: 110px; height: 110px; border-radius: 50%; filter: drop-shadow(0 0 34px rgba(255,194,30,.6)); animation: beacon 2.4s ease-in-out infinite; }
@keyframes beacon { 0%,100% { filter: drop-shadow(0 0 20px rgba(255,194,30,.35)); transform: scale(.98); } 50% { filter: drop-shadow(0 0 46px rgba(255,194,30,.8)); transform: scale(1.02); } }
.loader-bar { width: 190px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.14); overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 0%; border-radius: 4px; background: var(--grad-gold); transition: width .3s ease; }
.loader-tag { color: var(--muted); font-size: .84rem; letter-spacing: .16em; text-transform: uppercase; }
/* Red de seguridad: se oculta solo a los 5s aunque falle el JS */
.loader { animation: loaderSafety .01s 5s forwards; }
@keyframes loaderSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ------------------------------ AGE GATE -------------------------- */
.age-gate {
  position: fixed; inset: 0; z-index: 2500;
  display: grid; place-items: center; padding: 1.5rem;
  background: radial-gradient(120% 120% at 50% 20%, rgba(58,21,112,.7), rgba(8,4,20,.92));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: opacity .5s ease, visibility .5s ease;
}
.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-card {
  width: min(460px, 100%); text-align: center;
  padding: 2.6rem 2rem 2rem;
  background: var(--glass-strong);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: gateUp .6s var(--ease-out) both;
}
@keyframes gateUp { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.age-logo { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 1.2rem; filter: drop-shadow(0 0 26px rgba(255,194,30,.55)); }
.age-card h2 { font-size: 1.6rem; margin-bottom: .8rem; }
.age-card p { color: var(--muted); font-size: .98rem; margin-bottom: 1.6rem; }
.age-actions { display: grid; gap: .7rem; margin-bottom: 1.1rem; }
.age-note { font-size: .78rem; color: rgba(198,185,228,.7); }

/* ------------------------------- NAV ------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height .35s var(--ease), background .35s, backdrop-filter .35s, box-shadow .35s;
}
.nav.scrolled {
  height: 62px;
  background: rgba(12,5,28,.72);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.7);
}
.nav-inner { width: min(94%, 1320px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; filter: drop-shadow(0 0 14px rgba(255,194,30,.5)); }
.brand-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.brand-text span { color: var(--gold2); }
.nav-right { display: flex; align-items: center; gap: .6rem; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links > a:not(.btn) {
  padding: .5rem .7rem; border-radius: 10px; font-size: .92rem; font-weight: 500; color: var(--muted);
  position: relative; transition: color .25s;
}
.nav-links > a:not(.btn)::after {
  content: ''; position: absolute; left: .7rem; right: .7rem; bottom: .32rem; height: 2px;
  background: var(--grad-primary); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.nav-links > a:not(.btn):hover { color: #fff; }
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); }
.nav-cta { margin-left: .4rem; }

/* Selector idioma */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: .35rem;
  padding: .45rem .7rem; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255,255,255,.05);
  font-size: .84rem; font-weight: 600; transition: border-color .25s, background .25s;
}
.lang-btn:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.09); }
.lang-caret { font-size: .6rem; opacity: .7; transition: transform .25s; }
.lang.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + .5rem); min-width: 168px;
  list-style: none; padding: .4rem; border-radius: 14px;
  background: var(--glass-strong); border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none; transition: opacity .22s, transform .22s;
}
.lang.open .lang-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-menu li { display: flex; align-items: center; gap: .55rem; padding: .55rem .7rem; border-radius: 9px; font-size: .9rem; cursor: pointer; transition: background .2s; }
.lang-menu li:hover { background: rgba(255,255,255,.08); }
.lang-menu li.active { background: rgba(255,194,30,.14); color: var(--gold2); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------- HERO ----------------------------- */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  padding: calc(var(--nav-h) + 3rem) 1.2rem 5rem;
}
.hero-content { display: grid; justify-items: center; gap: 1.25rem; max-width: 860px; }
.hero-eyebrow {
  font-family: 'Sora', sans-serif; font-size: clamp(.68rem,1.6vw,.82rem); font-weight: 600;
  text-transform: uppercase; letter-spacing: .26em; color: var(--gold2);
  padding: .4rem 1rem; border: 1px solid rgba(255,194,30,.3); border-radius: 100px;
  background: rgba(20,8,40,.3); backdrop-filter: blur(6px);
}
.hero-wordmark { width: min(360px, 74vw); filter: drop-shadow(0 12px 30px rgba(0,0,0,.5)); }
.hero-title { font-size: clamp(2.1rem, 6.2vw, 4.2rem); font-weight: 800; text-wrap: balance; text-shadow: 0 4px 40px rgba(0,0,0,.4); }
.hero-tagline { color: rgba(244,238,255,.92); font-size: clamp(1.02rem, 2.2vw, 1.3rem); max-width: 46ch; text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: .4rem; }
.hero-loc { display: inline-flex; align-items: center; gap: .4rem; font-size: .92rem; color: rgba(244,238,255,.8); letter-spacing: .02em; }
.hero-loc .pin { filter: drop-shadow(0 0 8px rgba(255,138,60,.6)); }
.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: grid; justify-items: center; gap: .5rem;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(244,238,255,.72);
}
.hero-scroll-line { width: 1px; height: 42px; background: linear-gradient(var(--gold2), transparent); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold2); animation: scrollDot 1.9s var(--ease-in-out, ease) infinite; }
@keyframes scrollDot { 0% { top: -50%; } 100% { top: 120%; } }

/* ------------------------------ STRIP ----------------------------- */
.strip {
  position: relative; z-index: 1;
  overflow: hidden; padding: .9rem 0;
  background: rgba(12,5,28,.6); backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
}
.strip-track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; animation: marquee 34s linear infinite; }
.strip-track span { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(244,238,255,.9); }
.strip-track i { color: var(--gold2); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------- QUÉ ES / ABOUT ----------------------- */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-text h2 { text-align: left; }
.about-text p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.04rem; }
.about-text strong { color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.4rem 0; }
.chip {
  font-size: .84rem; font-weight: 500; padding: .42rem .95rem; border-radius: 100px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--text);
}
.stats { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 1.6rem; }
.stat { display: grid; }
.stat strong { font-family: 'Sora', sans-serif; font-size: 2rem; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { font-size: .85rem; color: var(--muted); }
.about-media { position: relative; display: grid; place-items: center; }
.about-media img { width: min(400px, 82%); border-radius: 50%; filter: drop-shadow(0 20px 50px rgba(0,0,0,.5)); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.about-media-ring {
  position: absolute; width: min(440px, 90%); aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold2), var(--coral), var(--magenta), var(--violet), var(--cyan2), var(--gold2));
  filter: blur(46px); opacity: .5; animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ------------------------------ CARDS ----------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.card {
  padding: 1.9rem 1.7rem; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s, background .4s;
  position: relative; overflow: hidden;
}
@supports (backdrop-filter: blur(10px)) { .card { background: rgba(30,14,58,.32); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); } }
.card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(255,194,30,.5), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s; }
.card:hover { transform: translateY(-8px); border-color: rgba(255,194,30,.35); box-shadow: 0 30px 60px -26px rgba(0,0,0,.75), var(--glow-gold); }
.card:hover::before { opacity: 1; }
.card-ico { font-size: 2rem; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 16px; margin-bottom: 1.1rem; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.card[data-tint="a"] .card-ico { box-shadow: inset 0 0 24px rgba(255,194,30,.3); }
.card[data-tint="b"] .card-ico { box-shadow: inset 0 0 24px rgba(255,122,60,.3); }
.card[data-tint="c"] .card-ico { box-shadow: inset 0 0 24px rgba(255,77,141,.3); }
.card[data-tint="d"] .card-ico { box-shadow: inset 0 0 24px rgba(139,92,246,.35); }
.card[data-tint="e"] .card-ico { box-shadow: inset 0 0 24px rgba(56,225,255,.3); }
.card[data-tint="f"] .card-ico { box-shadow: inset 0 0 24px rgba(47,191,95,.3); }
.card h3 { font-size: 1.24rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }

/* ------------------------------ STEPS ----------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.step {
  position: relative; padding: 2.2rem 1.5rem 1.7rem; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-brd);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
@supports (backdrop-filter: blur(10px)) { .step { background: rgba(30,14,58,.3); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); } }
.step:hover { transform: translateY(-6px); border-color: rgba(255,194,30,.3); box-shadow: var(--shadow-sm); }
.step-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.4rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: .6rem; }
.step h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .93rem; }
.asociarse-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem;
  margin-top: 2.4rem; padding: 1.6rem 1.9rem; border-radius: var(--radius);
  background: rgba(255,194,30,.06); border: 1px solid rgba(255,194,30,.22);
}
.asociarse-note p { color: var(--text); font-size: .98rem; max-width: 62ch; }

/* ------------------------------ VALORES --------------------------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.value { text-align: center; padding: 2rem 1.4rem; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-brd); transition: transform .4s var(--ease-out), border-color .4s; }
@supports (backdrop-filter: blur(10px)) { .value { background: rgba(30,14,58,.3); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); } }
.value:hover { transform: translateY(-6px); border-color: rgba(56,225,255,.32); }
.value-ico { font-size: 2.2rem; margin-bottom: .8rem; }
.value h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.value p { color: var(--muted); font-size: .93rem; }

/* -------------------------------- FAQ ----------------------------- */
.accordion { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.acc-item { border-radius: var(--radius-sm); background: var(--glass); border: 1px solid var(--glass-brd); overflow: hidden; transition: border-color .3s, background .3s; }
@supports (backdrop-filter: blur(10px)) { .acc-item { background: rgba(30,14,58,.3); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); } }
.acc-item.active { border-color: rgba(255,194,30,.35); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; text-align: left; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.02rem; }
.acc-plus { position: relative; width: 18px; height: 18px; flex: none; }
.acc-plus::before, .acc-plus::after { content: ''; position: absolute; inset: 0; margin: auto; background: var(--gold2); border-radius: 2px; transition: transform .3s var(--ease-out); }
.acc-plus::before { width: 100%; height: 2px; }
.acc-plus::after { width: 2px; height: 100%; }
.acc-item.active .acc-plus::after { transform: rotate(90deg) scaleX(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body p { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .98rem; }

/* ----------------------------- UBICACIÓN -------------------------- */
.ubicacion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.ubicacion-info h2 { text-align: left; }
.info-list { list-style: none; display: grid; gap: 1rem; margin: 1.6rem 0; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-ico { font-size: 1.2rem; width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.info-list strong { font-family: 'Sora', sans-serif; font-weight: 600; }
.info-list span { color: var(--muted); font-size: .95rem; }
.ubicacion-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-brd); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.ubicacion-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.05) saturate(1.1); }

/* ----------------------------- CONTACTO --------------------------- */
.contacto-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contacto-info h2 { text-align: left; }
.contact-list { list-style: none; display: grid; gap: .7rem; margin-top: 1.4rem; }
.contact-list a { display: flex; align-items: center; gap: .7rem; padding: .85rem 1.1rem; border-radius: var(--radius-sm); background: rgba(255,255,255,.04); border: 1px solid var(--line); font-weight: 500; transition: transform .3s var(--ease-out), border-color .3s, background .3s; }
.contact-list a:hover { transform: translateX(6px); border-color: rgba(255,194,30,.35); background: rgba(255,194,30,.06); }
.contact-list span { font-size: 1.15rem; }
.contacto-form { padding: clamp(1.6rem, 3vw, 2.4rem); border-radius: var(--radius); background: var(--glass-strong); border: 1px solid var(--glass-brd); box-shadow: var(--shadow); }
@supports (backdrop-filter: blur(10px)) { .contacto-form { background: rgba(24,10,48,.55); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); } }
.contacto-form h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.form-intro { color: var(--muted); font-size: .95rem; margin-bottom: 1.4rem; }
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: .9rem; }
form label { display: grid; gap: .35rem; font-size: .85rem; color: var(--muted); }
form input[type="text"], form input[type="email"], form input[type="number"] {
  padding: .8rem .95rem; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255,255,255,.04); color: #fff; font-size: .95rem; transition: border-color .25s, box-shadow .25s;
}
form input:focus { outline: none; border-color: var(--gold2); box-shadow: 0 0 0 3px rgba(255,194,30,.16); }
.check { flex-direction: row !important; display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; margin: .3rem 0 1.2rem; cursor: pointer; }
.check input { margin-top: .18rem; accent-color: var(--gold); width: 17px; height: 17px; flex: none; }
.form-status { margin-top: .9rem; font-size: .9rem; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--pink); }

/* ------------------------------ FOOTER ---------------------------- */
.footer { position: relative; z-index: 1; background: #070212; border-top: 1px solid var(--line); padding: 3.4rem 0 2rem; }
.footer-inner { display: grid; gap: 1.4rem; text-align: center; justify-items: center; }
.footer-brand { display: grid; justify-items: center; gap: .7rem; }
.footer-brand img { width: 68px; height: 68px; border-radius: 50%; filter: drop-shadow(0 0 20px rgba(255,194,30,.4)); }
.footer-tag { color: var(--muted); font-size: .95rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; justify-content: center; }
.footer-links a { color: var(--muted); font-size: .92rem; transition: color .25s; }
.footer-links a:hover { color: var(--gold2); }
.disclaimer { max-width: 78ch; color: rgba(198,185,228,.72); font-size: .8rem; line-height: 1.7; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.disclaimer strong { color: rgba(255,255,255,.9); }
.copyright { color: rgba(198,185,228,.55); font-size: .8rem; }

/* --------------------------- WHATSAPP FLOAT ----------------------- */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 1100;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem;
  background: linear-gradient(145deg, #25d366, #14a044);
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); }
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,0); } }

/* ----------------------------- CURSOR ----------------------------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 4000; opacity: 0; transition: opacity .3s; mix-blend-mode: screen; }
.cursor-dot { width: 7px; height: 7px; background: var(--gold2); transform: translate(-50%,-50%); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(255,194,30,.6); transform: translate(-50%,-50%); transition: opacity .3s, width .25s, height .25s, border-color .25s; }
.cursor.is-ready .cursor-dot, .cursor.is-ready .cursor-ring { opacity: 1; }
.cursor.is-hover .cursor-ring { width: 54px; height: 54px; border-color: var(--cyan2); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------------------------- RESPONSIVE -------------------------- */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  :root { --nav-h: 66px; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: auto; left: auto; width: min(80%, 320px);
    height: 100vh; height: 100dvh; overflow-y: auto; /* fix: altura fija; el backdrop-filter de .nav.scrolled convertia al header en containing block y encogia el panel al hacer scroll */
    flex-direction: column; align-items: flex-start; gap: .2rem;
    padding: calc(var(--nav-h) + 1.5rem) 1.6rem 2rem;
    background: rgba(12,5,28,.96); backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    transform: translateX(105%); transition: transform .4s var(--ease); box-shadow: -20px 0 60px -20px rgba(0,0,0,.8);
  }
  .nav-links.open { transform: none; }
  .nav-links > a:not(.btn) { width: 100%; padding: .8rem .4rem; font-size: 1.05rem; }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-cta { margin: .8rem 0 0; }
  .nav-toggle { display: flex; }
  .about-grid, .ubicacion-grid, .contacto-grid { grid-template-columns: 1fr; }
  .about-text h2, .about-text, .ubicacion-info h2, .contacto-info h2 { text-align: center; }
  .about-text h2 { text-align: center; }
  .about-media { order: -1; }
  .chips, .stats { justify-content: center; }
  .asociarse-note { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .hero { padding-bottom: 8.5rem; } /* fix: evita solape de .hero-loc con .hero-scroll en móvil */
  .cards, .steps, .values { grid-template-columns: 1fr; }
  form .row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-actions .btn { width: 100%; }
  .stat strong { font-size: 1.7rem; }
}

/* ------------------------- REDUCED MOTION ------------------------- */
/* Solo se desactiva lo intrusivo; las microinteracciones permanecen. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .strip-track { animation: none; }
  .about-media img { animation: none; }
  .about-media-ring { animation: none; }
  .loader-logo { animation: none; }
  .wa-float { animation: none; }
  .hero-scroll-line::after { animation: none; }
  .scene-stage.no-webgl .scene-fallback { animation: none; }
}

/* -------------------------------- BLOG ---------------------------- */
.blog .accordion { max-width: 860px; }
.post-item .acc-head { align-items: center; gap: .9rem; }
.post-ico { font-size: 1.5rem; line-height: 1; flex: none; }
.post-tt { display: flex; flex-direction: column; gap: .1rem; flex: 1 1 auto; min-width: 0; text-align: left; }
.post-tt strong { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--cream); }
.post-tt span { font-weight: 400; font-size: .88rem; color: var(--muted); }
.post-body { padding: .2rem 1.3rem 1.5rem; }
.post-img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--glass-brd); margin: .1rem 0 1.1rem; }
.post-body p { padding: 0; margin: .85rem 0; color: var(--muted); font-size: .98rem; line-height: 1.72; }
.post-body p strong { color: var(--text); font-weight: 600; }
.post-note { margin: 1.3rem 0 0; padding: .9rem 1.1rem; font-size: .92rem; line-height: 1.6; color: var(--muted); background: rgba(255,194,30,.06); border-left: 3px solid var(--gold2); border-radius: 0 10px 10px 0; }


/* Fix responsive: conserva la proporción de las imágenes con atributos width/height */
img { height: auto; }
