/* =========================================================
   FLOR PSICOLOGÍA — Human Tech
   Sistema visual — LIQUID GLASS
   ========================================================= */

:root{
  --sage:#8fd8c8;
  --sage-dark:#5fb8a6;
  --sage-deep:#e8fff8;
  --sage-light:#c9f3e6;
  --sage-mist:rgba(143,216,200,0.16);
  --terracotta:#ffb877;
  --terracotta-dark:#ff9a4d;
  --gold:#ffd39a;
  --cream:#241a3d;
  --paper:rgba(255,255,255,0.10);
  --line:rgba(255,255,255,0.22);
  --ink:#f6f3ff;
  --muted:rgba(246,243,255,0.76);
  --muted-2:rgba(246,243,255,0.55);

  --radius-sm:18px;
  --radius-md:24px;
  --radius-lg:34px;

  --shadow-sm: 0 8px 24px rgba(20,10,40,0.28);
  --shadow-md: 0 18px 46px rgba(20,10,40,0.38);
  --shadow-sage: 0 14px 34px rgba(20,10,40,0.4);
  --shadow-press: inset 0 2px 8px rgba(0,0,0,0.25);

  --container: 1160px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  position:relative;
}
body::before{
  content:""; position:fixed; inset:0; z-index:-1;
  background:
    radial-gradient(ellipse 80% 55% at 15% 0%, rgba(138,110,255,0.55), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 15%, rgba(255,140,110,0.4), transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 95%, rgba(255,190,120,0.35), transparent 60%),
    radial-gradient(ellipse 70% 60% at 5% 90%, rgba(95,184,166,0.35), transparent 60%),
    linear-gradient(165deg, #2c1f4d 0%, #3d2a5c 30%, #6b3f66 62%, #a85a5a 85%, #d98a5e 100%);
  background-attachment:fixed;
  animation:auroraShift 22s ease-in-out infinite;
}
@keyframes auroraShift{
  0%,100%{ filter:hue-rotate(0deg) saturate(1); }
  50%{ filter:hue-rotate(8deg) saturate(1.12); }
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
svg{ flex-shrink:0; }
.icon-inline{ width:1em; height:1em; vertical-align:-0.15em; }

::selection{ background:var(--sage); color:#1a2b26; }

/* ---------- FOCO ACCESIBLE ---------- */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
  border-radius:8px;
}

/* ---------- ANCLAS ---------- */
#inicio,#nosotros,#servicios,#contacto,#reservar{ scroll-margin-top:96px; }

h1,h2,h3,h4{
  font-family:'Outfit',sans-serif;
  font-weight:600;
  line-height:1.15;
  margin:0 0 .5em;
  color:var(--ink);
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; color:var(--muted); }

.wrap{ max-width:var(--container); margin:0 auto; padding:0 28px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:var(--ink);
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(16px) saturate(1.3);
  -webkit-backdrop-filter:blur(16px) saturate(1.3);
  border:1px solid var(--line);
  border-radius:30px;
  padding:8px 18px;
  margin-bottom:16px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.3);
}
.eyebrow.on-dark{ color:var(--ink); background:rgba(255,255,255,0.16); }

.section{ padding:100px 0; }
.section-tight{ padding:64px 0; }
.section-title{ font-size:clamp(30px,4.2vw,46px); max-width:720px; }
.section-lede{ font-size:18px; max-width:600px; color:var(--muted); }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

.title-accent{ display:block; width:90px; height:16px; color:var(--terracotta); margin:0 0 20px; }
.title-accent.center{ margin-left:auto; margin-right:auto; }
.title-accent path{
  fill:none; stroke:currentColor; stroke-width:6; stroke-linecap:round;
  stroke-dasharray:100; stroke-dashoffset:100;
  transition:stroke-dashoffset 1s cubic-bezier(.16,.8,.3,1) .25s;
}
.reveal.is-visible .title-accent path{ stroke-dashoffset:0; }

.grad-text{
  background:rgba(255,255,255,0.14);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:var(--gold);
  padding:3px 16px;
  display:inline-block;
  border-radius:30px;
  border:1px solid var(--line);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ---------- FORMAS FLOTANTES ---------- */
.section-decorated{ position:relative; overflow:hidden; }
.blob{ position:absolute; border-radius:50%; filter:blur(60px); pointer-events:none; z-index:0; opacity:.55; }
.b1{ width:320px; height:320px; background:var(--sage); top:0%; left:-8%; animation:floatSlow 16s ease-in-out infinite; }
.b2{ width:260px; height:260px; background:var(--terracotta); bottom:0%; right:-6%; animation:floatSlow 19s ease-in-out infinite reverse; }
.section-decorated > .wrap{ position:relative; z-index:1; }
@keyframes floatSlow{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(14px,-18px) scale(1.08); }
}

/* ---------- DECORACIÓN DEL HERO ---------- */
.breathing-wrap{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.breathing-circle{
  position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,0.28);
  top:50%; right:8%; transform:translateY(-50%);
}
.bc1{ width:220px; height:220px; animation:breathe 7s ease-in-out infinite; }
.bc2{ width:340px; height:340px; animation:breathe 7s ease-in-out infinite .4s; border-color:rgba(255,184,119,0.25); }
.bc3{ width:460px; height:460px; animation:breathe 7s ease-in-out infinite .8s; }
@keyframes breathe{
  0%,100%{ opacity:.35; transform:translateY(-50%) scale(0.95); }
  50%{ opacity:.75; transform:translateY(-50%) scale(1.03); }
}
.leaf-sprinkle{ position:absolute; opacity:.6; animation:drift 9s ease-in-out infinite; color:var(--sage); }
.leaf-sprinkle.ls2{ color:var(--terracotta); }
.leaf-sprinkle.ls3{ color:var(--gold); }
@keyframes drift{
  0%,100%{ transform:translate(0,0) rotate(0deg); }
  50%{ transform:translate(8px,-18px) rotate(10deg); }
}

.scroll-cue{
  position:absolute; left:50%; bottom:22px; transform:translateX(-50%);
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,0.12); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--ink); z-index:1; box-shadow:inset 0 1px 0 rgba(255,255,255,0.3);
  animation:bounceCue 2.4s ease-in-out infinite;
  transition:background .2s ease;
}
.scroll-cue:hover{ background:rgba(255,255,255,0.2); }
.scroll-cue svg{ width:18px; height:18px; }
@keyframes bounceCue{
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%{ transform:translateX(-50%) translateY(6px); }
}

