/* style.css */

/* ========= TIPOGRAFÍA GLOBAL =========
   Inter 400/500/700/900 para imitar el look de joinladder */
:root{
  --font-sans: "Inter","Inter var",-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  --fw-regular:400; --fw-medium:500; --fw-bold:700; --fw-black:900;
}

/* Reset & base */
html, body {
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }

/* ===== Altura fija para el aviso superior ===== */
:root { --top-bar-height: 40px; }

/* Animation Keyframes */
@keyframes fadeInUp { from{opacity:0; transform:translateY(30px)} to{opacity:1; transform:translateY(0)} }
@keyframes fadeInLeft{ from{opacity:0; transform:translateX(-30px)} to{opacity:1; transform:translateX(0)} }
@keyframes fadeInRight{ from{opacity:0; transform:translateX(30px)} to{opacity:1; transform:translateX(0)} }
@keyframes fadeIn{ from{opacity:0} to{opacity:1} }
@keyframes blinkCaret{ 0%,49%{opacity:1} 50%,100%{opacity:0} }
@keyframes bounce{ to{ transform: translateY(-6px);} }

/* Utilities */
.animate-on-scroll{ opacity:0; }
.is-visible.fade-in-up{ animation: fadeInUp .8s ease-out forwards; }
.is-visible.fade-in-left{ animation: fadeInLeft .8s ease-out forwards; }
.is-visible.fade-in-right{ animation: fadeInRight 1.5s ease-out forwards; }
.is-visible.fade-in{ animation: fadeIn .8s ease-out forwards; }
.delay-1{ animation-delay:.1s!important } .delay-2{ animation-delay:.2s!important }
.delay-3{ animation-delay:.3s!important } .delay-4{ animation-delay:.4s!important }
.delay-5{ animation-delay:.5s!important }