/* ---------- BOTONES ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 30px; border-radius:50px;
  font-weight:700; font-size:14.5px; letter-spacing:.2px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sage), inset 0 1px 0 rgba(255,255,255,0.3);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  position:relative; overflow:hidden;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); box-shadow:var(--shadow-press); }
.btn svg{ width:18px; height:18px; }
.btn-primary{ background:linear-gradient(160deg, rgba(255,211,154,0.9), rgba(255,154,77,0.85)); color:#402206; }
.btn-primary:hover{ background:linear-gradient(160deg, rgba(255,211,154,1), rgba(255,154,77,0.95)); }
.btn-terracotta{ background:linear-gradient(160deg, rgba(255,184,119,0.92), rgba(255,140,110,0.85)); color:#3d1c06; }
.btn-terracotta:hover{ background:linear-gradient(160deg, rgba(255,184,119,1), rgba(255,140,110,0.95)); }
.btn-outline{ background:rgba(255,255,255,0.1); color:var(--ink); }
.btn-outline:hover{ background:rgba(255,255,255,0.18); }
.btn-outline.on-dark{ background:rgba(255,255,255,0.16); color:var(--ink); }
.btn-outline.on-dark:hover{ background:rgba(255,255,255,0.26); }
.btn .ripple{
  position:absolute; border-radius:50%; transform:scale(0);
  background:rgba(255,255,255,0.5); pointer-events:none;
  animation:rippleAnim .6s ease-out forwards;
}
@keyframes rippleAnim{ to{ transform:scale(2.6); opacity:0; } }
.btn-block{ width:100%; }

/* ---------- BARRA DE PROGRESO ---------- */
.progress-bar{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--sage),var(--terracotta));
  z-index:400; transition:width .08s linear;
  box-shadow:0 0 12px rgba(255,184,119,0.6);
}

/* ---------- HEADER ---------- */
header.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(36,26,61,0.45);
  backdrop-filter:blur(22px) saturate(1.4);
  -webkit-backdrop-filter:blur(22px) saturate(1.4);
  border-bottom:1px solid var(--line);
  box-shadow:0 0 0 rgba(0,0,0,0);
  transition:box-shadow .25s ease, background .25s ease;
}
header.site-header.is-scrolled{ box-shadow:0 10px 30px rgba(10,5,25,0.35); background:rgba(36,26,61,0.68); }
nav.navbar{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-badge{
  width:50px;height:50px;border-radius:50%;
  background:rgba(255,255,255,0.14);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  color:var(--sage);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.35);
  flex-shrink:0;
  transition:transform .3s ease;
}
.brand-badge svg{ width:24px; height:24px; }
.brand:hover .brand-badge{ transform:rotate(-6deg) scale(1.05); }
.brand-name{ font-family:'Outfit',sans-serif; font-weight:600; font-size:19px; color:var(--ink); line-height:1.1; }
.brand-name span{ display:block; font-family:'Inter',sans-serif; font-size:11.5px; font-weight:600; letter-spacing:.4px; color:var(--muted); text-transform:uppercase; margin-top:3px; }
.brand-logo{ height:52px; width:auto; display:block; transition:transform .3s ease; }
.brand:hover .brand-logo{ transform:scale(1.05); }
.nav-new-badge{
  display:inline-flex; align-items:center; justify-content:center;
  background:#1ed760; color:#04160c;
  font-family:'Inter',sans-serif; font-size:9.5px; font-weight:800; letter-spacing:.5px;
  text-transform:uppercase; line-height:1; padding:3px 7px; border-radius:999px;
  margin-left:6px; vertical-align:middle; white-space:nowrap;
  box-shadow:0 0 0 0 rgba(30,215,96,0.55);
  animation:navBadgePulse 2.2s ease-in-out infinite;
}
@keyframes navBadgePulse{
  0%{ box-shadow:0 0 0 0 rgba(30,215,96,0.55); }
  70%{ box-shadow:0 0 0 8px rgba(30,215,96,0); }
  100%{ box-shadow:0 0 0 0 rgba(30,215,96,0); }
}
@media (prefers-reduced-motion: reduce){ .nav-new-badge{ animation:none; } }

.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links a{
  font-size:14.5px; font-weight:600; color:var(--ink);
  position:relative; padding:9px 16px; border-radius:30px;
  transition:color .2s ease, background .2s ease;
}
.nav-links a:not(.nav-cta):hover,.nav-links a.active:not(.nav-cta){
  color:var(--ink); background:rgba(255,255,255,0.14);
}
.nav-cta{
  padding:11px 22px !important; border-radius:40px;
  background:linear-gradient(160deg, rgba(255,211,154,0.92), rgba(255,154,77,0.85)) !important;
  border:1px solid rgba(255,255,255,0.4) !important;
  color:#402206 !important; box-shadow:var(--shadow-sage);
}
.nav-cta:hover{ background:linear-gradient(160deg, rgba(255,211,154,1), rgba(255,154,77,0.95)) !important; }
.burger{
  display:none; width:42px;height:42px;border-radius:14px;
  border:1px solid var(--line); background:rgba(255,255,255,0.1);
  align-items:center;justify-content:center;
}
.burger span,.burger span::before,.burger span::after{
  content:"";display:block;width:18px;height:2px;background:var(--ink);
  position:relative; transition:transform .25s ease, opacity .25s ease;
}
.burger span::before{ position:absolute; top:-6px; }
.burger span::after{ position:absolute; top:6px; }
.mobile-panel{ display:none; flex-direction:column; padding:10px 28px 24px; background:rgba(36,26,61,0.85); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid var(--line); }
.mobile-panel a{ padding:13px 0; font-weight:600; color:var(--ink); border-bottom:1px solid var(--line); transition:color .2s ease; }
.mobile-panel a:hover{ color:var(--gold); }
.mobile-panel.open{ display:flex; }