*{ margin:0; padding:0; }
body{
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  background:#121212; color:#FFF; line-height:1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Refuerzo tipografías */
h1,h2,h3,h4,h5,h6,
.btn-hero,.btn-cta,.btn-plan,.btn-secondary,.btn-fuchsia,
.aso-cta,.aso-tag,.assist-title,.assist-brand{
  font-family: var(--font-sans);
  font-weight: var(--fw-black);
  letter-spacing: -0.015em;
}
p,li,small,span,input,button{ font-family: var(--font-sans); font-weight: var(--fw-regular); }

/* Main content push-down */
main { margin-top: calc(80px + var(--top-bar-height)); }

/* Top bar */
.top-bar{
  background:#000; color:#FFF; font-size:.9em; text-align:center;
  position:fixed; top:0; left:0; width:100%; z-index:1001; transition:z-index .3s ease;
  height:var(--top-bar-height); line-height:var(--top-bar-height);
  padding:0 .75em;
}
.top-bar .top-plan{ color:#FF007F; font-weight:var(--fw-bold); margin-left:.5em; text-decoration:none; }
.top-bar.scrolled{ z-index:999; }

/* Header/Nav fijo */
header{
  position:fixed; top:var(--top-bar-height); left:0; width:100%; z-index:1000;
  backdrop-filter: blur(10px); background:transparent; transition: top .4s ease, background .4s ease, padding .4s ease; padding:1em 0;
}
header.scrolled{
  top:0; background:rgba(18,18,18,.95); padding:.5em 0;
  box-shadow:0 4px 15px rgba(255,0,127,.2); z-index:1002;
}

/* Header */
.logo-img{ max-height:40px; filter:brightness(0) invert(1) !important; transition:filter .4s ease; }
.nav-links{ list-style:none; display:flex; gap:2em; margin-left:auto; }
.nav-links a{
  text-decoration:none; color:#FFF !important; font-weight:var(--fw-medium); padding:10px 15px; display:inline-block;
  transition: color .4s, transform .3s ease-out;
}
header.scrolled .nav-links a,
header.header-on-light .nav-links a,
header.header-on-light.scrolled .nav-links a{ color:#FFF !important; }
header.header-on-light .logo-img{ filter:brightness(0) invert(1) !important; }
.nav-links a:hover{ color:#FF007F; transform: translateY(-2px); }
.nav-links a .highlight{ color:#FF007F; }

nav{ width:100%; margin:0; padding:0 30px; display:flex; align-items:center; justify-content:flex-start; }
.nav-cta .btn-plan{
  background:#FF007F; color:#121212; padding:.7em 1.5em; border-radius:30px; text-decoration:none; font-weight:var(--fw-black);
  transition: box-shadow .3s, transform .3s ease-out;
}
.nav-cta .btn-plan:hover{ box-shadow:0 0 20px rgba(255,0,127,.6); transform: translateY(-3px) scale(1.05); }

/* Hero */
#hero{ position:relative; text-align:center; padding:120px 20px 0; background:#121212; }
.hero-content{ max-width:700px; margin:auto; position:relative; z-index:1; }
.hero-image{ display:block; margin:0 auto 1em; }
#hero h1{ font-size:3.5em; margin-bottom:.5em; line-height:1.1; }
#hero p{ font-size:1.2em; margin-bottom:1.5em; color:rgba(255,255,255,.8); }

/* Typewriter */
.hero-fixed{ font: inherit; font-weight: inherit; letter-spacing: inherit; line-height: inherit; }
.typed{ font: inherit; font-weight: inherit; letter-spacing: inherit; line-height: inherit; transition:opacity .45s ease; }
.typed.fade-out{ opacity:0; }
.typed::after{
  content:"";
  display:inline-block;
  width:2px; height:1em;
  background:#fff;
  margin-left:6px;
  transform: translateY(2px);
  animation: blinkCaret 1s steps(1) infinite;
}

.btn-hero{
  display:inline-block; background:#FF007F; color:#121212; padding:.9em 2em; border-radius:30px; text-decoration:none; font-weight:var(--fw-black);
  transition: box-shadow .3s, transform .3s ease-out;
}
.btn-hero:hover{ box-shadow:0 0 30px rgba(255,0,127,.6); transform: translateY(-3px) scale(1.05); }
.hero-mockup{
  width:100%; max-width:600px; margin:60px auto 80px; height:auto; background:transparent; position:relative; overflow:hidden;
}
.hero-mockup::after{
  content:''; position:absolute; bottom:0; left:0; width:100%; height:10%;
  background:linear-gradient(rgba(18,18,18,0) 0%, rgba(18,18,18,1) 100%); pointer-events:none;
}
.hero-mockup img{
  display:block; width:100%; height:auto; object-fit:cover; border-radius:15px;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-size: 100% 100%; -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-size: 100% 100%; mask-repeat: no-repeat;
}

/* Newsletter */
.newsletter-section{ background:#FFFFFF; color:#121212; padding:60px 20px; text-align:center; }
.newsletter-section h2{ font-size:2em; margin-bottom:.5em; }
.newsletter-section p{ color:rgba(18,18,18,.7); margin-bottom:1.5em; }
#newsletter-form{
  display:flex; flex-direction:row; align-items:center; justify-content:center; gap:.5rem; max-width:500px; margin:0 auto;
}
#newsletter-form input[type="email"]{ flex:1; padding:.8em 1em; border-radius:30px; border:1px solid #CCC; font-size:1em; }
#newsletter-form button{
  flex:0 0 auto; background:#FF007F; color:#FFF; font-size:1em; padding:.9em 2em; border:none; border-radius:30px; font-weight:var(--fw-black); cursor:pointer;
  transition: box-shadow .3s, transform .3s ease-out;
}
#newsletter-form button:hover{ box-shadow:0 0 20px rgba(255,0,127,.6); transform: translateY(-2px) scale(1.03); }

/* Busy People Features */
#features{ padding:40px 20px; background:#1A1A1A; text-align:center; }
#features h2{ font-size:2em; margin-bottom:40px; }
.features-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:30px; max-width:1000px; margin:auto; }
.feature-icon{ width:40px; height:40px; margin:auto 0 15px; }

/* Daily Workout */
#workout{ padding:80px 20px; background:#121212; }
.days-selector{ display:flex; justify-content:center; align-items:center; gap:15px; margin-bottom:40px; }
.day{ display:flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; background:#2A2A2A; color:#FFF; font-weight:var(--fw-black); line-height:1; }
.day.done{ background:#FF007F; color:#121212; }
.day.today{ background:transparent; border:2px solid #FF007F; color:#FFF; }
.daily-content{ display:flex; flex-wrap:wrap; align-items:center; gap:40px; max-width:1000px; margin:auto; }
.daily-text{ flex:1; min-width:280px; }
.daily-text h2{ font-size:2em; margin-bottom:20px; }
.daily-text p{ margin-bottom:20px; color:rgba(255,255,255,.8); }
.btn-secondary{ display:inline-block; background:#FF007F; color:#121212; padding:.7em 1.5em; border-radius:30px; text-decoration:none; font-weight:var(--fw-black); }
.btn-secondary:hover{ box-shadow:0 0 20px rgba(255,0,127,.6); }
.daily-mockup, .progress-mockup{ flex:1; min-width:300px; height:400px; background:#121212; border-radius:15px; overflow:hidden; }
.daily-mockup img, .progress-mockup img{ display:block; width:100%; height:100%; object-fit:cover; }

/* Save Time & Train */
#schedule{ padding:80px 20px 40px; background:#FFF; color:#121212; }
.save-time{ display:flex; flex-wrap:wrap-reverse; align-items:center; gap:40px; max-width:1000px; margin:auto; }
.watch-mockup{ flex:1; min-width:300px; height:350px; background:#DDD; border-radius:20px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.watch-mockup img{ width:100%; height:100%; object-fit:cover; }
.save-text{ flex:1; min-width:300px; }
.save-text h2{ font-size:2.2em; margin-bottom:20px; }
.save-text p{ color:rgba(18,18,18,0.7); }

/* CTA */
#cta{ padding:40px 20px 80px; background:#1A1A1A; text-align:center; }
#cta h2{ font-size:2em; margin-bottom:20px; }
#cta p{ margin-bottom:30px; color:rgba(255,255,255,.8); }
.btn-cta{
  background:#FF007F; color:#121212; padding:.9em 2em; border-radius:30px; text-decoration:none; font-weight:var(--fw-black); transition: box-shadow .3s;
}
.btn-cta:hover{ box-shadow:0 0 30px rgba(255,0,127,.6); }

/* Strength */
#strength{ padding:80px 20px; background:#FFF; text-align:center; }
#strength h2{ font-size:2em; margin-bottom:40px; }
#strength .strength-mockup{ display:none; }

/* Coaching widgets/analytics */
#coaching{ padding:80px 20px; background:#FFF; }
.coaching-row{ display:flex; flex-wrap:wrap; gap:40px; max-width:1000px; margin:auto; align-items:center; justify-content:center; }
.video-demo, .in-ear{ flex:1; min-width:300px; text-align:center; }
#coaching h3, #coaching h4{ color:#000; }
.video-demo h3, .in-ear h3{ font-size:1.5em; margin-bottom:20px; line-height:1.2; }

/* === SIN MARCOS EN LOS MOCKUPS === */
.video-mockup, .earbud-mockup{
  width:min(90vw, 360px);
  height:auto;
  background:transparent;
  border-radius:0;
  margin:0 auto 20px;
  overflow:visible;
  box-shadow:none;
  display:grid;
  place-items:center;
}
.video-mockup img, .earbud-mockup img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
  border-radius:0;
}

.in-ear h4{ font-size:1.2em; color:rgba(18,18,18,0.7); }

/* Learn */
#learn{ padding:80px 20px; background:#FFFFFF; }
#learn h2{ color:#000; }
.learn-row{ display:flex; flex-wrap:wrap-reverse; gap:40px; align-items:center; max-width:1000px; margin:auto; justify-content: center; }
.coach-mockup{ width:300px; height:450px; background:#1A1A1A; border-radius:15px; margin:0 auto; overflow:hidden; }
.coach-mockup img{ width:100%; height:100%; object-fit:cover; display:block; }
.learn-text{ flex:1; min-width:300px; }
.learn-text p{ color:rgba(18,18,18,0.7); margin-bottom:20px; }

/* Track Your Progress */
#progress{ padding:80px 20px; background:#1A1A1A; }
.progress-row{ display:flex; flex-wrap:wrap; gap:40px; align-items:center; max-width:1000px; margin:auto; }
.progress-text{ flex:1; min-width:300px; }
.progress-text h2{ font-size:2em; margin-bottom:20px; }
.progress-text p{ color:rgba(255,255,255,0.8); margin-bottom:20px; }
.progress-mockup{ flex:1; min-width:300px; height:400px; background:#1A1A1A; border-radius:15px; overflow:hidden; }

/* Footer */
footer{ background:#121212; color:#FFF; padding:40px 20px; }
.footer-inner{ max-width:1200px; margin:auto; display:flex; flex-wrap:wrap; gap:40px; justify-content:space-between; }
.footer-logo img.logo-img{ max-height:40px; filter:brightness(0) invert(1) !important; transition:filter .4s ease; }
.footer-logo p{ margin-top:.5em; color:rgba(255,255,255,0.7); }
.footer-cols{ display:flex; flex-wrap:wrap; gap:60px; }
.footer-cols h4{ margin-bottom:10px; }
.footer-cols ul{ list-style:none; }
.footer-cols ul li{ margin-bottom:6px; }
.footer-cols ul li a{ text-decoration:none; color:rgba(255,255,255,0.8); }
.footer-cols ul li a:hover{ color:#FF007F; }

/* Botones flotantes anteriores */
.floating-btn,
#floating-action-btn,
.chat-panel { display:none !important; }

/* Botón hamburger (móvil) */
.menu-toggle{ display:none; flex-direction:column; justify-content:space-around; width:30px; height:24px; background:transparent; border:none; cursor:pointer; padding:0; }
.menu-toggle span{ display:block; width:100%; height:3px; background:#FFF; border-radius:2px; transition: transform .3s, opacity .3s; }
.menu-toggle.open span:nth-child(1){ transform: translateY(10px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-10px) rotate(-45deg); }

/* ========= NUEVOS BLOQUES ========= */

/* Texto dinámico opcional */
#dynamic-text{ display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden; text-overflow:ellipsis; white-space:normal; }

/* EXPLORA NUEVAS FUNCIONALIDADES – fondo negro full width */
#explore-features{ background:#000; }
#explore-features .explore-widget{
  background:transparent; border-radius:0; margin:0 auto; padding:60px 20px; max-width:1200px;
}
.explore-widget{
  display:flex; flex-direction:row; align-items:center; justify-content:center; text-align:left;
  color:#FFF; gap:20px;
}
.explore-widget .explore-image{ width:50%; max-width:480px; border-radius:15px; margin:0 20px 0 0; object-fit:cover; }
.explore-widget .explore-text{ width:50%; }
.explore-widget .explore-text h3{ font-size:1.8em; margin-bottom:24px; color:#FFF; }
.explore-widget .explore-text p{ color:rgba(255,255,255,.7); margin-bottom:32px; }
.explore-widget .explore-text .btn-plan{
  background:#FF007F; color:#121212; padding:.9em 2em; border-radius:30px; text-decoration:none; font-weight:var(--fw-black); margin-top:8px;
}
.explore-widget .explore-text .btn-plan:hover{ box-shadow:0 0 20px rgba(255,0,127,.6); transform: translateY(-2px) scale(1.03); }

/* AS SEEN ON (blanco) con flechas */
#as-seen-on{ background:#fff; color:#111; padding:48px 0 48px 20px; }
.aso-header{ max-width:1200px; margin:0 auto 18px; display:flex; align-items:center; justify-content:space-between; padding:0 20px 0 0; }
.aso-header h2{ font-size:1.6rem; letter-spacing:.5px; margin:0; }
.aso-controls{ display:flex; align-items:center; gap:8px; }
.aso-arrow{
  width:34px; height:34px; border-radius:50%; border:none; background:#f0f0f0; color:#111; cursor:pointer; font-size:18px; line-height:34px;
  display:inline-flex; align-items:center; justify-content:center; box-shadow:0 2px 10px rgba(0,0,0,.08); transition: transform .15s ease;
}
.aso-arrow:hover{ transform: translateY(-1px); }

/* Carrusel full-bleed (sin márgenes laterales) */
.aso-viewport{ 
  width:100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow:hidden;
}
.aso-track{
  display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; -ms-overflow-style:none; scrollbar-width:none;
  padding:6px 0 20px 0; 
  max-width:none; margin:0;
}
.aso-track::-webkit-scrollbar{ display:none; }
.aso-card{
  position:relative; flex:0 0 clamp(240px, 82vw, 360px); height:520px; border-radius:16px; overflow:hidden; background:#f2f2f2; scroll-snap-align:start;
  margin-right:0;
}
.aso-card img{ width:100%; height:100%; object-fit:cover; display:block; margin:0 !important; }
.aso-tag{ position:absolute; top:14px; left:14px; background:#fff; color:#111; font-weight:var(--fw-black); font-size:.9rem; padding:8px 12px; border-radius:10px; }

/* === BOTONES DE TARJETA === */
.aso-cta{
  position:absolute; left:16px; bottom:16px;
  background:#FF007F; color:#121212; text-decoration:none; font-weight:var(--fw-black);
  font-size:.95rem; padding:14px 22px; border-radius:28px; display:inline-block;
  box-shadow:0 8px 28px rgba(255,0,127,.25); transition: transform .2s ease, box-shadow .2s ease;
}
.aso-cta:hover{ transform: translateY(-2px); box-shadow:0 12px 36px rgba(255,0,127,.35); }

@media (max-width:1024px){ .aso-card{ height:480px; } }
@media (max-width:640px){ .aso-card{ height:440px; } }

/* Sección Fucsia / Planes */
.fuchsia-section.plan-yellow{
  position:relative; display:flex; flex-direction:column; align-items:center; gap:32px; padding:80px 20px; background:#0b0b0b; color:#fff; overflow:hidden;
  isolation:isolate;
}
.fuchsia-section.plan-yellow::before{
  content:""; position:absolute; right:6%; top:50%; width:min(72vw, 760px); height:min(72vw, 760px); transform:translateY(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,0,127,.42) 0%, rgba(255,0,127,.26) 22%, rgba(11,11,11,0) 62%);
  filter:blur(2px); pointer-events:none; z-index:0;
}

.fuchsia-text{ max-width:380px; z-index:2; text-align:left; }
.fuchsia-text h3{ font-size:2.4rem; line-height:1.05; font-weight:var(--fw-black); letter-spacing:.5px; text-transform:uppercase; margin:0 0 12px; }
.fuchsia-text p{ color:rgba(255,255,255,.80); font-size:1rem; margin:0 0 18px; }
.fuchsia-section.plan-yellow .btn-fuchsia{
  background:#FF007F; color:#121212; font-weight:var(--fw-black); border-radius:999px; padding:12px 22px; text-decoration:none; display:inline-block;
  box-shadow:0 8px 28px rgba(255,0,127,.25); transition: transform .2s ease, box-shadow .2s ease;
}
.fuchsia-section.plan-yellow .btn-fuchsia:hover{ transform: translateY(-2px); box-shadow:0 12px 36px rgba(255,0,127,.35); }

/* TOP: teléfono + texto */
.fuchsia-top{
  width:100%;
  max-width:1200px;
  display:grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  align-items:end;
  gap:28px;
  z-index:1;
}

/* Teléfono base */
.phone{ position:relative; background:transparent; z-index:1; }
.phone img{
  width:min(34vw, 360px);
  height:auto;
  display:block;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.45));
  position:relative;
  z-index:1;
}
.phone::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.9) 0%,
    rgba(0,0,0,.85) 10%,
    rgba(0,0,0,0) 40%
  );
}

/* QUITAR BORDE (solo esta imagen si lo usas) */
.phone.no-bezel img{
  clip-path: inset(7% 7% 9% 7% round 26px);
  filter: none !important;
}
.glow-on-text{ position:relative; z-index:2; text-shadow: 0 0 12px rgba(255,0,127,.20); }

.phone-left{ justify-self:end; }
.phone-right{ justify-self:start; }

/* === ELIMINAR "NEBLINA" EN LA IMAGEN DEL APARTADO (teléfono) === */
.fuchsia-section.plan-yellow .phone-left::after{ background:none !important; }

.fuchsia-grid{ --col:240px; display:grid; grid-template-columns:repeat(2,var(--col)); gap:16px; z-index:1; }
.plan-card{ position:relative; background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 20px 50px rgba(0,0,0,.35); }
.plan-card img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .25s ease; }
.plan-card:hover img{ transform: scale(1.02); }
.plan-card .badge{ position:absolute; top:10px; left:10px; font-size:10px; line-height:1; background:#0b0b0b; color:#fff; padding:6px 8px; border-radius:999px; opacity:.95; }

/* Coaching alternativo */
.coaching-alt{ padding:20px 20px; background:#1C1C1C; text-align:center; }
.coaching-alt .coaching-main-title{ font-size:2em; margin:10px 0; color:#FFF; }
.coaching-alt .coaching-flex-container{
  display:flex; align-items:center; justify-content:center; gap:40px; max-width:1000px; margin:auto;
}
.coaching-alt .coaching-side{ flex:1; }
.coaching-alt .coaching-side.left{ text-align:center; padding-right:0; }
.coaching-alt .coaching-side.right{ text-align:center; padding-left:0; }
.coaching-alt .coaching-side h3{ font-size:1.4em; margin:0; color:#FFF; letter-spacing:.5px; }
.coaching-alt .coaching-sub{ display:block; font-size:.95em; color:rgba(255,255,255,.7); margin-bottom:1em; text-transform:uppercase; letter-spacing:.2em; }
.coaching-alt .coaching-side h4{ font-size:1.2em; margin:1em 0 .2em; color:#FFF; }
.coaching-alt .coaching-mockup-small img{ width:min(88vw,560px); height:auto; border-radius:20px; display:block; margin-inline:auto; }

/* Widget asistencia */
.assist-widget{ position:fixed; right:24px; bottom:24px; z-index:2000; }
.assist-toggle{
  width:64px; height:64px; border:none; border-radius:50%;
  background:#1f1f1f; color:#fff; box-shadow:0 8px 28px rgba(0,0,0,.3);
  display:flex; align-items:center; justify-content:center; cursor:pointer; transition: transform .18s ease, box-shadow .18s ease;
}
.assist-toggle:hover{ transform:translateY(-2px); box-shadow:0 12px 34px rgba(0,0,0,.35); }
.assist-toggle svg{ width:28px; height:28px; }
.assist-toggle .icon-open{ display:none; }
.assist-widget.open .assist-toggle .icon-closed{ display:none; }
.assist-widget.open .assist-toggle .icon-open{ display:block; }

.assist-panel{
  position:fixed; right:24px; bottom:100px;
  width:min(92vw, 540px); max-height:80vh; overflow:auto;
  background:#202020; color:#fff; border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  transform: translateY(20px); opacity:0; pointer-events:none; transition: .22s ease;
}
.assist-widget.open .assist-panel{ transform: translateY(0); opacity:1; pointer-events:auto; }

.assist-inner{ padding:24px; }
.assist-brand{ font-weight:var(--fw-bold); margin-bottom:4px; opacity:.95; }
.assist-title{ font-size:1.6rem; font-weight:var(--fw-black); margin-bottom:20px; }

/* (las tarjetas originales se mantienen definidas por si vuelven a usarse) */
.assist-list{ display:flex; flex-direction:column; gap:14px; }
.assist-card{
  display:flex; align-items:center; justify-content:space-between;
  background:#f5f5f5; color:#111; border-radius:12px; padding:14px 16px;
}
.assist-left{ display:flex; align-items:center; gap:12px; }
.assist-icon{
  width:44px; height:44px; border-radius:10px; background:#fff; display:flex; align-items:center; justify-content:center; font-size:20px;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.assist-text{ font-weight:var(--fw-bold); }
.assist-arrow{ font-size:20px; color:#888; }

/* NUEVO: formulario de suscripción dentro del panel */
.assist-form{
  background:#f5f5f5; color:#111; border-radius:12px; padding:16px;
}
.assist-form form{
  display:flex; gap:10px; width:100%;
  flex-direction:column;           /* apila verticalmente */
  align-items:flex-start;          /* alinea a la izquierda */
}
.assist-form input[type="email"]{
  width:100%;                      /* input ocupa ancho completo */
  padding:12px 14px; border-radius:12px; border:1px solid #ddd; font-size:1rem; outline:none;
}
.assist-form button{
  background:#FF007F; color:#121212; border:none; border-radius:12px; padding:12px 18px; font-weight:var(--fw-black); cursor:pointer;
  box-shadow:0 8px 28px rgba(255,0,127,.25); transition: transform .18s ease, box-shadow .18s ease;
  align-self:flex-start;           /* botón pegado a la izquierda */
  margin-top:10px;
}
.assist-form button:hover{ transform: translateY(-2px); box-shadow:0 12px 36px rgba(255,0,127,.35); }
.assist-form small{ display:block; margin-top:8px; color:#444; }

/* Privacy bar */
.assist-privacy{
  margin-top:14px; background:#2a2a2a; color:#d9d9d9; border-radius:12px; padding:12px 14px; font-size:.9em; position:relative;
}
.assist-privacy .close-privacy{
  position:absolute; right:10px; top:10px; background:transparent; border:none; color:#bbb; font-size:18px; cursor:pointer;
}

/* Responsive */
@media (max-width:1180px){ .fuchsia-grid{ --col:220px; } }
@media (max-width:1024px){
  .fuchsia-section.plan-yellow{ gap:24px; }
  .fuchsia-grid{ --col:200px; }
}
@media (max-width:900px){
  .fuchsia-section.plan-yellow{ flex-direction:column; align-items:center; text-align:center; }
  .fuchsia-text{ text-align:center; max-width:520px; }
  .fuchsia-grid{ --col:160px; }
  .fuchsia-section.plan-yellow::before{ right:50%; transform: translate(50%,-50%); }
  .fuchsia-top{
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap:16px;
  }
  .phone-left{ justify-self:center; }
  .phone-right{ justify-self:center; }
}
@media (max-width:768px){
  nav{ justify-content:space-between; }
  .menu-toggle{ display:flex; margin-left:auto; order:3; }
  .nav-links{
    position:absolute; top:100%; right:0; left:auto;
    background:#121212; flex-direction:column; width:min(90vw, 300px);
    padding:1em 0; display:none; box-shadow:0 4px 15px rgba(0,0,0,0.2);
    align-items:flex-start; text-align:left;
  }
  .nav-links.open{ display:flex; }
  .nav-links li{ margin:.5em 0; width:100%; }
  .nav-links a{ padding:.5em 1.25em; width:100%; }
  .nav-cta{ display:none; }

  .learn-row, .progress-row, .save-time, .daily-content{ flex-direction:column; align-items:center; }

  #explore-features .explore-widget{ padding:40px 20px; }
  .explore-widget{ flex-direction:column; }
  .explore-widget .explore-image, .explore-widget .explore-text{ width:100%; max-width:none; margin:0; }

  .coaching-alt{ padding:40px 16px; }
  .coaching-alt .coaching-flex-container{ flex-direction:column; gap:16px; }
  .coaching-alt .coaching-side{ width:100%; }
  .coaching-alt .coaching-side.left, .coaching-alt .coaching-side.right{ padding:0; }
  .coaching-alt .coaching-main-title{ font-size:clamp(1.6rem, 5vw, 2rem); }
  .coaching-alt .coaching-side h3{ font-size:clamp(1.1rem, 4.5vw, 1.4rem); }
  .coaching-alt .coaching-side h4{ font-size:clamp(1rem, 4vw, 1.2rem); }
  .coaching-alt .coaching-sub{ font-size:.95em; letter-spacing:.15em; }
  .coaching-alt .coaching-mockup-small img{ width:100%; max-width:520px; }
}
@media (max-width:640px){
  .aso-card{ height:440px; }
}
@media (max-width:480px){
  .assist-form form{ flex-direction:column; align-items:flex-start; }
  .assist-form button{ width:auto; }
}

/* FIX: coach-mockup sin marco */
#learn .coach-mockup{
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: min(90vw, 420px);
  height: auto !important;
  margin: 0 auto;
  overflow: visible !important;
}
#learn .coach-mockup img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0 !important;
  box-shadow: none !important;
}