/* ---------- HERO ---------- */
.hero{ position:relative; overflow:hidden; padding:104px 0 90px; }
.hero .wrap{ position:relative; z-index:1; }
.hero-inner{ max-width:660px; }
.hero-inner > *{ opacity:0; transform:translateY(24px); animation:heroUp .9s cubic-bezier(.16,.8,.3,1) forwards; }
.hero-inner > *:nth-child(1){ animation-delay:.05s; }
.hero-inner > *:nth-child(2){ animation-delay:.16s; }
.hero-inner > *:nth-child(3){ animation-delay:.27s; }
.hero-inner > *:nth-child(4){ animation-delay:.38s; }
.hero-inner > *:nth-child(5){ animation-delay:.49s; }
@keyframes heroUp{ to{ opacity:1; transform:translateY(0); } }
.hero h1{ font-size:clamp(34px,5.4vw,58px); }
.hero-sub{ font-size:18px; max-width:520px; margin-bottom:28px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:32px; }
.hero-audience{
  display:inline-flex; align-items:center; gap:10px; flex-wrap:wrap;
  background:rgba(255,255,255,0.1); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border:1px solid var(--line);
  border-radius:40px; padding:10px 20px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); font-size:13.5px; color:var(--muted); font-weight:600;
}
.hero-audience b{ color:var(--ink); }
.hero-audience .sep{ color:var(--terracotta); }

/* ---------- TARJETAS AUDIENCIA / SERVICIOS ---------- */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.card-grid.cols-4{ grid-template-columns:repeat(4,1fr); }
.info-card{
  position:relative; overflow:hidden;
  background:rgba(255,255,255,0.09);
  backdrop-filter:blur(20px) saturate(1.3); -webkit-backdrop-filter:blur(20px) saturate(1.3);
  border-radius:var(--radius-lg);
  padding:32px 26px; border:1px solid var(--line); box-shadow:var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.25);
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.info-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.3); background:rgba(255,255,255,0.14); }
.info-card .icon{
  width:56px;height:56px;border-radius:18px;
  background:rgba(255,255,255,0.14);
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  color:var(--sage); margin-bottom:18px; transition:transform .3s ease;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.3);
}
.info-card:hover .icon{ transform:scale(1.08) rotate(-4deg); }
.info-card .icon.terracotta{ color:var(--terracotta); }
.info-card .icon svg{ width:26px; height:26px; }
.info-card h3{ font-size:19px; }
.info-card p{ font-size:14.5px; margin:0; }

/* ---------- PILARES / VALORES ---------- */
.pillars{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:44px; }
.pillar{
  display:flex; gap:16px; align-items:flex-start;
  background:rgba(255,255,255,0.08); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border:1px solid var(--line); border-radius:var(--radius-md);
  padding:22px; box-shadow:var(--shadow-sm); transition:transform .3s ease, box-shadow .3s ease;
}
.pillar:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.pillar .icon{
  width:44px;height:44px;border-radius:14px; flex-shrink:0;
  background:rgba(255,255,255,0.12); border:1px solid var(--line); color:var(--sage);
  display:flex;align-items:center;justify-content:center;
}
.pillar .icon svg{ width:22px;height:22px; }
.pillar h4{ font-size:16.5px; margin-bottom:4px; color:var(--ink); }
.pillar p{ font-size:14px; margin:0; }

/* ---------- SOBRE FLOR (about split) ---------- */
.about-split{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:center; }
.about-visual{
  position:relative; aspect-ratio:4/5; border-radius:var(--radius-lg);
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(24px) saturate(1.4); -webkit-backdrop-filter:blur(24px) saturate(1.4);
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.3); overflow:hidden;
}
.about-visual-icon{ width:40%; height:40%; color:var(--sage); filter:drop-shadow(0 10px 20px rgba(0,0,0,0.25)); }
.about-photo{ width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.about-visual .leaf-badge{
  position:absolute; bottom:22px; left:22px; right:22px;
  background:rgba(36,26,61,0.55); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid var(--line); border-radius:var(--radius-md);
  padding:16px 18px; box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);
  font-family:'Outfit',sans-serif; font-size:16px; color:var(--gold);
  display:flex; align-items:center; gap:8px;
}
.confetti{ position:absolute; border-radius:50%; background:rgba(255,255,255,0.5); box-shadow:0 4px 12px rgba(0,0,0,0.15); }
.confetti.c1{ width:16px; height:16px; top:12%; left:14%; }
.confetti.c2{ width:11px; height:11px; top:20%; right:16%; background:var(--gold); }
.confetti.c3{ width:20px; height:20px; bottom:34%; right:12%; }

.quote-badge{
  display:inline-flex; align-items:flex-start; gap:10px;
  margin-top:22px; padding:20px 24px; border-radius:var(--radius-md);
  background:rgba(255,255,255,0.1); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border:1px solid var(--line); box-shadow:var(--shadow-sm);
  font-family:'Outfit',sans-serif; font-size:17px; color:var(--gold); line-height:1.4;
}
.quote-badge svg{ width:20px; height:20px; flex-shrink:0; margin-top:3px; color:var(--terracotta); }

/* ---------- LISTA CON CHECK ---------- */
.check-list{ margin:22px 0; display:flex; flex-direction:column; gap:12px; }
.check-list li{ display:flex; align-items:flex-start; gap:10px; font-size:15px; color:var(--muted); }
.check-list svg{ width:22px; height:22px; color:var(--sage); background:rgba(255,255,255,0.1); border:1px solid var(--line); border-radius:50%; padding:3px; flex-shrink:0; margin-top:0; }

/* ---------- FRANJA TEMAS (bandas de contenido) ---------- */
.topics-band{ position:relative; overflow:hidden; background:rgba(255,255,255,0.06); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); padding:18px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.topics-track{ display:flex; width:max-content; animation:topicsScroll 32s linear infinite; }
.topics-band:hover .topics-track{ animation-play-state:paused; }
.topics-set{ display:flex; align-items:center; flex-shrink:0; }
.topics-item{ display:inline-flex; align-items:center; gap:10px; padding:0 28px; font-family:'Outfit',sans-serif; font-weight:600; font-size:17px; color:var(--ink); white-space:nowrap; }
.topics-item svg{ width:18px; height:18px; color:var(--sage); flex-shrink:0; }
@keyframes topicsScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- PODCAST ---------- */
.podcast-embed{
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(24px) saturate(1.3); -webkit-backdrop-filter:blur(24px) saturate(1.3);
  border:1px solid var(--line);
  box-shadow:var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.25);
  padding:14px;
  max-width:760px;
  margin:0 auto;
}
.podcast-embed iframe{ width:100%; height:352px; border:0; border-radius:var(--radius-md); display:block; }
@media (max-width:560px){ .podcast-embed iframe{ height:232px; } }
.episode-card{
  background:rgba(255,255,255,0.08); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border:1px solid var(--line); border-radius:var(--radius-md);
  padding:24px; box-shadow:var(--shadow-sm); transition:transform .3s ease, box-shadow .3s ease;
}
.episode-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.episode-meta{ display:flex; align-items:center; gap:8px; font-family:'Inter',sans-serif; font-size:12.5px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; color:var(--sage); margin-bottom:10px; }
.episode-card h3{ font-size:18px; margin-bottom:8px; }
.episode-card p{ font-size:14px; margin:0; }

/* ---------- PODCAST CAROUSEL — tematica Spotify (negro + verde) ---------- */
.spotify-section{ background:#000; position:relative; overflow:hidden; }
.spotify-section .eyebrow{ color:#1ed760 !important; }
.spotify-section .eyebrow svg{ color:#1ed760; }
.spotify-section .section-title{ color:#fff; }
.spotify-section .title-accent{ color:#1ed760; }
.spotify-section .section-lede{ color:rgba(255,255,255,0.58); }

.spotify-carousel-wrap{ display:flex; align-items:center; gap:14px; margin-top:38px; }
.spotify-carousel{
  flex:1; display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:6px 4px 20px; scroll-behavior:smooth; -webkit-overflow-scrolling:touch;
  scrollbar-width:thin; scrollbar-color:#1ed760 #181818;
}
.spotify-carousel::-webkit-scrollbar{ height:8px; }
.spotify-carousel::-webkit-scrollbar-track{ background:#181818; border-radius:99px; }
.spotify-carousel::-webkit-scrollbar-thumb{ background:#1ed760; border-radius:99px; }

.spotify-card{
  scroll-snap-align:start; flex:0 0 300px;
  background:#121212; border:1px solid rgba(30,215,96,0.22); border-radius:20px;
  padding:24px; display:flex; flex-direction:column; text-decoration:none; color:#fff;
  transition:transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.spotify-card:hover, .spotify-card:focus-visible{
  transform:translateY(-6px); border-color:#1ed760; background:#181818;
  box-shadow:0 18px 40px rgba(30,215,96,0.18);
}
.spotify-card:focus-visible{ outline:2px solid #1ed760; outline-offset:3px; }
.spotify-card-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:18px; }
.spotify-badge{ display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; color:#1ed760; }
.spotify-badge svg{ width:17px; height:17px; flex-shrink:0; }
.spotify-play{
  width:42px; height:42px; border-radius:50%; background:#1ed760; color:#000; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; transition:transform .25s ease;
}
.spotify-play svg{ width:18px; height:18px; margin-left:2px; }
.spotify-card:hover .spotify-play{ transform:scale(1.1); }
.spotify-card-meta{ font-size:12.5px; font-weight:600; color:rgba(255,255,255,0.5); margin-bottom:8px; }
.spotify-card h3{ font-size:17px; line-height:1.32; color:#fff; margin-bottom:10px; }
.spotify-card p{
  font-size:13.5px; color:rgba(255,255,255,0.6); margin:0;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.carousel-btn{
  flex:none; width:46px; height:46px; border-radius:50%; cursor:pointer;
  background:#121212; border:1px solid rgba(30,215,96,0.4); color:#1ed760;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.carousel-btn svg{ width:20px; height:20px; }
.carousel-btn:hover{ background:#1ed760; color:#000; }
.carousel-btn:focus-visible{ outline:2px solid #1ed760; outline-offset:2px; }
@media (max-width:720px){ .carousel-btn{ display:none; } }
@media (prefers-reduced-motion: reduce){
  .spotify-carousel{ scroll-behavior:auto; }
  .spotify-card, .spotify-play, .carousel-btn{ transition:none; }
}

/* ---------- CTA BAND ---------- */
.cta-band{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(26px) saturate(1.3); -webkit-backdrop-filter:blur(26px) saturate(1.3);
  color:#fff; border-radius:var(--radius-lg); border:1px solid var(--line);
  padding:64px 48px; text-align:center; position:relative; overflow:hidden;
  box-shadow:var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.25);
}
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 85% 10%, rgba(255,211,154,0.25), transparent 50%); }
.cta-band > *{ position:relative; z-index:1; }
.cta-band h2{ color:#fff; font-size:clamp(28px,4vw,40px); }
.cta-band p{ color:rgba(255,255,255,0.85); font-size:17px; max-width:520px; margin:0 auto 28px; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---------- CONTACTO: tarjetas de canal ---------- */
.channel-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:44px; }
.channel-card{
  display:flex; flex-direction:column; align-items:flex-start; gap:14px;
  background:rgba(255,255,255,0.09); backdrop-filter:blur(20px) saturate(1.3); -webkit-backdrop-filter:blur(20px) saturate(1.3);
  border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:30px 26px; box-shadow:var(--shadow-sm);
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.channel-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); background:rgba(255,255,255,0.14); }
.channel-card .icon{
  width:52px;height:52px;border-radius:16px;
  background:rgba(255,255,255,0.12); border:1px solid var(--line); color:var(--sage);
  display:flex;align-items:center;justify-content:center;
}
.channel-card.primary .icon{ color:var(--gold); }
.channel-card .icon svg{ width:24px;height:24px; }
.channel-card h3{ font-size:18px; margin-bottom:2px; }
.channel-card p{ font-size:14px; margin-bottom:4px; }
.channel-card .btn{ margin-top:auto; padding:11px 22px; font-size:13.5px; }

/* ---------- FAQ ---------- */
.faq-list{ margin-top:40px; max-width:760px; }
.faq-item{ border:1px solid var(--line); border-radius:var(--radius-md); margin-bottom:12px; background:rgba(255,255,255,0.07); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:19px 22px; background:none; border:0; text-align:left;
  font-family:'Outfit',sans-serif; font-size:16.5px; font-weight:600; color:var(--ink);
}
.faq-q svg{ width:20px; height:20px; color:var(--sage); flex-shrink:0; transition:transform .3s ease; }
.faq-item.open{ background:rgba(255,255,255,0.12); box-shadow:var(--shadow-sm); }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-a{ max-height:220px; }
.faq-a p{ padding:0 22px 20px; font-size:14.5px; }

/* ---------- INFO PRÁCTICA (ubicación/horario/modalidad) ---------- */
.practical-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px; }
.practical-item{ text-align:center; padding:26px 18px; border:1px solid var(--line); border-radius:var(--radius-md); background:rgba(255,255,255,0.08); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px); box-shadow:var(--shadow-sm); }
.practical-item .icon{
  width:52px;height:52px;border-radius:50%; margin:0 auto 14px;
  background:rgba(255,255,255,0.14); border:1px solid var(--line); color:var(--sage);
  display:flex;align-items:center;justify-content:center;
}
.practical-item .icon svg{ width:24px;height:24px; }
.practical-item h4{ font-size:15.5px; margin-bottom:4px; }
.practical-item p{ font-size:13.5px; margin:0; }

/* ---------- FOOTER ---------- */
footer.site-footer{
  position:relative; overflow:hidden;
  background:rgba(20,14,36,0.55);
  backdrop-filter:blur(26px) saturate(1.3); -webkit-backdrop-filter:blur(26px) saturate(1.3);
  color:rgba(255,255,255,0.72); padding:60px 0 26px;
  border-top:1px solid var(--line);
}
footer.site-footer::after{
  content:""; position:absolute; top:-140px; right:-90px; width:320px; height:320px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,184,119,0.25), transparent 70%); pointer-events:none;
}
.footer-grid{ position:relative; z-index:1; display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:40px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,0.14); }
.footer-grid > div:first-child{ text-align:center; }
.footer-brand{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; margin-bottom:16px; }
.footer-brand span{ font-family:'Outfit',sans-serif; font-weight:600; color:#fff; font-size:17px; }
.footer-logo{ height:120px; width:auto; display:block; margin:0 auto; }
footer.site-footer p{ color:rgba(255,255,255,0.75); font-size:14px; }
footer h5{ color:var(--sage); font-size:13px; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:16px; font-family:'Inter',sans-serif; font-weight:700; }
footer ul{ display:flex; flex-direction:column; gap:10px; }
footer ul li a,footer ul li{ font-size:14.5px; color:rgba(255,255,255,0.65); transition:color .2s ease; display:inline-flex; align-items:center; gap:8px; }
footer ul li a:hover{ color:var(--sage); }
footer ul li svg{ width:16px; height:16px; flex-shrink:0; }
.footer-bottom{ position:relative; z-index:1; display:flex; justify-content:space-between; align-items:center; padding-top:22px; font-size:13px; color:rgba(255,255,255,0.45); flex-wrap:wrap; gap:10px; }

/* ---------- VOLVER ARRIBA ---------- */
.back-to-top{
  position:fixed; right:22px; bottom:22px; z-index:300;
  width:48px; height:48px; border-radius:50%; border:1px solid var(--line);
  background:rgba(255,255,255,0.14); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  color:var(--ink); box-shadow:var(--shadow-sage), inset 0 1px 0 rgba(255,255,255,0.3);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(12px) scale(.9); pointer-events:none;
  transition:opacity .25s ease, transform .25s ease, background .2s ease;
}
.back-to-top svg{ width:20px; height:20px; }
.back-to-top.is-visible{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.back-to-top:hover{ transform:translateY(-3px) scale(1.04); background:rgba(255,255,255,0.22); }
@media (max-width:640px){ .back-to-top{ right:16px; bottom:16px; width:44px; height:44px; } }

/* ---------- DIVISOR ---------- */
.section-divider{ display:none; }

/* ---------- REVEAL ---------- */
.reveal{ opacity:0; transform:translateY(36px); transition:opacity .8s cubic-bezier(.16,.8,.3,1), transform .8s cubic-bezier(.16,.8,.3,1); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .6s cubic-bezier(.16,.8,.3,1), transform .6s cubic-bezier(.16,.8,.3,1); }
.reveal-stagger.is-visible > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay:.04s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay:.1s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay:.16s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay:.22s; }

@media (prefers-reduced-motion: reduce){
  .reveal,.reveal-stagger > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  .blob,.leaf-sprinkle,.scroll-cue,.breathing-circle,.topics-track,.hero-inner > *,body::before{
    animation:none !important;
  }
  .hero-inner > *{ opacity:1 !important; transform:none !important; }
  .title-accent path{ transition:none !important; stroke-dashoffset:0 !important; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1024px){
  .card-grid,.card-grid.cols-4{ grid-template-columns:repeat(2,1fr); }
  .about-split{ grid-template-columns:1fr; gap:40px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .channel-grid{ grid-template-columns:1fr; }
  .practical-grid{ grid-template-columns:1fr; }
  .pillars{ grid-template-columns:1fr; }
  .breathing-circle{ display:none; }
}
@media (max-width:860px){
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .cta-band{ padding:48px 24px; }
  .scroll-cue{ display:none; }
}
@media (max-width:640px){
  .section{ padding:64px 0; }
  .card-grid,.card-grid.cols-4{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .topics-item{ font-size:15px; padding:0 18px; }
}
