/* ================================================
   ÁREA DEL ENTRENADOR — Ghost Theme v3
   Fuentes y estilos copiados del original PHP
   ================================================ */

:root {
  --black:      #080A0C;
  --dark:       #0F1215;
  --card:       #141820;
  --border:     #1E2530;
  --accent:     #30BF70;
  --accent-dim: rgba(48,191,112,0.12);
  --white:      #F2F4F0;
  --muted:      #6B7280;
  --text:       #D8DDD5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

html {
  overflow-x: hidden;
}
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
}

/* NOISE */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 100; opacity: 0.4;
}

/* ── HERO GLOW ── */
.hero-glow {
  position: absolute;
  top: -10%;
  left: 10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(
    ellipse 60% 60% at 40% 40%,
    rgba(48,191,112,0.22) 0%,
    rgba(48,191,112,0.08) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height: 68px;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(8,10,12,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center;
  justify-self: start;
  padding-left: 16px;
}

.nav-logo img { height: 42px; width: auto; }

/* Ghost navigation wrapper — centered column */
.nav-middle {
  display: flex; align-items: center;
  justify-content: center;
}

/* Ghost generates <ul class="nav"> */
.nav-middle .nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
  gap: 0;
}

.nav-middle .nav li {
  display: flex !important;
  align-items: center;
}

.nav-middle .nav li a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
  padding: 0 22px;
  white-space: nowrap;
}

.nav-middle .nav li a:hover { color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding-right: 16px;
}

/* Botón outline — Iniciar sesión / Mi cuenta */
.nav-btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  color: var(--text);
  padding: 10px 20px;
  border: 1px solid var(--border);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.nav-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Botón verde — Únete a la Academia / Academia */
.nav-btn-green {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  color: var(--black);
  background: var(--accent);
  padding: 11px 22px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-btn-green:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; z-index: 600;
  padding: 4px; background: none; border: none;
}

.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile actions hidden on desktop */
.nav-mobile-actions { display: none; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  background: var(--accent); color: var(--black);
  padding: 16px 36px; text-decoration: none;
  display: inline-block; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: white; transform: translateX(-100%);
  transition: transform 0.3s ease; opacity: 0.15;
}

.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(48,191,112,0.3); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  color: var(--text); padding: 15px 36px;
  border: 1px solid var(--border); text-decoration: none;
  display: inline-block; transition: all 0.25s;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SECTION TYPOGRAPHY ── */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}

.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

.section-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 0.95; color: var(--white);
  letter-spacing: 0.5px; margin-bottom: 28px;
}

.section-h2 em { color: var(--accent); font-style: normal; }

/* ── HERO ── */
.hero {
  min-height: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 0 60px;
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 30% 40%, rgba(48,191,112,0.18) 0%, rgba(48,191,112,0.05) 50%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(48,191,112,0.06) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(48,191,112,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48,191,112,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 85% 85% at 65% 40%, black 0%, transparent 100%);
}

.hero-cols {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: 1280px; width: 100%; margin-bottom: 72px;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  animation: fadeUp 0.6s ease both 0.1s;
}

.hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--accent); }

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 6.5vw, 100px);
  line-height: 0.93; letter-spacing: -1px;
  color: var(--white); margin-bottom: 24px;
  animation: fadeUp 0.6s ease both 0.25s;
}

.hero-h1 em { color: var(--accent); font-style: normal; display: block; }

.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--muted); max-width: 460px; margin-bottom: 40px;
  animation: fadeUp 0.6s ease both 0.4s;
}

.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-actions {
  display: flex; flex-direction: row;
  align-items: stretch; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s ease both 0.55s;
}
.hero-actions .btn-primary,
.hero-actions .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap;
}

/* Quote card (right column) */
.hero-right { animation: fadeUp 0.7s ease both 0.35s; }

.quote-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 40px 40px 28px; position: relative; overflow: hidden;
}

.quote-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}

.quote-mark {
  font-family: 'Bebas Neue', sans-serif; font-size: 100px;
  color: rgba(48,191,112,0.09); line-height: 0.7;
  position: absolute; top: 14px; right: 24px;
  user-select: none; pointer-events: none;
}

.quote-text {
  font-size: 16px; font-style: italic; font-weight: 300;
  line-height: 1.8; color: var(--text); margin-bottom: 28px;
  padding-top: 6px; min-height: 120px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.quote-text.fade { opacity: 0; transform: translateY(6px); }

.quote-author {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--border); padding-top: 20px;
  margin-bottom: 20px; transition: opacity 0.4s ease;
}

.quote-author.fade { opacity: 0; }

.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(48,191,112,0.35);
  overflow: hidden; flex-shrink: 0;
  background: var(--dark); position: relative;
}

.quote-avatar img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: grayscale(0.15); opacity: 0; transition: opacity 0.35s ease;
}

.quote-avatar img.loaded { opacity: 1; }

.quote-avatar .av-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  color: var(--accent); transition: opacity 0.35s ease; pointer-events: none;
}

.quote-name { font-weight: 600; font-size: 15px; color: var(--white); margin-bottom: 3px; }

.quote-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
}

.quote-connector {
  background: rgba(48,191,112,0.07); border-left: 2px solid var(--accent);
  padding: 13px 16px; font-size: 13px; line-height: 1.6;
  color: var(--text); font-style: italic; transition: opacity 0.4s ease;
}

.quote-connector.fade { opacity: 0; }

.connector-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px; font-style: normal; display: block;
}

.quote-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.quote-dots { display: flex; gap: 6px; }
.quote-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.quote-dot.active { background: var(--accent); transform: scale(1.3); }
.quote-dot:hover:not(.active) { background: var(--muted); }
.quote-progress { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; }
.quote-progress span { color: var(--accent); }
.progress-bar { height: 2px; background: var(--border); margin-top: 14px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent); width: 0%; transition: width linear; }

/* Clubs strip */















/* ── TICKER ── */
.ticker { background: var(--accent); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 25s linear infinite; }
.ticker-item { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px; color: var(--black); padding: 0 40px; display: inline-flex; align-items: center; gap: 40px; }
.ticker-item::after { content: '◆'; font-size: 8px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about {
  padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1400px; margin: 0 auto;
}

.about-text { font-size: 17px; font-weight: 300; line-height: 1.75; color: var(--muted); margin-bottom: 20px; }
.about-text strong { color: var(--text); font-weight: 500; }
.about-quote { border-left: 2px solid var(--accent); padding-left: 24px; margin-top: 32px; font-style: italic; font-size: 16px; color: var(--text); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.about-stat { background: var(--card); border: 1px solid var(--border); padding: 32px; transition: border-color 0.3s; }
.about-stat:hover { border-color: var(--accent); }
.about-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--accent); line-height: 1; }
.about-stat .desc { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }

/* ── PRODUCTS ── */
.products { padding: 120px 60px; background: var(--dark); position: relative; overflow: hidden; }
.products::before { content: 'FORMACIÓN'; position: absolute; top: 40px; right: -20px; font-family: 'Bebas Neue', sans-serif; font-size: 180px; color: rgba(48,191,112,0.03); letter-spacing: 10px; pointer-events: none; }
.products-header { max-width: 1400px; margin: 0 auto 64px; display: flex; align-items: flex-end; justify-content: space-between; }
.products-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.product-card { background: var(--card); border: 1px solid var(--border); padding: 48px 40px; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; text-decoration: none; display: block; color: inherit; }
.product-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.product-card.featured { background: var(--accent); border-color: var(--accent); }
.product-card.featured:hover { transform: translateY(-6px); }
.product-icon { font-size: 28px; margin-bottom: 32px; display: block; }
.product-num { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 3px; color: var(--accent); margin-bottom: 16px; }
.product-card.featured .product-num { color: rgba(8,10,12,0.5); }
.product-title { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 1px; color: var(--white); line-height: 1; margin-bottom: 20px; }
.product-card.featured .product-title { color: var(--black); }
.product-desc { font-size: 15px; font-weight: 300; line-height: 1.65; color: var(--muted); margin-bottom: 40px; }
.product-card.featured .product-desc { color: rgba(8,10,12,0.65); }
.product-link { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 10px; transition: gap 0.2s; }
.product-link::after { content: '→'; }
.product-card:hover .product-link { gap: 16px; }
.product-card.featured .product-link { color: var(--black); }
.product-badge { position: absolute; top: 24px; right: 24px; background: var(--black); color: var(--accent); font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 6px 12px; }

/* ── COMPARISON TABLE ── */
.academia-section { padding: 120px 60px; background: var(--black); position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.academia-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent 0px, transparent 28px, rgba(48,191,112,0.022) 28px, rgba(48,191,112,0.022) 29px); pointer-events: none; }
.academia-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(48,191,112,0.05) 0%, transparent 65%); pointer-events: none; }
.academia-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.academia-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; flex-wrap: wrap; gap: 24px; }
.academia-lead { font-size: 16px; font-weight: 300; color: var(--muted); max-width: 460px; line-height: 1.7; margin-top: 6px; }

.evolution-table { width: 100%; border-collapse: collapse; }
.evolution-table thead th { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 18px 28px; text-align: left; font-weight: 600; }
.evolution-table thead th:first-child { color: var(--muted); width: 26%; }
.evolution-table thead th.col-solo { color: var(--muted); background: var(--dark); border: 1px solid var(--border); border-bottom: 2px solid var(--border); }
.evolution-table thead th.col-area { color: var(--accent); background: rgba(48,191,112,0.08); border: 1px solid rgba(48,191,112,0.3); border-bottom: 2px solid var(--accent); }
.evolution-table tbody td { padding: 18px 28px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 14px; font-weight: 300; line-height: 1.6; vertical-align: top; }
.evolution-table tbody td:first-child { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.evolution-table tbody td.col-solo { color: var(--muted); background: rgba(255,255,255,0.01); border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.evolution-table tbody td.col-area { color: var(--text); background: rgba(48,191,112,0.04); border-left: 1px solid rgba(48,191,112,0.12); border-right: 1px solid rgba(48,191,112,0.12); }
.evolution-table tbody tr:last-child td { border-bottom: none; }
.evolution-table tbody tr:last-child td.col-solo { border-bottom: 1px solid var(--border); }
.evolution-table tbody tr:last-child td.col-area { border-bottom: 1px solid rgba(48,191,112,0.3); }
.evolution-table tbody tr:hover td.col-solo { background: rgba(255,255,255,0.025); }
.evolution-table tbody tr:hover td.col-area { background: rgba(48,191,112,0.07); }

.evo-indicator { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.evo-bar-wrap { flex: 1; height: 3px; background: rgba(255,255,255,0.07); }
.evo-bar { height: 100%; transition: width 1.2s ease; width: 0; }
.evo-bar.slow { background: var(--muted); }
.evo-bar.fast { background: var(--accent); box-shadow: 0 0 8px rgba(48,191,112,0.4); }
.evo-val { font-family: 'Bebas Neue', sans-serif; font-size: 15px; flex-shrink: 0; }
.evo-val.slow { color: var(--muted); }
.evo-val.fast { color: var(--accent); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 120px 60px; max-width: 1400px; margin: 0 auto; }
.testimonials-header { margin-bottom: 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.testimonial { background: var(--card); border: 1px solid var(--border); padding: 40px; transition: border-color 0.3s; }
.testimonial:hover { border-color: rgba(48,191,112,0.3); }
.testimonial-stars { color: var(--accent); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-text { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--text); margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 40px; height: 40px; background: var(--accent-dim); border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--accent); }
.testimonial-info .name { font-weight: 600; font-size: 14px; color: var(--white); }
.testimonial-info .product { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--dark); padding: 120px 60px; position: relative; overflow: hidden; }
.newsletter-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.newsletter::after { content: ''; position: absolute; right: -200px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(48,191,112,0.22); pointer-events: none; }
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-input { background: var(--card); border: 1px solid var(--border); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px; padding: 18px 24px; outline: none; transition: border-color 0.2s; width: 100%; }
.nl-input:focus { border-color: var(--accent); }
.nl-input::placeholder { color: var(--muted); }
.nl-submit { background: var(--accent); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border: none; padding: 18px 36px; cursor: pointer; transition: all 0.25s; align-self: flex-start; }
.nl-submit:hover { opacity: 0.85; transform: translateY(-2px); }
.nl-note { font-size: 13px; color: var(--muted); margin-top: 8px; }
.nl-text { font-size: 17px; font-weight: 300; line-height: 1.75; color: var(--muted); margin-bottom: 20px; }
.nl-text strong { color: var(--text); font-weight: 500; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 48px 60px;
}

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }

.footer-logo-img { height: 48px; width: auto; margin-bottom: 10px; display: block; }

.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 2px;
  color: var(--muted); margin-bottom: 8px;
}

.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* Redes sociales — centradas */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-social-link {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}

.footer-social-link:hover { color: var(--accent); }

.footer-social-link svg { flex-shrink: 0; opacity: 0.7; transition: opacity 0.2s; }
.footer-social-link:hover svg { opacity: 1; }

/* Nav links — alineados a la derecha */
.footer-nav { display: flex; justify-content: flex-end; }

.footer-nav .nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 0;
  list-style: none;
  padding: 0; margin: 0;
}

.footer-nav .nav li { display: inline-flex; }

.footer-nav .nav li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding: 0 14px;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-nav .nav li a:hover { color: var(--accent); }

/* Copyright bar */
.footer-copy-bar {
  border-top: 1px solid var(--border);
  padding: 20px 60px;
}

.footer-copy { font-size: 12px; color: #444; }

/* ── ARTICLE ── */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 64px 40px 80px; }
.article-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 16px; }
.article-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 64px); line-height: 0.95; color: var(--white); letter-spacing: 0.5px; margin-bottom: 16px; }
.article-excerpt { font-size: 18px; font-weight: 300; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; }
.article-image { margin: 24px 0; overflow: hidden; }
.article-image img { width: 100%; }

.gh-content { font-size: 17px; font-weight: 300; color: var(--text); line-height: 1.85; }
.gh-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--white); margin: 40px 0 16px; letter-spacing: 0.5px; line-height: 1; }
.gh-content h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin: 32px 0 12px; }
.gh-content p { margin-bottom: 24px; }
.gh-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.gh-content strong { color: var(--white); font-weight: 600; }
.gh-content blockquote { border-left: 2px solid var(--accent); padding-left: 24px; margin: 32px 0; font-style: italic; color: var(--text); font-size: 18px; line-height: 1.65; }
.gh-content ul, .gh-content ol { padding-left: 24px; margin-bottom: 24px; }
.gh-content li { margin-bottom: 8px; }
.gh-content img { margin: 24px 0; max-width: 100%; }
.gh-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ── KOENIG REQUIRED ── */
.kg-width-wide { margin-left: calc(50% - 50vw + 60px); margin-right: calc(50% - 50vw + 60px); max-width: 1100px; }
.kg-width-full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
.kg-image { max-width: 100%; }
.kg-image-card { margin: 24px 0; }
.kg-image-card img { width: 100%; }
.kg-gallery-container { display: flex; flex-direction: column; gap: 8px; margin: 24px 0; }
.kg-gallery-row { display: flex; gap: 8px; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.kg-bookmark-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; margin: 24px 0; }
.kg-bookmark-container { display: flex; }
.kg-bookmark-content { padding: 20px; flex: 1; }
.kg-bookmark-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.kg-bookmark-description { font-size: 13px; color: var(--muted); line-height: 1.5; }
.kg-bookmark-thumbnail { width: 160px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-callout-card { display: flex; gap: 16px; padding: 20px 24px; background: var(--card); border: 1px solid var(--border); margin: 24px 0; }
.kg-callout-emoji { font-size: 22px; flex-shrink: 0; }
.kg-callout-text { font-size: 15px; color: var(--muted); line-height: 1.65; }
.kg-button-card { text-align: center; margin: 24px 0; }
.kg-btn { display: inline-flex; padding: 16px 36px; background: var(--accent); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.kg-toggle-card { margin: 24px 0; border: 1px solid var(--border); overflow: hidden; }
.kg-toggle-heading { cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--card); }
.kg-toggle-heading-text { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.kg-toggle-content { padding: 16px 20px; font-size: 15px; color: var(--muted); line-height: 1.65; }
.kg-video-card { margin: 24px 0; }
.kg-video-card video { width: 100%; }

.page-wrap { max-width: 780px; margin: 0 auto; padding: 64px 40px 80px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 14px 24px; }
  .nav-hamburger { display: flex; }
  .nav-actions { display: none; }
  /* Menu slides down from below the nav bar */
  .nav-middle {
    position: fixed;
    top: 68px; left: 0; right: 0;
    height: calc(100vh - 68px);
    min-height: 50vh;
    background: #080A0C;
    z-index: 490;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 40px;
    overflow-y: auto;
    opacity: 0; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-middle.open {
    opacity: 1; pointer-events: all;
    transform: translateY(0);
  }
  /* Subtle grass stripes */
  .nav-middle::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      90deg,
      rgba(48,191,112,0.025) 0px, rgba(48,191,112,0.025) 60px,
      rgba(48,191,112,0.012) 60px, rgba(48,191,112,0.012) 120px
    );
    pointer-events: none;
  }
  .nav-middle .nav {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    list-style: none !important;
    padding: 0; margin: 0; width: 100%;
    position: relative; z-index: 1;
  }
  .nav-middle .nav li { display: block !important; text-align: center; width: 100%; }
  .nav-middle .nav li a {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 26px !important;
    letter-spacing: 3px !important;
    color: rgba(240,239,235,0.8) !important;
    text-decoration: none !important;
    padding: 14px 0 !important;
    display: block !important;
    line-height: 1 !important;
    transition: color 0.2s;
  }
  .nav-middle .nav li a:hover,
  .nav-middle .nav li a:active { color: var(--accent) !important; }
  .nav-middle .nav li + li {
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  /* Divider before actions */
  .nav-mobile-actions {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(48,191,112,0.2);
    width: 100%;
    position: relative; z-index: 1;
  }
  .nav-mobile-actions .nav-btn-green,
  .nav-mobile-actions .nav-btn-outline {
    font-size: 13px !important;
    padding: 14px 0 !important;
    width: 100% !important;
    max-width: 280px;
    text-align: center;
    display: block;
  }
  .hero { padding: 0 0 40px; }
  .hero-cols { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
  .hero-h1 { font-size: clamp(52px, 9vw, 80px); }
  .about { grid-template-columns: 1fr; padding: 80px 24px; }
  .products { padding: 80px 24px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .products::before { display: none; }
  .academia-section { padding: 80px 24px; }
  .academia-header { flex-direction: column; align-items: flex-start; }
  .evolution-table thead th, .evolution-table tbody td { padding: 12px 14px; font-size: 13px; }
  .evolution-table tbody td:first-child { font-size: 10px; }
  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 80px 24px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-nav .nav { justify-content: center; }
  .footer-copy-bar { padding: 16px 24px; }
  .article-wrap, .page-wrap { padding: 40px 20px 60px; }
}

@media (min-width: 901px) { .nav-hamburger { display: none; } .nav-mobile-actions { display: none !important; } }

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(48px, 10vw, 64px); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; display: block; }
}

/* HERO SINGLE COLUMN */
.hero-single {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 60px 48px;
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-single .hero-h1 { font-size: clamp(64px, 8vw, 120px); max-width: 820px; }
.hero-single .hero-sub { max-width: 520px; }

/* Newsletter grass stripes via ::before (::after is the circle) */
.newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg,
    rgba(48,191,112,0.06) 0px, rgba(48,191,112,0.06) 60px,
    rgba(48,191,112,0.025) 60px, rgba(48,191,112,0.025) 120px);
  pointer-events: none; z-index: 0;
}

/* ================================================
   SPLASH INTRO
   ================================================ */

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #080A0C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.splash.splash-hide {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.splash-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(48,191,112,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48,191,112,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.splash-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(48,191,112,0.10) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
  animation: splashFadeUp 0.7s ease both 0.2s;
}

.splash-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  letter-spacing: 3px;
  color: #F2F4F0;
  line-height: 0.95;
  margin-bottom: 20px;
  animation: splashFadeUp 0.7s ease both 0.2s;
}

.splash-logo em {
  font-style: normal;
  color: #30BF70;
  display: block;
}

.splash-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #6B7280;
  animation: splashFadeUp 0.7s ease both 0.4s;
}

.splash-bar {
  width: 120px;
  height: 2px;
  background: rgba(48,191,112,0.15);
  margin-top: 28px;
  overflow: hidden;
  animation: splashFadeUp 0.5s ease both 0.6s;
}

.splash-bar-fill {
  height: 100%;
  width: 0%;
  background: #30BF70;
  transition: width 2s linear;
}

.splash-timer {
  position: absolute;
  bottom: 40px;
  left: 50px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #6B7280;
  animation: splashFadeUp 0.5s ease both 0.8s;
}

.splash-skip {
  position: absolute;
  bottom: 36px;
  right: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  animation: splashFadeUp 0.5s ease both 0.8s;
}

.splash-skip:hover { color: #F2F4F0; }

@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Prevent scroll while splash visible */
body.splash-active { overflow: hidden; }


/* ================================================
   PÁGINA ACADEMIA
   ================================================ */

/* Hero */
.ac-hero {
  padding: 0 0 60px;
  position: relative; overflow: hidden;
}

.ac-hero-cols {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 60px;
}

.ac-hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before,
.hero-eyebrow::after { content: ''; display: block; width: 32px; height: 1px; background: var(--accent); }

.ac-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 110px);
  line-height: 0.92; letter-spacing: -1px;
  color: var(--white); margin-bottom: 28px;
}
.ac-h1 em { color: var(--accent); font-style: normal; }

.ac-sub {
  font-size: 17px; font-weight: 300;
  line-height: 1.75; color: var(--muted);
  max-width: 480px; margin-bottom: 40px;
}
.ac-sub strong { color: var(--text); font-weight: 500; }

/* Chart card */
.ac-hero-right { width: 100%; }

.ac-chart-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px 20px;
  position: relative;
}
.ac-chart-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}
.ac-chart-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.ac-chart-svg { width: 100%; height: auto; display: block; }
.ac-chart-note {
  font-size: 12px; font-style: italic; font-weight: 300;
  color: var(--muted); margin-top: 12px; text-align: center;
}

/* Pillars (from PHP — 2x2 grid) */
.pillars { padding: 120px 80px; max-width: 1400px; margin: 0 auto; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; margin-top: 64px;
}
.pillar {
  background: var(--card); border: 1px solid var(--border);
  padding: 52px 48px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.pillar:hover { border-color: var(--accent); transform: translateY(-4px); }
.pillar-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 120px;
  color: rgba(48,191,112,0.05); line-height: 1;
  position: absolute; top: 0; right: 24px; pointer-events: none;
}
.pillar-icon { font-size: 36px; margin-bottom: 28px; display: block; }
.pillar-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.pillar-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 34px;
  letter-spacing: 0.5px; color: var(--white); margin-bottom: 18px; line-height: 1.05;
}
.pillar-desc { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--muted); }
.pillar-tag {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 24px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent);
}
.pillar-tag::before { content: ''; width: 20px; height: 1px; background: var(--accent); }

/* Bonus bar */
.ac-bonus {
  background: var(--card); border: 1px solid rgba(48,191,112,0.3);
  padding: 36px 48px; margin-top: 2px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}

/* For who */
.for-who { background: var(--dark); padding: 120px 80px; position: relative; overflow: hidden; }
.for-who-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.for-who-text p { font-size: 17px; font-weight: 300; line-height: 1.75; color: var(--muted); margin-bottom: 20px; }
.for-who-text p strong { color: var(--text); font-weight: 500; }
.for-who-list { display: flex; flex-direction: column; gap: 2px; }
.for-who-item { background: var(--card); border: 1px solid var(--border); padding: 28px 32px; display: flex; align-items: flex-start; gap: 20px; transition: border-color 0.3s; }
.for-who-item:hover { border-color: var(--accent); }
.for-who-check { color: var(--accent); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.for-who-item-title { font-weight: 600; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.for-who-item-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Pricing section */
.ac-pricing-section { background: var(--black); border-top: 1px solid var(--border); }

/* Countdown banner */
.ac-countdown-banner {
  background: rgba(48,191,112,0.08);
  border-bottom: 1px solid rgba(48,191,112,0.25);
  padding: 20px 80px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.ac-countdown-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.ac-countdown-text {
  font-size: 15px; font-weight: 300; color: var(--text);
}
.ac-countdown-text strong { font-weight: 600; color: var(--white); }
.ac-countdown-timer {
  display: flex; align-items: center; gap: 8px;
}
.ac-countdown-unit {
  display: flex; flex-direction: column; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  padding: 10px 16px; min-width: 64px;
}
.ac-countdown-unit span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: var(--accent); line-height: 1;
}
.ac-countdown-unit small {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}
.ac-countdown-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--muted);
}

/* Pricing cards */
.pricing { padding: 80px 80px; max-width: 1400px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 64px; }
.pricing-card { background: var(--card); border: 1px solid var(--border); padding: 56px 48px; position: relative; transition: border-color 0.3s; }
.pricing-card.featured { background: var(--accent); border-color: var(--accent); }
.pricing-badge {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 7px 14px;
}
.pricing-card:not(.featured) .pricing-badge { background: var(--accent); color: var(--black); }
.pricing-card.featured .pricing-badge { background: var(--black); color: var(--accent); }
.pricing-plan { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 4px; color: var(--muted); margin-bottom: 20px; }
.pricing-card.featured .pricing-plan { color: rgba(8,10,12,0.6); }
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.pricing-amount { font-family: 'Bebas Neue', sans-serif; font-size: 88px; color: var(--white); line-height: 1; }
.pricing-card.featured .pricing-amount { color: var(--black); }
.pricing-per { font-size: 16px; color: var(--muted); }
.pricing-card.featured .pricing-per { color: rgba(8,10,12,0.6); }
.pricing-saving { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 1px; color: var(--accent); margin-bottom: 40px; }
.pricing-card.featured .pricing-saving { color: var(--black); font-weight: 700; }
.ac-original-price { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 36px; }
.pricing-card.featured .pricing-divider { background: rgba(8,10,12,0.2); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 300; line-height: 1.5; color: var(--text); }
.pricing-card.featured .pricing-features li { color: rgba(8,10,12,0.75); }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .pricing-features li::before { color: var(--black); }
.pricing-features li strong { color: var(--white); font-weight: 600; }
.pricing-card.featured .pricing-features li strong { color: var(--black); font-weight: 700; }
.pricing-cta-main { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; background: var(--accent); color: var(--black); padding: 20px 40px; text-decoration: none; text-align: center; transition: all 0.25s; }
.pricing-cta-main:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(48,191,112,0.3); }
.pricing-card.featured .pricing-cta-main { background: var(--black); color: var(--accent); }
.pricing-card.featured .pricing-cta-main:hover { background: #0d1117; opacity: 1; }
.pricing-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }
.pricing-card.featured .pricing-note { color: rgba(8,10,12,0.5); }

/* Testimonials */
.testimonials { padding: 120px 80px; }
.testi-inner { max-width: 1400px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 64px; }
.testi { background: var(--card); border: 1px solid var(--border); padding: 40px; transition: border-color 0.3s; }
.testi:hover { border-color: rgba(48,191,112,0.3); }
.testi-stars { color: var(--accent); font-size: 13px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-text { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; background: var(--accent-dim); border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 15px; color: var(--accent); flex-shrink: 0; }
.testi-info .name { font-weight: 600; font-size: 13px; color: var(--white); }
.testi-info .product { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* FAQ */
.faq-section { padding: 120px 80px; max-width: 1400px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 64px; }
.faq-item { background: var(--card); border: 1px solid var(--border); padding: 32px 40px; cursor: pointer; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(48,191,112,0.3); }
.faq-item.open { border-color: var(--accent); }
.faq-q { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: 0.3px; color: var(--white); display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.faq-arrow { color: var(--accent); font-size: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--muted); margin-top: 18px; display: none; max-width: 800px; }
.faq-item.open .faq-a { display: block; }

/* Contact */
.contact-section { background: var(--dark); padding: 80px; }
.contact-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-input { background: var(--card); border: 1px solid var(--border); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px; padding: 16px 22px; outline: none; transition: border-color 0.2s; width: 100%; resize: none; }
.contact-input:focus { border-color: var(--accent); }
.contact-input::placeholder { color: var(--muted); }
.contact-submit { background: var(--accent); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border: none; padding: 18px 36px; cursor: pointer; align-self: flex-start; transition: all 0.25s; }
.contact-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.contact-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.contact-msg { font-size: 14px; padding: 12px 16px; margin-top: 4px; border-left: 3px solid; display: none; }
.contact-msg-ok { border-color: var(--accent); background: rgba(48,191,112,0.08); color: var(--accent); display: block; }
.contact-msg-err { border-color: #e85050; background: rgba(232,80,80,0.08); color: #e85050; display: block; }

/* Final CTA */
.final-cta { padding: 140px 80px; text-align: center; position: relative; overflow: hidden; }
.final-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Bebas Neue', sans-serif; font-size: 240px; color: rgba(48,191,112,0.03); letter-spacing: 10px; white-space: nowrap; pointer-events: none; z-index: 0; }
.final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.final-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 7vw, 100px); line-height: 0.9; color: var(--white); margin-bottom: 28px; }
.final-h2 em { color: var(--accent); font-style: normal; }
.final-sub { font-size: 17px; font-weight: 300; color: var(--muted); line-height: 1.65; margin-bottom: 48px; }
.final-sub strong { color: var(--text); font-weight: 500; }

/* Delay helpers */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* Responsive Academia */
@media (max-width: 960px) {
  .ac-hero-cols { grid-template-columns: 1fr; padding: 36px 24px 40px; gap: 32px; }
  .ac-hero-right { display: none; }
  .pillars { padding: 80px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .ac-bonus { padding: 28px 24px; flex-direction: column; }
  .for-who { padding: 80px 24px; }
  .for-who-inner { grid-template-columns: 1fr; gap: 40px; }
  .ac-countdown-banner { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
  .pricing { padding: 32px 16px; overflow-x: hidden; }
  .pricing-grid { grid-template-columns: 1fr; gap: 8px; }
  .pricing-card { padding: 28px 20px !important; overflow: hidden; max-width: 100% !important; box-sizing: border-box; }
  .pricing-amount { font-size: 56px !important; }
  .pricing-period { font-size: 14px; }
  .pricing-plan { font-size: 13px; margin-bottom: 12px; }
  .pricing-badge { top: 14px; right: 14px; font-size: 9px; padding: 4px 8px; }
  .pricing-saving { font-size: 12px; margin-bottom: 24px; }
  .pricing-features { gap: 6px; margin-bottom: 20px; }
  .pricing-feature { font-size: 13px; }
  .pricing-divider { margin: 16px 0; }
  .pricing-card .btn-primary,
  .pricing-card .btn-ghost { width: 100% !important; text-align: center; box-sizing: border-box; font-size: 12px; padding: 12px 16px; }
  .pricing-toggle { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .testimonials { padding: 80px 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 80px 24px; }
  .contact-section { padding: 80px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .final-cta { padding: 100px 24px; }
  .final-bg-text { font-size: 100px; }
}

/* ================================================
   PÁGINA NEWSLETTER
   ================================================ */

/* Hero */
.nl-hero {
  padding: 0 0 60px;
  position: relative; overflow: hidden;
}

.nl-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 60px;
}

.nl-hero-left { display: flex; flex-direction: column; align-items: flex-start; }

/* Signup box */
.nl-signup-box { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.nl-fine {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}

/* Already subscribed state */
.nl-already {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(48,191,112,0.07);
  border: 1px solid rgba(48,191,112,0.25);
  padding: 20px 24px; margin-bottom: 28px;
}
.nl-already-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--accent); flex-shrink: 0;
}
.nl-already-title {
  font-weight: 600; font-size: 15px; color: var(--white); margin-bottom: 4px;
}
.nl-already-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Social proof inline */
.nl-proof {
  display: flex; align-items: center; gap: 16px;
  margin-top: 8px;
}
.nl-proof-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--accent); line-height: 1;
}
.nl-proof-sep { width: 1px; height: 28px; background: var(--border); }
.nl-proof-text {
  font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.4;
  max-width: 160px;
}

/* Email mockup */
.nl-email-mock {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.nl-email-mock::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}
.nl-email-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
}
.nl-email-dot { width: 10px; height: 10px; border-radius: 50%; }
.nl-email-bar {
  flex: 1; height: 8px; background: var(--border);
  border-radius: 4px; margin-left: 8px;
}
.nl-email-body { padding: 24px 28px; }
.nl-email-from {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.nl-email-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid rgba(48,191,112,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--accent);
  flex-shrink: 0;
}
.nl-email-sender { font-size: 13px; font-weight: 600; color: var(--white); }
.nl-email-addr  { font-size: 11px; color: var(--muted); margin-top: 1px; }
.nl-email-subject {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: var(--white);
  letter-spacing: 0.3px; line-height: 1.2;
  margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.nl-email-preview {
  position: relative; overflow: hidden; max-height: 100px;
}
.nl-email-preview p {
  font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.7; margin-bottom: 10px;
}
.nl-email-preview em { font-style: italic; color: var(--text); }
.nl-email-blur {
  position: absolute; bottom: 0; left: 0; right: 0; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--card));
}
.nl-email-tag {
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
}

/* What you get */
.nl-what {
  padding: 80px 80px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.nl-what-inner { max-width: 1400px; margin: 0 auto; }
.nl-what-header { margin-bottom: 56px; }
.nl-what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--border);
}
.nl-what-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 52px 48px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.nl-what-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: #30BF70;
}
.nl-what-item:hover .nl-what-title { color: #0A0A0A; }
.nl-what-item:hover .nl-what-desc  { color: rgba(0,0,0,0.65); }
.nl-what-item:hover .nl-what-icon  { color: #0A0A0A; background: rgba(0,0,0,0.12); border-color: rgba(0,0,0,0.1); }
.nl-what-item:hover .nl-what-label { color: rgba(0,0,0,0.5); }
.nl-what-icon {
  font-size: 36px; margin-bottom: 28px; display: block;
}
.nl-what-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.5px;
  color: var(--white); margin-bottom: 14px; line-height: 1;
}
.nl-what-desc {
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.75;
}

/* Stats bar */
.nl-stats-bar {
  background: var(--accent);
  padding: 32px 80px;
  border-top: none;
}
.nl-stats-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.nl-stat-item { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 120px; }
.nl-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; color: var(--black); line-height: 1;
}
.nl-stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(8,10,12,0.6); text-align: center; margin-top: 4px;
}
.nl-stat-sep { width: 1px; height: 40px; background: rgba(8,10,12,0.15); flex-shrink: 0; }

/* Testimonials */
.nl-testimonials { padding: 100px 80px; background: var(--black); border-top: 1px solid var(--border); }
.nl-testi-inner { max-width: 1400px; margin: 0 auto; }

/* CTA */
.nl-cta { padding: 100px 80px; text-align: center; }
.nl-cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }

/* Newsletter vs Academia */
.nl-vs {
  padding: 100px 80px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.nl-vs-inner { max-width: 900px; margin: 0 auto; }
.nl-vs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border);
}
.nl-vs-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}
.nl-vs-featured {
  background: var(--black);
  border-color: rgba(48,191,112,0.3);
}
.nl-vs-badge {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; background: var(--accent);
  color: var(--black); padding: 4px 16px;
  border-radius: 0 0 8px 8px; white-space: nowrap;
}
.nl-vs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.nl-vs-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: var(--white); line-height: 1;
  margin-bottom: 24px;
}
.nl-vs-featured .nl-vs-price { color: var(--accent); }
.nl-vs-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.nl-vs-list li {
  font-size: 14px; font-weight: 300; color: var(--text); line-height: 1.5;
}
.nl-vs-btn {
  display: block; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; padding: 16px; text-decoration: none;
  transition: all 0.2s;
}
.nl-vs-btn-outline { border: 1px solid var(--border); color: var(--text); }
.nl-vs-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.nl-vs-btn-green { background: var(--accent); color: var(--black); }
.nl-vs-btn-green:hover { opacity: 0.85; transform: translateY(-1px); }
.nl-vs-active {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); text-align: center; padding: 16px 0;
}

/* Responsive newsletter */
@media (max-width: 960px) {
  .nl-hero-inner { grid-template-columns: 1fr; padding: 36px 24px 40px; }
  .nl-hero-right { display: none; }
  .nl-what { padding: 70px 24px; }
  .nl-what-grid { grid-template-columns: 1fr; }
  .nl-stats-bar { padding: 28px 24px; }
  .nl-stat-sep { display: none; }
  .nl-testimonials { padding: 70px 24px; }
  .nl-cta { padding: 70px 24px; }
  .nl-vs { padding: 70px 24px; }
  .nl-vs-grid { grid-template-columns: 1fr; }
}

/* ================================================
   PÁGINA DE ERROR (404 / 500)
   ================================================ */

.err-section {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 60px 80px 60px;
}

.err-inner {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
  text-align: center;
}

.err-bg-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 28vw, 320px);
  color: rgba(48,191,112,0.04);
  letter-spacing: 8px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.err-content { position: relative; z-index: 1; }

.err-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.err-eyebrow::before,
.err-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }

.err-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.93; letter-spacing: -1px;
  color: var(--white); margin-bottom: 28px;
}
.err-title em { color: var(--accent); font-style: normal; display: block; }

.err-desc {
  font-size: 17px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  max-width: 500px; margin: 0 auto 40px;
}

.err-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin-top: 36px; margin-bottom: 60px;
}

/* Links útiles */
.err-links { margin-top: 12px; }

.err-links-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.err-links-label::before,
.err-links-label::after { content: ''; display: block; flex: 1; max-width: 60px; height: 1px; background: var(--border); }

.err-links-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  max-width: 600px; margin: 0 auto;
}

.err-link-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.err-link-card:hover { border-color: var(--accent); background: var(--dark); }

.err-link-icon { font-size: 24px; }

.err-link-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.5px;
  color: var(--white); line-height: 1;
}

.err-link-desc {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .err-section { padding: 48px 24px 48px; }
  .err-links-grid { grid-template-columns: 1fr; max-width: 320px; }
  .err-bg-num { font-size: 140px; }
}


/* ================================================
   PÁGINA FORMACIÓN — Cursos & Ebooks
   ================================================ */

/* Hero */
.fm-hero {
  padding: 0 0 48px;
  position: relative; overflow: hidden;
}
.fm-hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 52px;
}
.fm-meta {
  display: flex; align-items: center; gap: 28px;
  margin-top: 32px; flex-wrap: wrap;
}
.fm-meta-item { display: flex; flex-direction: column; gap: 3px; }
.fm-meta-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: var(--accent); line-height: 1;
}
.fm-meta-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.fm-meta-sep { width: 1px; height: 36px; background: var(--border); }
.fm-member-note {
  margin-top: 20px;
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.fm-member-note a {
  color: var(--accent); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}

/* Catalog */
.fm-catalog {
  padding: 60px 80px 100px;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.fm-catalog-inner { max-width: 1400px; margin: 0 auto; }

/* Filters */
.fm-filters {
  display: flex; gap: 2px;
  margin-bottom: 40px;
}
.fm-filter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; padding: 10px 24px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  transition: all 0.2s;
}
.fm-filter:hover { border-color: var(--accent); color: var(--accent); }
.fm-filter.active {
  background: var(--accent); border-color: var(--accent);
  color: var(--black);
}

/* Product grid */
.fm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

/* Product card */
.fm-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.fm-card:hover { border-color: rgba(48,191,112,0.35); transform: translateY(-4px); }
.fm-card-soon { opacity: 0.75; }
.fm-card-soon:hover { opacity: 1; transform: translateY(-4px); }

.fm-card-soon-badge {
  position: absolute; top: 0; right: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; background: var(--border);
  color: var(--muted); padding: 5px 12px;
  border-radius: 0 0 6px 6px;
}

.fm-card-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}
.fm-card-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px;
  background: var(--green-bg); color: var(--accent);
  border: 1px solid rgba(48,191,112,0.2);
}
.fm-card-type-curso {
  background: rgba(100,140,255,0.08); color: #8ba8ff;
  border-color: rgba(100,140,255,0.2);
}
.fm-card-level {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.fm-card-icon { font-size: 32px; }
.fm-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.5px;
  color: var(--white); line-height: 1.05;
}
.fm-card-desc {
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
}
.fm-card-includes {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
  flex: 1;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.fm-card-includes li {
  font-size: 13px; font-weight: 300; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.fm-card-includes li::before {
  content: '→'; color: var(--accent); font-size: 12px;
  flex-shrink: 0; margin-top: 1px;
}

/* Card footer */
.fm-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
  margin-top: auto;
}
.fm-card-footer-soon { flex-direction: column; align-items: flex-start; }
.fm-card-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.fm-price-now {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: var(--white); line-height: 1;
}
.fm-price-before {
  font-size: 16px; color: var(--muted);
  text-decoration: line-through;
}
.fm-price-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 8px;
  background: var(--green-bg); color: var(--accent);
  border: 1px solid rgba(48,191,112,0.2);
  align-self: center;
}
.fm-price-soon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.fm-card-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; padding: 12px 22px;
  background: var(--accent); color: var(--black);
  text-decoration: none; white-space: nowrap;
  transition: all 0.2s; flex-shrink: 0;
}
.fm-card-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.fm-card-btn-outline {
  background: transparent;
  border: 1px solid var(--border); color: var(--muted);
}
.fm-card-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Why section */
.fm-why {
  padding: 100px 80px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.fm-why-inner { max-width: 1400px; margin: 0 auto; }
.fm-why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
}
.fm-why-item {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: border-color 0.3s;
}
.fm-why-item:hover { border-color: rgba(48,191,112,0.3); }
.fm-why-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.fm-why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--white);
  letter-spacing: 0.5px; margin-bottom: 12px;
}
.fm-why-desc {
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
}

/* CTA */
.fm-cta { padding: 100px 80px; text-align: center; }
.fm-cta-inner { max-width: 680px; margin: 0 auto; }

/* Responsive */
@media (max-width: 960px) {
  .fm-hero-inner { padding: 36px 24px 36px; }
  .fm-catalog { padding: 40px 24px 70px; }
  .fm-grid { grid-template-columns: 1fr; }
  .fm-why { padding: 70px 24px; }
  .fm-why-grid { grid-template-columns: 1fr 1fr; }
  .fm-cta { padding: 70px 24px; }
}
@media (max-width: 600px) {
  .fm-why-grid { grid-template-columns: 1fr; }
  .fm-meta { gap: 16px; }
}

/* ================================================
   PÁGINA DE LOGIN / ACCEDER
   ================================================ */

.login-section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}

.login-wrap {
  position: relative; z-index: 2;
  width: 100%; max-width: 480px;
}

/* Card */
.login-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 48px 44px;
  position: relative;
}
.login-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}

/* Logo */
.login-logo {
  display: flex; justify-content: center;
  margin-bottom: 32px;
}
.login-logo img { height: 44px; width: auto; }
.login-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px; color: var(--white);
}

/* Logged in state */
.login-welcome-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--accent);
  text-align: center; margin-bottom: 12px;
}
.login-links {
  display: flex; flex-direction: column; gap: 10px; margin: 28px 0;
}
.login-manage {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); text-align: center; display: block;
  transition: color .2s;
}
.login-manage:hover { color: var(--accent); }

/* Tabs */
.login-tabs {
  display: flex; gap: 2px;
  margin-bottom: 28px;
  background: var(--border);
}
.login-tab {
  flex: 1; padding: 11px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; cursor: pointer;
  background: var(--dark); border: none;
  color: var(--muted); transition: all .2s;
}
.login-tab.active {
  background: var(--accent); color: var(--black);
}
.login-tab:hover:not(.active) { color: var(--white); }

/* Panes */
.login-pane { display: none; }
.login-pane.active { display: block; }

/* Title */
.login-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; letter-spacing: 0.5px;
  color: var(--white); line-height: 1; margin-bottom: 10px;
}
.login-title em { color: var(--accent); font-style: normal; }
.login-sub {
  font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.65; margin-bottom: 24px;
}

/* Form */
.login-form { display: flex; flex-direction: column; gap: 14px; }
.login-field { display: flex; flex-direction: column; gap: 6px; }
.login-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.login-input {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px; padding: 14px 18px;
  outline: none; transition: border-color .2s;
  width: 100%;
}
.login-input:focus { border-color: var(--accent); }
.login-input::placeholder { color: var(--muted); }

/* Error */
.login-error {
  font-size: 13px; color: #e85050;
  background: rgba(232,80,80,0.08);
  border-left: 2px solid #e85050;
  padding: 10px 14px;
  display: none;
}
.login-error:not(:empty) { display: block; }

/* Buttons */
.login-btn-primary {
  display: block; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; padding: 16px 24px;
  background: var(--accent); color: var(--black);
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; width: 100%;
}
.login-btn-primary:hover { opacity: .85; transform: translateY(-1px); }
.login-btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.login-btn-outline {
  display: block; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; padding: 15px 24px;
  border: 1px solid var(--border); color: var(--muted);
  text-decoration: none; cursor: pointer; background: transparent;
  transition: all .2s; width: 100%;
}
.login-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.login-submit { margin-top: 4px; }

/* Success state */
.login-success {
  flex-direction: column; align-items: center;
  text-align: center; gap: 12px; padding: 20px 0;
}
.login-success-icon {
  font-size: 36px; color: var(--accent);
}
.login-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--white); letter-spacing: .5px;
}
.login-success-desc {
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.65; max-width: 320px;
}

/* Privacy note */
.login-privacy {
  font-size: 12px; color: var(--muted);
  text-align: center; margin-top: 10px; line-height: 1.5;
}

/* Switch link */
.login-switch {
  font-size: 13px; color: var(--muted);
  text-align: center; margin-top: 18px;
}
.login-switch-btn {
  background: none; border: none; cursor: pointer;
  color: var(--accent); font-size: 13px;
  font-family: 'Barlow', sans-serif;
  text-decoration: underline; text-underline-offset: 2px;
  padding: 0;
}
.login-switch-btn:hover { color: #5dd49a; }

/* Divider */
.login-divider {
  height: 1px; background: var(--border);
  margin: 24px 0;
}
.login-divider-row {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0;
}
.login-divider-line { flex: 1; height: 1px; background: var(--border); }
.login-divider-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}

/* Academia CTA */
.login-academia {
  background: var(--dark);
  border: 1px solid rgba(48,191,112,0.2);
  padding: 18px 20px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.login-academia-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.login-academia-desc {
  font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.4;
}
.login-academia .login-btn-outline {
  width: auto; white-space: nowrap; flex-shrink: 0;
  padding: 10px 18px;
}

/* ================================================
   DASHBOARD ACADEMIA (mi-academia)
   ================================================ */

.da-wrap { background: var(--black); min-height: 100vh; }

/* Header */
.da-header {
  padding: 0 0 32px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.da-header-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 40px;
}
.da-welcome-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.da-welcome-tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.da-welcome-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.93; letter-spacing: -1px;
  color: var(--white); margin-bottom: 28px;
}
.da-welcome-title em { color: var(--accent); font-style: normal; }
.da-member-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.da-meta-item { display: flex; flex-direction: column; gap: 2px; }
.da-meta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.da-meta-val { font-size: 14px; font-weight: 500; color: var(--white); }
.da-meta-link {
  font-size: 13px; color: var(--accent);
  font-weight: 600; text-decoration: none;
  transition: opacity .2s;
}
.da-meta-link:hover { opacity: .75; }
.da-meta-sep { width: 1px; height: 32px; background: var(--border); }

/* Body */
.da-body {
  max-width: 1400px; margin: 0 auto;
  padding: 48px 80px 80px;
  display: flex; flex-direction: column; gap: 48px;
}

/* Body wrapper — white background */
.da-body-wrap {
  background: #F5F4F0;
}

/* Section */
.da-section { display: flex; flex-direction: column; gap: 20px; }
.da-section-header {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.da-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #888;
}
.da-section-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #1D9E5F; text-decoration: none; font-weight: 600;
  transition: opacity .2s;
}
.da-section-link:hover { opacity: .75; }

/* Access grid */
.da-access-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; background: #1D9E5F;
}
.da-access-card {
  background: #30BF70; border: none;
  padding: 32px 28px;
  display: flex; align-items: center; gap: 18px;
  text-decoration: none; color: inherit;
  transition: background .2s, transform .15s;
}
.da-access-card:hover { background: #27A866; transform: translateY(-2px); }
.da-access-icon { font-size: 24px; flex-shrink: 0; }
.da-access-info { flex: 1; }
.da-access-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: .5px;
  color: #0A0A0A; margin-bottom: 4px; line-height: 1;
}
.da-access-desc {
  font-size: 13px; font-weight: 400; color: rgba(0,0,0,0.55);
}
.da-access-arrow {
  color: rgba(0,0,0,0.4); font-size: 20px; flex-shrink: 0;
  transition: transform .2s;
}
.da-access-card:hover .da-access-arrow { transform: translateX(5px); color: #0A0A0A; }

/* New posts grid */
.da-new-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: #E0DFD8;
}
.da-new-card {
  background: var(--card); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: border-color .2s;
  overflow: hidden;
}
.da-new-card:hover { border-color: rgba(48,191,112,.35); }
.da-new-img {
  height: 140px;
  background-size: cover; background-position: center;
  background-color: var(--dark);
}
.da-new-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.da-new-body { padding: 20px 22px; }
.da-new-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.da-new-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: .3px;
  color: #0A0A0A; line-height: 1.1; margin-bottom: 8px;
}
.da-new-meta {
  font-size: 12px; color: #888; font-weight: 300;
}

/* Two column layout */
.da-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border);
  align-items: start;
}
.da-two-col .da-section {
  background: #fff; border: 1px solid #E0DFD8;
  padding: 32px;
}

/* Month card */
.da-month-card {}
.da-month-content { font-size: 15px; font-weight: 300; line-height: 1.75; color: #555; }
.da-month-content strong { color: #0A0A0A; font-weight: 600; }
.da-month-content ul { padding-left: 1.2rem; margin: 12px 0; }
.da-month-content li { margin-bottom: 6px; }
.da-month-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* Featured */
.da-featured-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid rgba(48,191,112,.3);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.da-featured-card:hover { border-color: #30BF70; box-shadow: 0 2px 12px rgba(48,191,112,.1); }
.da-featured-img {
  height: 160px;
  background-size: cover; background-position: center;
  background-color: var(--dark);
}
.da-featured-body { padding: 20px 22px; }
.da-featured-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.da-featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .3px;
  color: #0A0A0A; margin-bottom: 8px; line-height: 1.1;
}
.da-featured-desc {
  font-size: 13px; font-weight: 300; color: #666;
  line-height: 1.6; margin-bottom: 14px;
}
.da-featured-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}

/* Offer banner */
.da-offer {
  background: #E8FAF2;
  border: 1px solid rgba(48,191,112,.35) !important;
}
.da-offer-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding: 28px 32px;
}
.da-offer-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.da-offer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; color: #0A0A0A; letter-spacing: .3px;
  margin-bottom: 6px; line-height: 1;
}
.da-offer-desc { font-size: 14px; font-weight: 300; color: #555; }
.da-offer-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; padding: 14px 28px;
  background: var(--accent); color: var(--black);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: opacity .2s;
}
.da-offer-btn:hover { opacity: .85; }

/* Asesoría */
.da-asesoria {
  background: #30BF70;
  padding: 60px 80px;
  margin: 0 -80px; /* bleed to section edges */
}
.da-asesoria-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: 1400px; margin: 0 auto;
}
.da-asesoria-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px; letter-spacing: .3px;
  color: #0A0A0A; line-height: 1; margin: 12px 0 16px;
}
.da-asesoria-title em { color: #fff; font-style: normal; }
.da-asesoria-desc {
  font-size: 15px; font-weight: 300; color: #0A0A0A;
  line-height: 1.75; margin-bottom: 24px;
}
.da-asesoria-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.da-asesoria-list li {
  font-size: 14px; font-weight: 400; color: #0A0A0A;
  display: flex; align-items: center; gap: 10px;
}
.da-asesoria-list li::before {
  content: ''; width: 16px; height: 1px;
  background: rgba(0,0,0,0.4); flex-shrink: 0;
}

/* Form */
.da-asesoria-form { display: flex; flex-direction: column; gap: 14px; }
.da-form-field { display: flex; flex-direction: column; gap: 6px; }
.da-form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(0,0,0,0.55); font-weight: 600;
}
.da-form-input {
  background: rgba(255,255,255,0.85); border: 1px solid rgba(0,0,0,0.15);
  color: #0A0A0A; font-family: 'Barlow', sans-serif;
  font-size: 15px; padding: 14px 18px;
  outline: none; transition: border-color .2s; width: 100%;
}
.da-form-input:focus { border-color: rgba(0,0,0,0.5); background: #fff; }
.da-form-input::placeholder { color: rgba(0,0,0,0.35); }
.da-form-input[readonly] { color: rgba(0,0,0,0.4); cursor: default; }
.da-form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.da-form-select option { background: var(--card); color: var(--white); }
.da-form-textarea { resize: vertical; min-height: 130px; }
.da-form-error {
  font-size: 13px; color: #e85050;
  background: rgba(232,80,80,.08); border-left: 2px solid #e85050;
  padding: 10px 14px; display: none;
}
.da-form-error:not(:empty) { display: block; }
.da-form-submit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; padding: 18px 32px;
  background: #0A0A0A; color: #fff;
  border: none; cursor: pointer; align-self: flex-start;
  transition: all .2s;
}
.da-form-submit:hover { opacity: .85; transform: translateY(-1px); }
.da-form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.da-form-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(0,0,0,0.4); margin-top: 4px;
}

/* Success asesoría */
.da-asesoria-success {
  flex-direction: column; align-items: center;
  text-align: center; gap: 14px; padding: 40px 20px;
  background: rgba(255,255,255,0.85); border: 1px solid rgba(0,0,0,0.1);
}
.da-success-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: #0A0A0A;
}
.da-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #0A0A0A; letter-spacing: .5px;
}
.da-success-desc {
  font-size: 14px; font-weight: 300; color: rgba(0,0,0,0.6);
  line-height: 1.7; max-width: 340px;
}

/* Responsive */
@media (max-width: 960px) {
  .da-header-inner { padding: 96px 24px 36px; }
  .da-body { padding: 36px 24px 60px; gap: 36px; }
  .da-access-grid { grid-template-columns: 1fr; }
  .da-new-grid { grid-template-columns: 1fr; }
  .da-two-col { grid-template-columns: 1fr; }
  .da-asesoria-inner { grid-template-columns: 1fr; gap: 36px; }
  .da-offer-inner { flex-direction: column; padding: 24px; }
}

/* ================================================
   POST CLARO — Entre Líneas / Biblioteca
   ================================================ */

/* Header — oscuro, mantiene la marca */
.lt-header {
  background: #30BF70;
  border-bottom: none;
  padding: 0 0 0;
  position: relative; overflow: hidden;
}
.lt-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 85% at 70% 40%, black 0%, transparent 100%);
  pointer-events: none;
}

.lt-header-inner {
  position: relative; z-index: 2;
  max-width: 78%; margin: 0 auto;
  padding: 96px 40px 52px;
}

.lt-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,0.5); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.lt-tag::before { content: '←'; }
.lt-tag:hover { opacity: .75; }

.lt-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.95; letter-spacing: -0.5px;
  color: #0A0A0A; margin-bottom: 20px;
}

.lt-excerpt {
  font-size: 19px; font-weight: 300; font-style: italic;
  color: #fff;
  line-height: 1.65; margin-bottom: 24px;
  max-width: 640px;
  border-left: 2px solid rgba(0,0,0,0.2);
  padding-left: 20px;
}

.lt-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.lt-meta-dot { color: rgba(0,0,0,0.2); }
.lt-badge-member {
  background: rgba(0,0,0,0.1); color: rgba(0,0,0,0.55);
  padding: 3px 8px; font-size: 10px;
  border: 1px solid rgba(0,0,0,0.15);
}

.lt-feature-img {
  margin-top: 32px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.lt-feature-img img { width: 100%; display: block; }

/* Body — fondo claro, tipografía para lectura larga */
.lt-body {
  background: #F7F6F2;
  min-height: 60vh;
}

.lt-body-inner {
  max-width: 75%; margin: 0 auto;
  padding: 64px 40px 80px;
}

/* Contenido tipográfico */
.lt-content {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.85;
  color: #1A1A1A;
}

.lt-content p {
  margin-bottom: 1.6rem;
}

.lt-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: 0.3px;
  color: #0A0A0A; margin: 2.5rem 0 1rem;
  line-height: 1;
}

.lt-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #0A0A0A; margin: 2rem 0 0.75rem;
}

.lt-content strong {
  font-weight: 600; color: #0A0A0A;
}

.lt-content em {
  font-style: italic; color: #2D2D2D;
}

.lt-content a {
  color: #2E9160;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lt-content a:hover { color: #30BF70; }

.lt-content blockquote {
  border-left: 3px solid #30BF70;
  padding: 6px 0 6px 24px;
  margin: 2rem 0;
  font-size: 19px; font-style: italic;
  color: #444; line-height: 1.7;
  background: rgba(48,191,112,0.04);
  border-radius: 0 4px 4px 0;
}

.lt-content ul,
.lt-content ol {
  padding-left: 1.6rem;
  margin-bottom: 1.6rem;
}

.lt-content li {
  margin-bottom: 0.6rem;
  line-height: 1.75;
}

.lt-content hr {
  border: none;
  border-top: 1px solid #DDD;
  margin: 3rem 0;
}

.lt-content img {
  border-radius: 4px;
  margin: 2rem 0;
  max-width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.lt-content figure {
  margin: 2rem 0;
}

.lt-content figcaption {
  font-size: 14px; color: #888;
  text-align: center; margin-top: 8px;
  font-style: italic;
}

/* Koenig en fondo claro */
.lt-content .kg-callout-card {
  background: #EEEDFE;
  border: 1px solid #CECBF6;
  border-radius: 6px;
  padding: 18px 22px;
  margin: 2rem 0;
  display: flex; gap: 14px;
}
.lt-content .kg-callout-emoji { font-size: 20px; flex-shrink: 0; }
.lt-content .kg-callout-text { font-size: 16px; color: #3C3489; line-height: 1.65; }
.lt-content .kg-toggle-card {
  border: 1px solid #DDD; border-radius: 6px;
  overflow: hidden; margin: 2rem 0;
}
.lt-content .kg-toggle-heading {
  padding: 14px 18px; background: #F0EFF0;
  cursor: pointer; display: flex; justify-content: space-between;
}
.lt-content .kg-toggle-heading-text {
  font-weight: 600; font-size: 16px; color: #0A0A0A;
}
.lt-content .kg-toggle-content {
  padding: 14px 18px; font-size: 16px; color: #333; line-height: 1.65;
}
.lt-content .kg-button-card { text-align: center; margin: 2rem 0; }
.lt-content .kg-btn {
  background: #30BF70; color: #fff; border-radius: 4px;
  padding: 12px 28px; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
}

/* Footer del post */
.lt-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding-top: 40px; margin-top: 48px;
  border-top: 1px solid #DDD;
}
.lt-footer-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #1D9E5F; text-decoration: none; font-weight: 700;
  transition: opacity .2s;
}
.lt-footer-tag:hover { opacity: .75; }
.lt-footer-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #888; text-decoration: none; transition: color .2s;
}
.lt-footer-link:hover { color: #30BF70; }

/* Paywall en fondo claro */
.lt-paywall {
  margin-top: 48px; padding: 2px;
  background: linear-gradient(135deg, rgba(48,191,112,0.3), rgba(48,191,112,0.05));
  border-radius: 8px;
}
.lt-paywall-inner-wrap {
  background: #fff; border-radius: 6px;
  padding: 48px 40px; text-align: center;
}
.lt-paywall { text-align: center; background: #fff;
  border: 1px solid rgba(48,191,112,0.3);
  padding: 48px 40px; border-radius: 6px;
  margin-top: 48px;
}
.lt-paywall-icon { font-size: 32px; margin-bottom: 14px; }
.lt-paywall-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #0A0A0A;
  letter-spacing: 0.3px; margin-bottom: 12px;
}
.lt-paywall-desc {
  font-size: 15px; color: #666; line-height: 1.7;
  max-width: 440px; margin: 0 auto 28px;
}
.lt-paywall-btns {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.lt-paywall .btn-primary { background: #30BF70; color: #fff; }
.lt-paywall .btn-ghost {
  border: 1px solid #DDD; color: #333; background: transparent;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; padding: 15px 26px; text-decoration: none;
  display: inline-flex; align-items: center;
}
.lt-paywall-note {
  font-size: 12px; color: #999; margin-top: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .lt-header-inner { padding: 80px 18px 32px; }
  .lt-body-inner {
    max-width: 100% !important;
    padding: 28px 18px 48px;
  }
  .lt-content { font-size: 16px; line-height: 1.8; }
  .lt-paywall { padding: 28px 18px; }
  .lt-contact-green { margin: 32px -18px 0; padding: 28px 18px 36px; }
  .lt-footer { flex-direction: column; gap: 10px; align-items: flex-start; }
  .lt-form-row { grid-template-columns: 1fr; }

  /* Images inside post content — centered on mobile */
  .lt-content img,
  .lt-content figure,
  .lt-content .kg-image-card img,
  .lt-content .kg-gallery-image img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .lt-content .kg-image-card,
  .lt-content figure,
  .lt-content .kg-gallery-card {
    display: flex !important;
    justify-content: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .lt-content .kg-embed-card iframe,
  .lt-content iframe {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ================================================
   PÁGINA ENTRE LÍNEAS
   ================================================ */

/* Hero */
.el-hero { padding: 0 0 48px; position: relative; overflow: hidden; }
.el-hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 52px;
}
.el-meta {
  display: flex; align-items: center; gap: 28px;
  margin-top: 32px; flex-wrap: wrap;
}
.el-meta-item { display: flex; flex-direction: column; gap: 3px; }
.el-meta-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: var(--accent); line-height: 1;
}
.el-meta-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.el-meta-sep { width: 1px; height: 36px; background: var(--border); }

/* Section */
.el-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 56px 0 100px;
}
.el-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }

/* Filters */
.el-filters {
  display: flex; gap: 2px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.el-filter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; padding: 10px 22px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer; transition: all 0.2s;
}
.el-filter:hover { border-color: var(--accent); color: var(--accent); }
.el-filter.active { background: var(--accent); border-color: var(--accent); color: var(--black); }

/* Featured — artículo destacado ancho completo */
.el-featured {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  overflow: hidden; margin-bottom: 2px;
  text-decoration: none; color: inherit;
  transition: border-color 0.3s;
  min-height: 320px;
}
.el-featured:hover { border-color: rgba(48,191,112,0.4); }
.el-featured-left {
  flex: 1; padding: 48px 52px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  background: var(--card);
}
.el-featured-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.el-badge-new {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px;
  background: var(--accent); color: var(--black);
}
.el-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.el-featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 0.97; letter-spacing: -0.5px;
  color: var(--white); margin-bottom: 18px;
}
.el-featured-excerpt {
  font-size: 16px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  max-width: 560px; flex: 1;
}
.el-featured-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.el-reading-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.el-featured-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent);
  transition: gap 0.2s;
}
.el-featured-img {
  width: 380px; flex-shrink: 0;
  background-size: cover; background-position: center;
  background-color: var(--dark);
}
.el-featured-img-empty {
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; opacity: 0.15;
}

/* Grid de artículos */
.el-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
}
.el-card {
  background: var(--card); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s; overflow: hidden;
}
.el-card:hover { border-color: rgba(48,191,112,0.35); }
.el-card-img {
  height: 160px;
  overflow: hidden;
  background-size: cover; background-position: center;
  background-color: var(--dark); flex-shrink: 0;
  transition: transform 0.4s ease;
  position: relative;
}
.el-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,10,12,0);
  transition: background 0.3s ease;
}
.el-card:hover .el-card-img { transform: scale(1.04); }
.el-card:hover .el-card-img::after { background: rgba(8,10,12,0.4); }
.el-card-img-empty {
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; opacity: 0.12;
}
.el-card-body {
  padding: 28px 32px;
  display: flex; flex-direction: column; flex: 1;
}
.el-card-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.el-card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 3px 9px;
  background: var(--green-bg); color: var(--accent);
  border: 1px solid rgba(48,191,112,0.2);
}
.el-card-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}
.el-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.3px;
  color: var(--white); line-height: 1.05;
  margin-bottom: 12px;
}
.el-card-excerpt {
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.65;
  flex: 1; margin-bottom: 20px;
}
.el-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
  margin-top: auto;
}
.el-card-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent);
}

/* Empty state */
.el-empty {
  flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  padding: 80px 40px;
}
.el-empty-icon { font-size: 40px; opacity: 0.3; }
.el-empty-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; color: var(--muted); letter-spacing: 0.5px;
}
.el-empty-desc { font-size: 14px; color: var(--muted); }

/* Blur placeholders para no-miembros */
.el-blur-wrap { position: relative; margin-bottom: 0; }
.el-blur-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--border);
  filter: blur(6px); pointer-events: none;
  user-select: none; opacity: 0.5;
}
.el-blur-card {
  background: var(--card); border: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
}
.el-blur-img { height: 160px; background: var(--dark); }
.el-blur-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 10px; }
.el-blur-tag { height: 12px; width: 70px; background: var(--border); border-radius: 2px; }
.el-blur-title { height: 16px; width: 90%; background: var(--border); border-radius: 2px; }
.el-blur-meta { height: 10px; width: 50%; background: var(--border); border-radius: 2px; margin-top: 8px; }
.el-blur-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

/* Gate / Paywall */
.el-gate {
  text-align: center; padding: 52px 40px 0;
  max-width: 540px; margin: 0 auto;
}
.el-gate-icon { font-size: 32px; margin-bottom: 16px; }
.el-gate-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: var(--white);
  letter-spacing: 0.5px; margin-bottom: 12px;
}
.el-gate-desc {
  font-size: 15px; font-weight: 300; color: var(--muted);
  line-height: 1.7; margin-bottom: 28px;
}
.el-gate-btns {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.el-gate-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-top: 14px;
}

/* Responsive */
@media (max-width: 960px) {
  .el-hero-inner { padding: 96px 24px 40px; }
  .el-inner { padding: 0 24px; }
  .el-featured { flex-direction: column; }
  .el-featured-img { width: 100%; height: 180px; }
  .el-featured-left { padding: 24px; }
  .el-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================
   PÁGINA ESPACIO REDUCIDO
   ================================================ */

.er-hero { padding: 0 0 48px; position: relative; overflow: hidden; }
.er-hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 52px;
}

.er-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 100px;
}
.er-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }

/* Edition header */
.er-edition-header { margin-bottom: 40px; }
.er-edition-meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.er-edition-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px;
  background: var(--accent); color: var(--black);
}
.er-edition-sep { color: var(--border); font-size: 14px; }
.er-edition-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.er-edition-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px;
  border: 1px solid rgba(48,191,112,0.25); color: var(--accent);
}
.er-edition-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.97; letter-spacing: -0.5px;
  color: var(--white); margin-bottom: 16px;
}
.er-edition-desc {
  font-size: 16px; font-weight: 300; color: var(--muted);
  line-height: 1.75; max-width: 680px;
}

/* Video */
.er-video-wrap { margin-bottom: 40px; }
.er-video-wrap iframe {
  width: 100%; aspect-ratio: 16/9;
  border: none; display: block;
  background: var(--dark);
}
.er-video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.er-video-empty {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; text-align: center;
}
.er-video-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: rgba(48,191,112,0.2);
}
.er-video-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: var(--muted); letter-spacing: 0.5px;
}
.er-video-hint {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); opacity: 0.5;
}

/* Two column layout */
.er-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border);
  margin-bottom: 40px;
}

/* Block label */
.er-block-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}

/* Key points */
.er-key-points {
  background: var(--card); border: 1px solid var(--border);
  padding: 32px;
}
.er-points-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.er-points-list li {
  font-size: 15px; font-weight: 300; color: var(--text);
  line-height: 1.55;
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.er-points-list li:last-child { border-bottom: none; padding-bottom: 0; }
.er-points-list li::before {
  content: '→'; color: var(--accent); font-size: 14px;
  flex-shrink: 0; margin-top: 1px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
}

/* Resources */
.er-resources {
  background: var(--dark); border: 1px solid var(--border);
  padding: 32px;
}
.er-resources-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.er-resource-item {
  background: var(--card); border: 1px solid var(--border);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s;
}
.er-resource-item:hover { border-color: var(--accent); }
.er-resource-icon { font-size: 20px; flex-shrink: 0; }
.er-resource-info { flex: 1; }
.er-resource-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.er-resource-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
}
.er-resource-dl {
  font-size: 18px; color: var(--accent); flex-shrink: 0;
  font-weight: 700;
}
.er-resources-note {
  font-size: 12px; color: var(--muted); font-style: italic;
}

/* Feedback */
.er-feedback {
  background: var(--dark); border: 1px solid var(--border);
  padding: 0; margin-bottom: 40px; overflow: hidden;
}
.er-feedback-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.er-feedback-left {
  padding: 40px; border-right: 1px solid var(--border);
}
.er-feedback-right { padding: 40px; }
.er-feedback-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; letter-spacing: 0.3px;
  color: var(--white); line-height: 1; margin: 10px 0 14px;
}
.er-feedback-title em { color: var(--accent); font-style: normal; }
.er-feedback-desc {
  font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.7; margin-bottom: 20px;
}
.er-feedback-uses {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.er-feedback-uses li {
  font-size: 13px; font-weight: 300; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.er-feedback-uses li::before {
  content: ''; width: 14px; height: 1px;
  background: var(--accent); flex-shrink: 0;
}
.er-form { display: flex; flex-direction: column; gap: 12px; }

/* Archive */
.er-archive { padding-top: 8px; }
.er-archive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
}
.er-archive-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer; transition: border-color 0.2s;
}
.er-archive-card:hover { border-color: rgba(48,191,112,0.35); }
.er-archive-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
}
.er-archive-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}
.er-archive-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); padding: 2px 8px;
  border: 1px solid var(--border); width: fit-content;
}
.er-archive-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; color: var(--white);
  letter-spacing: 0.3px; line-height: 1.1; margin-top: 4px;
}
.er-archive-empty {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 52px 40px; text-align: center;
  background: var(--card); border: 1px solid var(--border);
}
.er-archive-empty-icon { font-size: 32px; opacity: 0.25; }
.er-archive-empty-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: var(--muted); letter-spacing: 0.5px;
}
.er-archive-empty-desc { font-size: 13px; color: var(--muted); }

/* Responsive */
@media (max-width: 960px) {
  .er-hero-inner { padding: 96px 24px 40px; }
  .er-inner { padding: 0 24px; }
  .er-two-col { grid-template-columns: 1fr; }
  .er-feedback-inner { grid-template-columns: 1fr; }
  .er-feedback-left { border-right: none; border-bottom: 1px solid var(--border); }
  .er-archive-grid { grid-template-columns: 1fr; }
}

/* ================================================
   AJUSTES HERO ACADEMIA (Entre Líneas / Espacio Reducido)
   ================================================ */

/* Hero small — igual que Mi Academia */
.el-hero-inner-section,
.er-header-section {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.el-hero-inner-section .da-welcome-tag,
.er-header-section .da-welcome-tag {
  color: var(--accent);
}
.el-hero-inner-section .da-welcome-tag::before,
.er-header-section .da-welcome-tag::before {
  background: var(--accent);
}
.el-hero-inner-section .da-welcome-title,
.er-header-section .da-welcome-title {
  color: var(--white);
}
.el-hero-inner-section .da-welcome-title em,
.er-header-section .da-welcome-title em {
  color: var(--accent);
}

/* Hero subtitle on green */
.el-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 16px; font-weight: 300;
  color: var(--muted);
  line-height: 1.7; max-width: 560px;
  margin-top: 12px;
}
.el-hero-sub strong { font-weight: 600; color: var(--text); }

/* Entre Líneas — white content area */
.el-section-white {
  background: #F5F4F0 !important;
}
.el-section-white .el-featured {
  background: #fff;
  border-color: #E0DFD8;
}
.el-section-white .el-featured:hover { border-color: #30BF70; }
.el-section-white .el-featured-left { background: #fff; }
.el-section-white .el-featured-title { color: #0A0A0A; }
.el-section-white .el-featured-excerpt { color: #666; }
.el-section-white .el-featured-footer { border-top-color: #E0DFD8; }
.el-section-white .el-reading-time { color: #888; }
.el-section-white .el-featured-img-empty { background: #F0EFF0; }
.el-section-white .el-grid { background: #E0DFD8; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .el-section-white .el-grid { grid-template-columns: 1fr; } }
.el-section-white .el-card { background: #fff; border-color: #E0DFD8; }
.el-section-white .el-card:hover { border-color: #30BF70; }
.el-section-white .el-card-title { color: #0A0A0A; }
.el-section-white .el-card-excerpt { color: #666; }
.el-section-white .el-card-footer { border-top-color: #E0DFD8; }
.el-section-white .el-card-img-empty { background: #0A0A0A; color: #fff; }
.el-section-white .el-date { color: #888; }
.el-section-white .el-filters { }
.el-section-white .el-filter { background: #fff; border-color: #E0DFD8; color: #888; }
.el-section-white .el-filter:hover { border-color: #30BF70; color: #1D9E5F; }
.el-section-white .el-filter.active { background: #30BF70; border-color: #30BF70; color: #0A0A0A; }
.el-section-white .el-empty-title { color: #AAA; }
.el-section-white .el-empty-desc { color: #BBB; }

/* Espacio Reducido — green sections */
.er-section-green {
  background: #30BF70;
  padding-top: 52px;
  padding-bottom: 52px;
}
.er-inner-green {
  max-width: 1400px; margin: 0 auto; padding: 0 80px;
}
.er-section-green .er-edition-meta { }
.er-section-green .er-edition-num {
  background: #0A0A0A; color: #30BF70;
}
.er-section-green .er-edition-sep { color: rgba(0,0,0,0.3); }
.er-section-green .er-edition-month { color: rgba(0,0,0,0.5); }
.er-section-green .er-edition-type {
  border-color: rgba(0,0,0,0.2); color: rgba(0,0,0,0.6);
}
.er-section-green .er-edition-title { color: #0A0A0A; }
.er-section-green .er-edition-desc { color: rgba(0,0,0,0.6); }

/* Espacio reducido content from Ghost editor */
.er-section-green .er-ghost-content { font-size: 16px; font-weight: 300; color: rgba(0,0,0,0.65); line-height: 1.75; margin-top: 16px; }
.er-section-green .er-ghost-content strong { color: #0A0A0A; font-weight: 600; }
.er-section-green .er-ghost-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #0A0A0A; margin: 20px 0 10px; }
.er-section-green .er-ghost-content ul { padding-left: 1.4rem; margin: 12px 0; }
.er-section-green .er-ghost-content li { margin-bottom: 8px; color: rgba(0,0,0,0.65); }

/* Espacio Reducido — white content section */
.er-section-light {
  background: #F5F4F0;
  padding-top: 52px;
  padding-bottom: 52px;
}
.er-section-light .er-video-placeholder {
  background: #fff; border-color: #E0DFD8;
}
.er-section-light .er-two-col { background: #E0DFD8; }
.er-section-light .er-key-points {
  background: #fff; border-color: #E0DFD8;
}
.er-section-light .er-points-list li { color: #333; border-bottom-color: #E0DFD8; }
.er-section-light .er-resources {
  background: #F0EFF0; border-color: #E0DFD8;
}
.er-section-light .er-resource-item {
  background: #fff; border-color: #E0DFD8;
}
.er-section-light .er-resource-item:hover { border-color: #30BF70; }
.er-section-light .er-resource-name { color: #0A0A0A; }
.er-section-light .er-resource-meta { color: #888; }
.er-section-light .er-resources-note { color: #888; }
.er-section-light .er-block-label { color: #888; }

/* Espacio Reducido — feedback green section */
.er-feedback-section { padding-bottom: 60px; }
.er-feedback-section .er-block-label { color: rgba(0,0,0,0.45); }
.er-feedback-section .er-feedback-inner { background: transparent; border: none; }
.er-feedback-section .er-feedback-left { border-right-color: rgba(0,0,0,0.12); }
.er-feedback-section .er-feedback-title { color: #0A0A0A; }
.er-feedback-section .er-feedback-title em { color: #fff; font-style: normal; }
.er-feedback-section .er-feedback-desc { color: rgba(0,0,0,0.6); }
.er-feedback-section .er-feedback-uses li { color: rgba(0,0,0,0.6); }
.er-feedback-section .er-feedback-uses li::before { background: rgba(0,0,0,0.3); }
.er-feedback-section .da-form-input {
  background: rgba(255,255,255,0.85); border-color: rgba(0,0,0,0.15); color: #0A0A0A;
}
.er-feedback-section .da-form-input:focus { background: #fff; border-color: rgba(0,0,0,0.4); }
.er-feedback-section .da-form-input::placeholder { color: rgba(0,0,0,0.35); }
.er-feedback-section .da-form-input[readonly] { color: rgba(0,0,0,0.4); }
.er-feedback-section .da-form-label { color: rgba(0,0,0,0.5); }
.er-feedback-section .da-form-submit { background: #0A0A0A; color: #fff; }
.er-feedback-section .da-form-submit:hover { opacity: 0.85; }
.er-feedback-section .da-form-note { color: rgba(0,0,0,0.4); }
.er-feedback-section .da-asesoria-success {
  background: rgba(255,255,255,0.85); border-color: rgba(0,0,0,0.1);
}
.er-feedback-section .da-success-icon,
.er-feedback-section .da-success-title { color: #0A0A0A; }
.er-feedback-section .da-success-desc { color: rgba(0,0,0,0.6); }

/* Responsive */
@media (max-width: 960px) {
  .er-inner-green { padding: 0 24px; }
  .er-feedback-section .er-feedback-inner { grid-template-columns: 1fr; }
  .er-feedback-section .er-feedback-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }
}

/* Espacio Reducido — ghost content on white */
.er-ghost-body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px; font-weight: 300;
  color: #333; line-height: 1.8;
}
.er-ghost-body p { margin-bottom: 1.4rem; }
.er-ghost-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.3px;
  color: #0A0A0A; margin: 2rem 0 1rem; line-height: 1;
}
.er-ghost-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #0A0A0A; margin: 1.5rem 0 0.75rem;
}
.er-ghost-body strong { font-weight: 600; color: #0A0A0A; }
.er-ghost-body ul { padding-left: 1.4rem; margin-bottom: 1.4rem; }
.er-ghost-body li { margin-bottom: 0.5rem; color: #444; }
.er-ghost-body a { color: #1D9E5F; text-decoration: underline; text-underline-offset: 3px; }
.er-ghost-body iframe {
  width: 100%; aspect-ratio: 16/9;
  border: none; display: block; margin: 1.5rem 0;
  background: #F0EFF0;
}
.er-ghost-body figure { margin: 1.5rem 0; }
.er-ghost-body .kg-video-card video { width: 100%; aspect-ratio: 16/9; }
.er-ghost-body .kg-embed-card { margin: 1.5rem 0; }
.er-ghost-body .kg-embed-card iframe { margin: 0; }
.er-ghost-body blockquote {
  border-left: 3px solid #30BF70;
  padding-left: 20px; margin: 1.5rem 0;
  font-style: italic; color: #666;
}
.er-ghost-body .kg-callout-card {
  background: #EAF9F2; border: 1px solid rgba(48,191,112,.2);
  border-radius: 6px; padding: 16px 20px;
  display: flex; gap: 14px; margin: 1.5rem 0;
}
.er-ghost-body .kg-callout-text { font-size: 15px; color: #333; }
.er-ghost-body .kg-button-card { margin: 1.5rem 0; }
.er-ghost-body .kg-btn {
  background: #30BF70; color: #0A0A0A;
  padding: 12px 28px; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 0; display: inline-flex;
}


/* ── TEXT SELECTION ── */
::selection {
  background: #30BF70;
  color: #0A0A0A;
}
::-moz-selection {
  background: #30BF70;
  color: #0A0A0A;
}

/* ================================================
   CUSTOM-LIGHT MODIFICATIONS
   ================================================ */

/* 1. Pattern "entre líneas" — horizontal ruled lines on green hero */
.lt-header::before {
  content: '' !important;
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 28px,
    rgba(0,0,0,0.07) 28px,
    rgba(0,0,0,0.07) 29px
  );
  pointer-events: none;
  z-index: 0;
}

/* 2. Category badge */
.lt-category-badge {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.lt-category-line {
  display: block; height: 1px; width: 36px;
  background: rgba(0,0,0,0.25);
}
.lt-category-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.08);
  padding: 5px 14px;
  border: 1px solid rgba(0,0,0,0.12);
}

/* 3. Contact form at bottom of post */
.lt-contact-form {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 2px solid #E0EFE8;
}
.lt-contact-header { margin-bottom: 28px; }
.lt-contact-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #30BF70; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.lt-contact-tag::before { content: ''; width: 20px; height: 1px; background: #30BF70; }
.lt-contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: 0.3px;
  color: #0A0A0A; margin-bottom: 8px;
}
.lt-contact-desc {
  font-size: 14px; font-weight: 300; color: #777;
  line-height: 1.6;
}
.lt-form { display: flex; flex-direction: column; gap: 12px; }
.lt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lt-form-field { display: flex; flex-direction: column; gap: 5px; }
.lt-form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: #999; font-weight: 700;
}
.lt-form-input {
  background: #fff;
  border: 1px solid #DDD;
  color: #0A0A0A;
  font-family: 'Barlow', sans-serif;
  font-size: 15px; padding: 12px 16px;
  outline: none; transition: border-color .2s; width: 100%;
}
.lt-form-input:focus { border-color: #30BF70; }
.lt-form-input::placeholder { color: #BBB; }
.lt-form-input[readonly] { color: #888; cursor: default; background: #F9F9F9; }
.lt-form-textarea { resize: none; height: 100px; }
.lt-form-error {
  font-size: 13px; color: #e85050;
  background: rgba(232,80,80,.06); border-left: 2px solid #e85050;
  padding: 10px 14px; display: none;
}
.lt-form-error:not(:empty) { display: block; }
.lt-form-submit {
  align-self: flex-start;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; padding: 14px 28px;
  background: #30BF70; color: #0A0A0A;
  border: none; cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.lt-form-submit:hover { opacity: .85; transform: translateY(-1px); }
.lt-form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.lt-form-success {
  flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  padding: 32px; background: #F0FFF7;
  border: 1px solid rgba(48,191,112,.25);
}
.lt-form-success-icon {
  font-size: 28px; color: #30BF70;
}
.lt-form-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #0A0A0A;
}
.lt-form-success-desc {
  font-size: 14px; color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .lt-form-row { grid-template-columns: 1fr; }
}

/* ================================================
   ESPACIO REDUCIDO — HERO CAMPO DE FÚTBOL
   ================================================ */

.er-hero-pitch {
  position: relative; overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center;
  background: #0A0A0A;
  border-bottom: none;
}

.er-pitch-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.er-hero-pitch-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  width: 100%;
  padding: 80px 80px 64px;
}

.er-pitch-tag {
  color: var(--accent) !important;
}
.er-pitch-tag::before {
  background: var(--accent) !important;
}

.er-pitch-title {
  color: var(--white) !important;
}
.er-pitch-title em {
  color: var(--accent) !important;
}

/* ── TÍTULO VISUAL ── */
.er-title-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.er-title-block {
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.er-title-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}

.er-title-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.55);
  padding: 4px 12px;
  border: 1px solid rgba(0,0,0,0.12);
}

.er-title-sep { color: rgba(0,0,0,0.25); font-size: 14px; }

.er-title-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

.er-title-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 0.95; letter-spacing: -0.5px;
  color: #0A0A0A; margin-bottom: 16px;
}

.er-title-excerpt {
  font-size: 16px; font-weight: 300;
  color: rgba(0,0,0,0.65); line-height: 1.7;
  max-width: 640px; margin-bottom: 24px;
}

.er-title-divider {
  display: flex; align-items: center; gap: 0;
  margin-top: 8px;
}

.er-title-divider span {
  display: block; height: 2px; width: 48px;
  background: rgba(0,0,0,0.2);
}

/* ── CONTENIDO COMPACTO ── */
.er-content-compact {
  padding-top: 36px !important;
  padding-bottom: 48px !important;
}

/* ── ENLACE VOLVER ── */
.er-back-link {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #E0DFD8;
}

.er-back-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #1D9E5F;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 6px;
  transition: gap .2s, opacity .2s;
}

.er-back-btn:hover { gap: 10px; opacity: .75; }

/* Responsive pitch hero */
@media (max-width: 960px) {
  .er-hero-pitch-inner { padding: 60px 24px 48px; }
  .er-title-block { padding: 32px 0 28px; }
}

/* ================================================
   ENTRE LÍNEAS — HERO CUADERNO RAYADO
   ================================================ */

.el-hero-ruled {
  background: var(--dark);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  min-height: 340px;
  display: flex; align-items: center;
}

/* Líneas horizontales de cuaderno */
.el-ruled-lines {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
}

.el-ruled-line {
  width: 100%; height: 1px;
  background: rgba(48,191,112,0.08);
}

.el-ruled-line-accent {
  background: rgba(48,191,112,0.18);
  height: 1px;
}

/* Margen vertical izquierdo (línea roja del cuaderno) */
.el-ruled-margin {
  position: absolute; top: 0; bottom: 0;
  left: 72px; width: 2px;
  background: rgba(48,191,112,0.15);
  pointer-events: none;
}

/* Contenido del hero */
.el-hero-ruled-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  width: 100%;
  padding: 80px 80px 64px;
}

.el-ruled-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.el-ruled-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--accent);
}

.el-ruled-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 112px);
  line-height: 0.92; letter-spacing: -1px;
  color: var(--white); margin-bottom: 20px;
}
.el-ruled-title em { color: var(--accent); font-style: normal; }

.el-ruled-sub {
  font-size: 16px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  max-width: 520px; margin-bottom: 28px;
}
.el-ruled-sub strong { color: var(--text); font-weight: 500; }

/* Categorías en el hero como "líneas de cuaderno" */
.el-ruled-tags-preview {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.el-ruled-tags-preview span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(48,191,112,0.6);
  border-bottom: 1px solid rgba(48,191,112,0.2);
  padding-bottom: 2px;
}

/* Categoría en tarjeta destacada */
.el-featured-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(48,191,112,0.1);
  color: var(--accent);
  border: 1px solid rgba(48,191,112,0.2);
  padding: 3px 10px;
}

/* Responsive */
@media (max-width: 960px) {
  .el-hero-ruled-inner { padding: 60px 24px 48px; }
  .el-ruled-margin { left: 24px; }
}

/* ================================================
   BIBLIOTECA DEL ENTRENADOR
   ================================================ */

/* Hero táctico */
.bib-hero {
  position: relative; overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center;
  background: #0F1215;
  border-bottom: 1px solid var(--border);
}
.bib-hero-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.bib-hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; width: 100%;
  padding: 80px 80px 64px;
}
.bib-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.bib-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.bib-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.92; letter-spacing: -1px;
  color: var(--white); margin-bottom: 18px;
}
.bib-hero-title em { color: var(--accent); font-style: normal; }
.bib-hero-sub {
  font-size: 16px; font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 480px;
}
.bib-hero-sub strong { color: var(--text); font-weight: 500; }

/* Section */
.bib-section { background: #F5F4F0; padding: 52px 0 80px; }
.bib-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }

/* Filtros */
.bib-filter-wrap {
  margin-bottom: 36px;
  background: #fff;
  border: 1px solid #E0DFD8;
  padding: 24px 28px;
}
.bib-filter-row {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.bib-filter-group { display: flex; flex-direction: column; gap: 10px; }
.bib-filter-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: #999; font-weight: 700;
}
.bib-filter-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.bib-filter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; padding: 8px 16px;
  background: #F5F4F0; border: 1px solid #DDD;
  color: #888; cursor: pointer; transition: all .2s;
}
.bib-filter:hover { border-color: #30BF70; color: #1D9E5F; }
.bib-filter.active { background: #30BF70; border-color: #30BF70; color: #0A0A0A; }
.bib-filter-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bib-active-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.bib-active-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(48,191,112,.12); color: #1D9E5F;
  border: 1px solid rgba(48,191,112,.25);
  padding: 4px 10px; cursor: pointer;
  transition: background .15s;
}
.bib-active-pill:hover { background: rgba(48,191,112,.2); }
.bib-reset {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #888; background: none; border: none;
  cursor: pointer; transition: color .2s; padding: 0;
}
.bib-reset:hover { color: #e85050; }

/* Tag pills */
.bib-tag-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(48,191,112,.1); color: #1D9E5F;
  border: 1px solid rgba(48,191,112,.2); padding: 3px 9px;
}
.bib-tag-pill-sm { font-size: 10px; padding: 2px 7px; }

/* Featured */
.bib-featured {
  display: flex; gap: 0;
  border: 1px solid #E0DFD8;
  overflow: hidden; margin-bottom: 2px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s;
  min-height: 280px; background: #fff;
}
.bib-featured:hover { border-color: #30BF70; box-shadow: 0 2px 16px rgba(48,191,112,.1); }
.bib-featured-left {
  flex: 1; padding: 40px 44px;
  display: flex; flex-direction: column; background: #fff;
}
.bib-featured-top {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.bib-badge-new {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px;
  background: #30BF70; color: #0A0A0A;
}
.bib-featured-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #999;
}
.bib-featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1; letter-spacing: -0.3px;
  color: #0A0A0A; margin-bottom: 12px;
}
.bib-featured-excerpt {
  font-size: 15px; font-weight: 300; color: #666;
  line-height: 1.7; flex: 1; margin-bottom: 16px;
}
.bib-featured-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.bib-featured-footer {
  padding-top: 16px; border-top: 1px solid #E0DFD8;
}
.bib-featured-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #1D9E5F;
}
.bib-featured-img {
  width: 432px; flex-shrink: 0;
  background-size: cover; background-position: center;
  background-color: #E8E7E3;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}
.bib-featured-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,10,12,0);
  transition: background 0.3s ease;
}
.bib-featured:hover .bib-featured-img { transform: scale(1.03); }
.bib-featured:hover .bib-featured-img::after { background: rgba(8,10,12,0.4); }
.bib-featured-img-empty {
  background: #1A2E1A;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* Grid */
.bib-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: #E0DFD8; margin-top: 2px;
}
.bib-card {
  background: #fff; border: 1px solid #E0DFD8;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s; overflow: hidden;
}
.bib-card:hover { border-color: #30BF70; box-shadow: 0 2px 12px rgba(48,191,112,.08); }
.bib-card-img {
  height: 192px;
  background-size: cover; background-position: center;
  background-color: #E8E7E3; flex-shrink: 0;
}
.bib-card-img-empty {
  background: #1A2E1A;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.bib-card-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bib-card-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.bib-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .3px;
  color: #0A0A0A; line-height: 1.05; margin-bottom: 8px;
}
.bib-card-excerpt {
  font-size: 13px; font-weight: 300; color: #666;
  line-height: 1.65; flex: 1; margin-bottom: 14px;
}
.bib-card-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #1D9E5F;
  margin-top: auto;
}

/* Empty state */
.bib-empty {
  flex-direction: column; align-items: center;
  text-align: center; gap: 12px; padding: 72px 40px;
  background: #fff; border: 1px solid #E0DFD8; margin-top: 2px;
}
.bib-empty-icon { font-size: 36px; opacity: .25; }
.bib-empty-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #AAA; letter-spacing: .3px;
}
.bib-empty-desc { font-size: 14px; color: #BBB; }

/* ── TEMPLATE TAREA INDIVIDUAL ── */
.tarea-article { background: #F7F6F2; min-height: 100vh; }

.tarea-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.tarea-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1.2' fill='rgba(48,191,112,0.12)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.tarea-header-inner {
  position: relative; z-index: 1;
  max-width: 75%; margin: 0 auto;
  padding: 96px 40px 48px;
}
.tarea-back {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 20px; transition: opacity .2s;
}
.tarea-back:hover { opacity: .75; }
.tarea-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.tarea-tag-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px;
  background: rgba(48,191,112,.1); color: var(--accent);
  border: 1px solid rgba(48,191,112,.2);
}
.tarea-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 66px);
  line-height: .95; letter-spacing: -.5px;
  color: var(--white); margin-bottom: 16px;
}
.tarea-excerpt {
  font-size: 17px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.6); line-height: 1.65;
  border-left: 2px solid rgba(48,191,112,.4);
  padding-left: 18px; margin-bottom: 20px; max-width: 600px;
}
.tarea-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.tarea-meta-sep { color: var(--border); }

/* Media */
.tarea-media { background: #0A0A0A; }
.tarea-media img { width: 100%; display: block; max-height: 520px; object-fit: cover; }

/* Body */
.tarea-body { background: #F7F6F2; }
.tarea-body-inner { max-width: 75%; margin: 0 auto; padding: 52px 40px 64px; }
.tarea-content {
  font-family: 'Barlow', sans-serif;
  font-size: 17px; font-weight: 400;
  line-height: 1.85; color: #1A1A1A;
}
.tarea-content p { margin-bottom: 1.5rem; }
.tarea-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #0A0A0A;
  margin: 2.2rem 0 .9rem; line-height: 1; letter-spacing: .3px;
}
.tarea-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #0A0A0A; margin: 1.8rem 0 .75rem;
}
.tarea-content strong { font-weight: 600; color: #0A0A0A; }
.tarea-content ul, .tarea-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.tarea-content li { margin-bottom: .5rem; line-height: 1.75; }
.tarea-content a { color: #1D9E5F; text-decoration: underline; text-underline-offset: 3px; }
.tarea-content blockquote {
  border-left: 3px solid #30BF70; padding-left: 20px;
  margin: 1.8rem 0; font-style: italic; color: #444; font-size: 17px;
}
.tarea-content iframe {
  width: 100%; aspect-ratio: 16/9;
  border: none; display: block; margin: 1.5rem 0;
}
.tarea-content hr {
  border: none; border-top: 1px solid #DDD; margin: 2.5rem 0;
}
/* Koenig cards en tarea */
.tarea-content .kg-callout-card {
  background: #EAF9F2; border: 1px solid rgba(48,191,112,.2);
  border-radius: 4px; padding: 16px 20px;
  display: flex; gap: 14px; margin: 1.5rem 0;
}
.tarea-content .kg-callout-text { font-size: 15px; color: #333; line-height: 1.65; }

/* Footer tarea */
.tarea-footer {
  background: #F7F6F2;
  border-top: 1px solid #DDD;
}
.tarea-footer-inner {
  max-width: 75%; margin: 0 auto;
  padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.tarea-footer-back {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #1D9E5F; text-decoration: none; transition: opacity .2s;
}
.tarea-footer-back:hover { opacity: .75; }
.tarea-footer-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #999; text-decoration: none; transition: color .2s;
}
.tarea-footer-link:hover { color: #1D9E5F; }

/* Responsive Biblioteca */
@media (max-width: 960px) {
  .bib-hero-inner { padding: 60px 24px 48px; }
  .bib-inner { padding: 0 24px; }
  .bib-filter-row { flex-direction: column; gap: 20px; }
  .bib-featured { flex-direction: column; }
  .bib-featured-img { width: 100%; height: 200px; }
  .bib-featured-left { padding: 24px; }
  .bib-grid { grid-template-columns: 1fr 1fr; }
  .el-grid { grid-template-columns: repeat(2, 1fr); }
  .tarea-header-inner, .tarea-body-inner, .tarea-footer-inner { max-width: 100%; padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .bib-grid { grid-template-columns: 1fr 1fr; }
  .el-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tag pills — mayúsculas */
.bib-tag-pill,
.bib-tag-pill-sm,
.tarea-tag-pill {
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* ── CONTACT FORM GREEN (Entre Líneas) ── */
.lt-contact-green {
  background: #30BF70;
  margin: 48px -40px 0;
  padding: 40px 40px 48px;
  border-top: none;
}
.lt-contact-green .lt-contact-tag   { color: rgba(0,0,0,0.5); }
.lt-contact-green .lt-contact-tag::before { background: rgba(0,0,0,0.3); }
.lt-contact-green .lt-contact-title { color: #0A0A0A; }
.lt-contact-green .lt-contact-desc  { color: rgba(0,0,0,0.6); }
.lt-contact-green .lt-form-label    { color: rgba(0,0,0,0.5); }
.lt-contact-green .lt-form-input {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.12);
  color: #0A0A0A;
}
.lt-contact-green .lt-form-input:focus {
  background: #fff; border-color: rgba(0,0,0,0.35);
}
.lt-contact-green .lt-form-input::placeholder { color: rgba(0,0,0,0.35); }
.lt-contact-green .lt-form-input[readonly]    { color: rgba(0,0,0,0.4); }
.lt-contact-green .lt-form-submit {
  background: #0A0A0A; color: #fff;
}
.lt-contact-green .lt-form-success {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.1);
}
.lt-contact-green .lt-form-success-icon,
.lt-contact-green .lt-form-success-title { color: #0A0A0A; }
.lt-contact-green .lt-form-success-desc  { color: rgba(0,0,0,0.6); }

/* ================================================
   PLACEHOLDERS AUTOMÁTICOS
   ================================================ */

/* ── ENTRE LÍNEAS — placeholder simple ── */
.el-card-img-empty,
.el-featured-img-empty {
  background: #141820;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* Color de acento por categoría — clase añadida por JS */
.el-card-img-empty.cat-juego          { border-top: 3px solid #30BF70; }
.el-card-img-empty.cat-diseno-de-tareas { border-top: 3px solid #4A90E2; }
.el-card-img-empty.cat-intervencion   { border-top: 3px solid #9B6FE8; }
.el-card-img-empty.cat-gestion-y-liderazgo { border-top: 3px solid #E8914A; }
.el-card-img-empty.cat-desarrollo     { border-top: 3px solid #E8C94A; }

.el-featured-img-empty.cat-juego           { border-left: 4px solid #30BF70; }
.el-featured-img-empty.cat-diseno-de-tareas { border-left: 4px solid #4A90E2; }
.el-featured-img-empty.cat-intervencion    { border-left: 4px solid #9B6FE8; }
.el-featured-img-empty.cat-gestion-y-liderazgo { border-left: 4px solid #E8914A; }
.el-featured-img-empty.cat-desarrollo      { border-left: 4px solid #E8C94A; }

/* Número de fondo decorativo */
.el-card-img-empty::before,
.el-featured-img-empty::before {
  content: attr(data-num);
  position: absolute; bottom: -8px; right: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px; line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

/* Título en el placeholder */
.el-placeholder-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.75);
  line-height: 1.15;
  position: relative; z-index: 1;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.el-placeholder-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
  position: relative; z-index: 1;
}

/* ── BIBLIOTECA — pizarra táctica verde ── */
.bib-featured-img-empty::before,
.bib-card-img-empty::before {
  content: '';
  position: absolute; inset: 0;
  background:
    /* Líneas del campo táctico */
    /* Borde del campo */
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px) 8% 10% / 84% 80% no-repeat,
    /* Línea central */
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.1) 49.5%, rgba(255,255,255,0.1) 50.5%, transparent 50.5%) 0 0 / 100% 100% no-repeat,
    /* Fondo verde oscuro tipo cesped */
    repeating-linear-gradient(
      to bottom,
      #1A2E1A 0px, #1A2E1A 18px,
      #1C321C 18px, #1C321C 36px
    );
}

.bib-featured-img-empty::after,
.bib-card-img-empty::after {
  content: '';
  position: absolute;
  /* Círculo central */
  width: 30%; aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Logo/icono encima del césped */
.bib-pitch-icon {
  position: relative; z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* Responsive placeholders */
@media (max-width: 960px) {
  .el-card-img-empty::before { font-size: 64px; }
}

/* ── POST INDIVIDUAL ENTRE LÍNEAS — dos tags ── */
.lt-post-tags {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.lt-tag-featured {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.15);
  color: #0A0A0A;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 5px 14px;
  text-decoration: none;
  transition: background .2s;
}
.lt-tag-featured:hover { background: rgba(0,0,0,0.25); }
.lt-tag-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  border: 1px solid rgba(0,0,0,0.12);
  padding: 4px 12px;
}

/* ── BIBLIOTECA — pitch placeholder sin texto, difuminado ── */
.bib-featured-img-empty::before,
.bib-card-img-empty::before {
  filter: blur(1px);
  opacity: 0.6;
}
.bib-featured-img-empty::after,
.bib-card-img-empty::after {
  opacity: 0.5;
}
/* Remove text icon */
.bib-pitch-icon { display: none; }

/* ================================================
   BANNER BIENVENIDA — Mi Academia
   ================================================ */

.da-welcome-banner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  background: #fff;
  border: 1px solid #E0DFD8;
  border-left: 3px solid #30BF70;
  padding: 14px 20px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.da-welcome-banner:hover {
  border-color: #30BF70;
  box-shadow: 0 2px 12px rgba(48,191,112,.08);
}
.da-welcome-banner-left {
  display: flex; align-items: center; gap: 14px;
}
.da-welcome-banner-icon { font-size: 20px; flex-shrink: 0; }
.da-welcome-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: .5px;
  color: #0A0A0A; margin-bottom: 2px;
  text-transform: uppercase;
}
.da-welcome-banner-desc {
  font-size: 13px; font-weight: 300; color: #777; line-height: 1.4;
}
.da-welcome-banner-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #1D9E5F;
  white-space: nowrap; flex-shrink: 0;
}

/* ================================================
   PÁGINA BIENVENIDA
   ================================================ */

/* Hero */
.bv-hero {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.bv-hero-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 60px;
}
.bv-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.bv-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.bv-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 92px);
  line-height: .93; letter-spacing: -1px;
  color: var(--white); margin-bottom: 20px;
}
.bv-title em { color: var(--accent); font-style: normal; }
.bv-sub {
  font-size: 17px; font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 520px;
}

/* Vídeo */
.bv-video-section {
  background: #0A0A0A;
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.bv-video-inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 80px;
}
.bv-video-wrap { font-size: 16px; color: var(--text); }
.bv-video-wrap iframe {
  width: 100%; aspect-ratio: 16/9;
  border: none; display: block;
}
.bv-video-wrap p { margin-bottom: 1rem; }

/* Guía */
.bv-guide {
  background: #F5F4F0;
  padding: 72px 0 80px;
}
.bv-guide-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.bv-guide-header { margin-bottom: 48px; }
.bv-section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #888; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.bv-section-tag::before { content: ''; width: 20px; height: 1px; background: #30BF70; }
.bv-guide-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .95; letter-spacing: -.5px;
  color: #0A0A0A;
}
.bv-guide-title em { color: #30BF70; font-style: normal; }

/* Cards de secciones */
.bv-guide-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: #E0DFD8;
  margin-bottom: 40px;
}
.bv-guide-card {
  background: #fff; border: 1px solid #E0DFD8;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s;
}
.bv-guide-card:hover { border-color: rgba(48,191,112,.3); }
.bv-guide-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 3px; color: #CCC;
}
.bv-guide-icon { font-size: 28px; }
.bv-guide-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: .3px;
  color: #0A0A0A; line-height: 1;
}
.bv-guide-card-desc {
  font-size: 14px; font-weight: 300; color: #666;
  line-height: 1.7; flex: 1;
}
.bv-guide-tip {
  background: #F0FFF7;
  border-left: 2px solid #30BF70;
  padding: 12px 16px;
  font-size: 13px; font-weight: 300; color: #444;
  line-height: 1.6;
}
.bv-guide-tip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #1D9E5F;
  display: block; margin-bottom: 4px;
}
.bv-guide-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #1D9E5F;
  text-decoration: none; transition: opacity .2s;
  margin-top: auto;
}
.bv-guide-link:hover { opacity: .7; }

/* Tips */
.bv-tips {
  background: #fff; border: 1px solid #E0DFD8;
  padding: 32px; margin-bottom: 40px;
}
.bv-tips-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: #888; margin-bottom: 20px;
}
.bv-tips-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bv-tip-item { display: flex; align-items: flex-start; gap: 14px; }
.bv-tip-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.bv-tip-text {
  font-size: 14px; font-weight: 300; color: #555; line-height: 1.65;
}

/* CTA */
.bv-cta {
  text-align: center; padding: 48px 40px;
  background: #fff; border: 1px solid rgba(48,191,112,.2);
}
.bv-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #0A0A0A;
  letter-spacing: .3px; margin-bottom: 24px;
}
.bv-cta-btns {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.bv-cta .btn-primary { background: #30BF70; color: #0A0A0A; }
.bv-cta .btn-ghost {
  border: 1px solid #DDD; color: #333; background: transparent;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; padding: 15px 26px; text-decoration: none;
  display: inline-flex; align-items: center;
}
.bv-cta .btn-ghost:hover { border-color: #30BF70; color: #1D9E5F; }

/* Responsive */
@media (max-width: 960px) {
  .bv-hero-inner  { padding: 96px 24px 48px; }
  .bv-video-inner { padding: 0 24px; }
  .bv-guide-inner { padding: 0 24px; }
  .bv-guide-grid  { grid-template-columns: 1fr; }
  .bv-tips-grid   { grid-template-columns: 1fr; }
}

/* ── AVATARS CON INICIAL ── */
.testimonial-avatar,
.testi-avatar {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px !important;
  font-weight: 400;
  border: none !important;
  display: flex; align-items: center; justify-content: center;
}

/* ================================================
   PÁGINA DE CONTACTO
   ================================================ */

.ct-hero { padding: 0; position: relative; overflow: hidden; }
.ct-hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 60px;
}

.ct-section {
  background: #F5F4F0;
  border-top: 1px solid #E0DFD8;
  padding: 64px 0 80px;
}
.ct-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 80px;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: start;
}

/* Form */
.ct-form-wrap {
  background: #fff;
  border: 1px solid #E0DFD8;
  padding: 48px 44px;
}
.ct-form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: .3px;
  color: #0A0A0A; margin-bottom: 10px;
}
.ct-form-desc {
  font-size: 14px; font-weight: 300; color: #777;
  line-height: 1.65; margin-bottom: 32px;
  padding-bottom: 28px; border-bottom: 1px solid #E0DFD8;
}
.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: #999; font-weight: 700;
}
.ct-input {
  background: #F9F8F6; border: 1px solid #DDD;
  color: #0A0A0A; font-family: 'Barlow', sans-serif;
  font-size: 15px; padding: 13px 16px;
  outline: none; transition: border-color .2s; width: 100%;
}
.ct-input:focus { border-color: #30BF70; background: #fff; }
.ct-input::placeholder { color: #BBB; }
.ct-input[readonly] { color: #888; cursor: default; }
.ct-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.ct-textarea { resize: vertical; min-height: 140px; }
.ct-form-error {
  font-size: 13px; color: #e85050;
  background: rgba(232,80,80,.06); border-left: 2px solid #e85050;
  padding: 10px 14px; display: none;
}
.ct-form-error:not(:empty) { display: block; }
.ct-submit {
  align-self: flex-start;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; padding: 16px 32px;
  background: #30BF70; color: #0A0A0A;
  border: none; cursor: pointer; transition: all .2s;
}
.ct-submit:hover { opacity: .85; transform: translateY(-1px); }
.ct-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.ct-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #BBB; margin-top: 4px;
}
.ct-success {
  flex-direction: column; align-items: center;
  text-align: center; gap: 12px; padding: 52px 32px;
}
.ct-success-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: #30BF70;
}
.ct-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #0A0A0A; letter-spacing: .3px;
}
.ct-success-desc {
  font-size: 14px; font-weight: 300; color: #666;
  line-height: 1.65; max-width: 380px;
}

/* Info lateral */
.ct-info {
  display: flex; flex-direction: column; gap: 2px;
}
.ct-info-block {
  background: #fff; border: 1px solid #E0DFD8;
  padding: 22px 24px;
}
.ct-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: #999; font-weight: 700; margin-bottom: 8px;
}
.ct-info-value {
  font-size: 14px; font-weight: 500; color: #0A0A0A;
  text-decoration: none; display: block;
}
a.ct-info-value:hover { color: #1D9E5F; }
.ct-social {
  display: flex; flex-direction: column; gap: 10px;
}
.ct-social-link {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #666; text-decoration: none; transition: color .2s;
}
.ct-social-link:hover { color: #1D9E5F; }
.ct-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #1D9E5F;
  text-decoration: none; transition: opacity .2s;
}
.ct-link:hover { opacity: .75; }
.ct-faq-list { display: flex; flex-direction: column; gap: 14px; }
.ct-faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: #0A0A0A; margin-bottom: 4px;
}
.ct-faq-a {
  font-size: 13px; font-weight: 300; color: #666; line-height: 1.55;
}

/* Responsive */
@media (max-width: 960px) {
  .ct-hero-inner { padding: 96px 24px 48px; }
  .ct-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 32px; }
  .ct-form-wrap { padding: 28px 24px; }
  .ct-form-row { grid-template-columns: 1fr; }
}

/* ================================================
   HERO — FONDO CAMPO DE FÚTBOL (HOME)
   ================================================ */

.hero-field {
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
  align-items: flex-start !important;
}

/* Imagen de fondo desenfocada */
.hero-field-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Light extra overlay for readability */
.hero-field-overlay-light {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,10,12,0.45) 0%,
    rgba(8,10,12,0.1)  60%,
    rgba(8,10,12,0)    100%
  );
  pointer-events: none;
}

/* Contenido desplazado a la izquierda */
.hero-single-left { display: none; }

/* Hero field content — left aligned, no centering */
.hero-field-content {
  position: relative; z-index: 2;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  min-height: 55vh;
  padding: 48px 40px 48px 120px;
  max-width: 640px;
}
.hero-field-content .hero-tag    { animation: fadeUp 0.6s ease both 0.1s; }
.hero-field-content .hero-h1     { animation: fadeUp 0.6s ease both 0.25s; font-size: clamp(64px, 8vw, 120px); }
.hero-field-content .hero-sub    { animation: fadeUp 0.6s ease both 0.4s; max-width: 480px; }
.hero-field-content .hero-actions{ animation: fadeUp 0.6s ease both 0.55s; }

@media (max-width: 960px) {
  .hero-field-bg { background-position: center center; filter: blur(2px) brightness(0.4) saturate(0.6); }
  .hero-field-overlay { background: rgba(8,10,12,0.8); }
  .hero-single-left { padding-left: 24px !important; padding-right: 24px !important; max-width: 100% !important; }
  /* Fix base .hero centering on mobile */
  .hero.hero-field {
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0 !important;
  }
  .hero-field-content {
    padding: 16px 24px 40px 24px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-height: auto !important;
  }
  .offer-strip-wrap {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Strip left-align on mobile too */
  .offer-strip-wrap {
    padding: 16px 20px 0 20px !important;
    justify-content: flex-start !important;
  }
  .offer-strip {
    max-width: 100% !important;
    border-radius: 50px !important;
  }

  .hero-field-content .hero-h1 { font-size: clamp(52px, 10vw, 80px); }
  .hero-field-overlay-light {
    background: linear-gradient(
      to bottom,
      rgba(8,10,12,0.6) 0%,
      rgba(8,10,12,0.3) 100%
    ) !important;
  }
  
  
}

/* ── NEWSLETTER HERO — inbox dinámico ── */
.nl-inbox {
  background: #fff;
  border: 1px solid #E0DFD8;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nl-inbox::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #30BF70 0%, rgba(48,191,112,0.2) 100%);
}
.nl-inbox-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #E0DFD8;
  background: #F5F4F0;
}
.nl-inbox-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #888;
}
.nl-inbox-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #1D9E5F;
}
.nl-inbox-list { display: flex; flex-direction: column; }
.nl-inbox-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #F0EFEC;
  text-decoration: none; color: inherit;
  transition: background .15s;
}
.nl-inbox-item:hover { background: #F0FFF7; }
.nl-inbox-item:last-child { border-bottom: none; }
.nl-inbox-item-featured { background: rgba(48,191,112,0.04); border-left: 2px solid #30BF70; }
.nl-inbox-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #DDD; flex-shrink: 0;
}
.nl-inbox-dot-new { background: #30BF70; }
.nl-inbox-body { flex: 1; min-width: 0; }
.nl-inbox-item-title {
  font-size: 13px; font-weight: 500; color: #0A0A0A;
  line-height: 1.35; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nl-inbox-item-meta {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: #999;
}
.nl-sep { color: #DDD; }
.nl-new-badge {
  background: #30BF70; color: #0A0A0A;
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  padding: 2px 6px;
}
.nl-inbox-arrow {
  color: #CCC; font-size: 14px; flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.nl-inbox-item:hover .nl-inbox-arrow { transform: translateX(3px); color: #30BF70; }
.nl-inbox-footer {
  padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #BBB; background: #F5F4F0;
  border-top: 1px solid #E0DFD8;
}

/* ── TAREA PAYWALL ── */
.tarea-paywall {
  background: #F7F6F2;
  padding: 60px 40px;
}
.tarea-paywall-inner {
  max-width: 75%; margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(48,191,112,0.25);
  padding: 48px 40px;
  text-align: center;
}
.tarea-paywall-icon { font-size: 32px; margin-bottom: 14px; }
.tarea-paywall-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #0A0A0A;
  letter-spacing: .3px; margin-bottom: 12px;
}
.tarea-paywall-desc {
  font-size: 15px; font-weight: 300; color: #666;
  line-height: 1.7; max-width: 440px;
  margin: 0 auto 28px;
}
.tarea-paywall-btns {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}

/* ================================================
   PÁGINA BIENVENIDA NEWSLETTER
   ================================================ */

.bnl-hero { padding: 0; position: relative; overflow: hidden; }
.bnl-hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 60px;
}
.bnl-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.bnl-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

.bnl-section { background: #F5F4F0; padding: 64px 0 80px; }
.bnl-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }

/* Confirmación */
.bnl-confirm {
  background: #fff;
  border: 1px solid rgba(48,191,112,0.3);
  border-left: 4px solid #30BF70;
  padding: 32px 36px;
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 48px;
}
.bnl-confirm-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: #30BF70; flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(48,191,112,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.bnl-confirm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #0A0A0A; margin-bottom: 6px;
}
.bnl-confirm-desc {
  font-size: 14px; font-weight: 300; color: #666; line-height: 1.65;
}

/* Qué vas a recibir */
.bnl-what { margin-bottom: 56px; }
.bnl-what-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #888; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.bnl-what-label::before { content: ''; width: 20px; height: 1px; background: #30BF70; }
.bnl-what-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: #E0DFD8;
}
.bnl-what-card {
  background: #fff; border: 1px solid #E0DFD8;
  padding: 28px 28px; display: flex; flex-direction: column; gap: 10px;
}
.bnl-what-icon { font-size: 24px; }
.bnl-what-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: #0A0A0A; letter-spacing: .3px;
}
.bnl-what-desc {
  font-size: 14px; font-weight: 300; color: #666; line-height: 1.65;
}

/* Siguiente paso */
.bnl-next {
  background: var(--dark);
  border: 1px solid var(--border);
  overflow: hidden; margin-bottom: 40px;
}
.bnl-next-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.bnl-next-left {
  padding: 52px 48px;
  border-right: 1px solid var(--border);
}
.bnl-next-right { padding: 52px 48px; }
.bnl-next-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.bnl-next-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.bnl-next-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: .95; color: var(--white); margin-bottom: 16px;
}
.bnl-next-title em { color: var(--accent); font-style: normal; }
.bnl-next-desc {
  font-size: 15px; font-weight: 300; color: var(--muted);
  line-height: 1.7; margin-bottom: 24px;
}
.bnl-next-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.bnl-price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: var(--accent); line-height: 1;
}
.bnl-price-per {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}
.bnl-price-or {
  font-size: 13px; color: var(--muted); margin: 0 4px;
}
.bnl-next-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-top: 12px;
}
.bnl-features { display: flex; flex-direction: column; gap: 2px; }
.bnl-feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: background .2s;
}
.bnl-feature:hover { background: rgba(48,191,112,0.04); }
.bnl-feature-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.bnl-feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; color: var(--white); letter-spacing: .3px;
  margin-bottom: 2px;
}
.bnl-feature-desc {
  font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.5;
}

/* Footer */
.bnl-footer { text-align: center; padding-top: 8px; }
.bnl-home-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #888; text-decoration: none;
  transition: color .2s;
}
.bnl-home-link:hover { color: #1D9E5F; }

/* Responsive */
@media (max-width: 960px) {
  .bnl-hero-inner { padding: 96px 24px 48px; }
  .bnl-inner { padding: 0 24px; }
  .bnl-confirm { flex-direction: column; gap: 14px; }
  .bnl-what-grid { grid-template-columns: 1fr; }
  .bnl-next-inner { grid-template-columns: 1fr; }
  .bnl-next-left { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .bnl-next-right { padding: 32px 24px; }
}

/* ================================================
   MI ACADEMIA — MEJORAS
   ================================================ */

/* ── TARJETAS CON PATRÓN ── */
.da-access-card {
  position: relative;
  overflow: hidden;
}
.da-card-pattern {
  position: absolute; inset: 0;
  opacity: 0.35;
  pointer-events: none;
}
/* Entre Líneas — rayas horizontales de cuaderno */
.da-card-pattern-el {
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 14px,
    rgba(0,0,0,0.15) 14px, rgba(0,0,0,0.15) 15px
  );
}
/* Biblioteca — puntos tácticos */
.da-card-pattern-bib {
  background-image: radial-gradient(rgba(0,0,0,0.2) 1px, transparent 1px);
  background-size: 14px 14px;
}
/* Espacio Reducido — franjas de césped verticales */
.da-card-pattern-er {
  background-image: repeating-linear-gradient(
    to right,
    rgba(0,0,0,0.1) 0px, rgba(0,0,0,0.1) 16px,
    rgba(0,0,0,0.18) 16px, rgba(0,0,0,0.18) 32px
  );
}
.da-card-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 18px;
  width: 100%;
}

/* ── FEED CRONOLÓGICO ── */
.da-feed { display: flex; flex-direction: column; gap: 2px; }
.da-feed-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #fff; border: 1px solid #E0DFD8;
  text-decoration: none; color: inherit;
  transition: border-color .2s;
}
.da-feed-item:hover { border-color: #30BF70; }
.da-feed-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #E0DFD8; flex-shrink: 0;
}
.da-feed-dot-new { background: #30BF70; }
.da-feed-body { flex: 1; min-width: 0; }
.da-feed-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #1D9E5F; margin-bottom: 3px;
}
.da-feed-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; color: #0A0A0A; line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 2px;
}
.da-feed-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: #888;
}
.da-feed-arrow {
  color: #CCC; font-size: 14px; flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.da-feed-item:hover .da-feed-arrow { transform: translateX(3px); color: #30BF70; }

/* ── ESPACIO REDUCIDO CARD ── */
.da-er-card { }
.da-er-inner {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 10px;
}
.da-er-icon { font-size: 28px; }
.da-er-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: var(--white); letter-spacing: .3px;
}
.da-er-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.da-er-countdown {
  display: flex; align-items: center; gap: 8px;
  margin: 8px 0;
}
.da-er-count-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.da-er-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: #30BF70; line-height: 1;
}
.da-er-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.da-er-count-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--border);
  margin-bottom: 12px;
}
.da-er-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #0A0A0A;
  background: #30BF70; padding: 10px 20px;
  text-decoration: none; transition: opacity .2s;
  margin-top: 4px;
}
.da-er-btn:hover { opacity: .85; }

/* ── ASESORÍA — mobile fix ── */
@media (max-width: 960px) {
  .da-asesoria { padding: 40px 24px 48px !important; margin: 0 !important; }
  .da-asesoria-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ── ESPACIO REDUCIDO CARD — imagen de fondo + datos dinámicos ── */
.da-er-inner {
  background: var(--dark);
  border: 1px solid var(--border);
  overflow: hidden;
}
.da-er-link {
  text-decoration: none;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  min-height: 240px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 !important;
  gap: 0 !important;
  cursor: pointer;
  transition: opacity .2s;
}
.da-er-link:hover { opacity: .9; }
.da-er-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,10,12,0.95) 0%,
    rgba(8,10,12,0.55) 50%,
    rgba(8,10,12,0.25) 100%
  );
  z-index: 0;
}
.da-er-body {
  position: relative; z-index: 1;
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
}
@media (max-width: 960px) {
  .da-er-link { min-height: 200px; }
}
.da-er-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,239,235,0.5);
}
.da-er-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #30BF70;
  margin-top: 8px;
}

/* ── FEED + ER — responsive móvil ── */
@media (max-width: 960px) {
  .da-two-col {
    grid-template-columns: 1fr !important;
    gap: 2px !important;
  }
  .da-feed-item { padding: 12px 14px; }
  .da-feed-title { font-size: 14px; }
  .da-er-link { min-height: 200px; }
}

/* ── HERO EYEBROW LINKS ── */
.da-welcome-tag-link,
.hero-eyebrow-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(48,191,112,0.4);
  padding-bottom: 1px;
  transition: border-color .2s, opacity .2s;
}
.da-welcome-tag-link:hover,
.hero-eyebrow-link:hover {
  opacity: .75;
  border-bottom-color: var(--accent);
}

/* ── FEED + ER CARD — mobile fixes ── */
@media (max-width: 960px) {
  /* Force two-col to single col and prevent overflow */
  .da-two-col {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .da-two-col .da-section {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Feed items — prevent overflow */
  .da-feed { width: 100%; overflow: hidden; }
  .da-feed-item {
    width: 100%; box-sizing: border-box;
    overflow: hidden;
  }
  .da-feed-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* ER card countdown — center properly */
  .da-er-countdown {
    justify-content: center !important;
    width: 100% !important;
  }
}

/* ── ER CARD OVERLAY — darker ── */
.da-er-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.75) 50%,
    rgba(0,0,0,0.45) 100%
  ) !important;
}

/* ── FEED ITEMS — Entre Líneas vs Biblioteca differentiation ── */
.da-feed-item[data-type="el"] {
  border-left: 3px solid rgba(48,191,112,0.4);
}
.da-feed-item[data-type="bib"] { border-left: 3px solid rgba(48,191,112,0.4); }
.da-feed-item[data-type="el"] .da-feed-tag { color: #1D9E5F; }


/* Hover — turn green */
.da-feed-item:hover {
  background: #E8FAF2 !important;
  border-color: #30BF70 !important;
  border-left-color: #30BF70 !important;
}
.da-feed-item:hover .da-feed-title { color: #1D9E5F; }
.da-feed-item:hover .da-feed-arrow { color: #30BF70; transform: translateX(3px); }

/* ── COUNTDOWN — centered ── */
.da-er-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
}

/* ── FAQ NEWSLETTER ── */
.nl-faq {
  background: #0A0A0A;
  border-top: 1px solid #1E2530;
  padding: 80px 80px;
}
.nl-faq-inner { max-width: 1400px; margin: 0 auto; }
.nl-faq-header { margin-bottom: 52px; }
.nl-faq-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #30BF70; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.nl-faq-eyebrow::before { content: ''; width: 28px; height: 1px; background: #30BF70; }
.nl-faq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95; letter-spacing: -1px;
  color: #F0EFEB;
}
.nl-faq-title em { color: #30BF70; font-style: normal; }
.nl-faq-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: #1E2530;
}
.nl-faq-col {
  display: flex; flex-direction: column; gap: 1px;
  background: #1E2530;
}

/* Accordion item */
.nl-acc-item {
  background: #141820;
  border-bottom: 1px solid #1E2530;
  overflow: hidden;
}
.nl-acc-item:last-child { border-bottom: none; }
.nl-acc-btn {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 28px;
  background: none; border: none; cursor: pointer;
  color: #F0EFEB;
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 500;
  transition: background .15s;
}
.nl-acc-btn:hover { background: rgba(48,191,112,0.05); }
.nl-acc-item.open .nl-acc-btn { color: #30BF70; }
.nl-acc-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 300;
  color: #30BF70; flex-shrink: 0;
  width: 24px; text-align: center;
  transition: transform .2s;
}
.nl-acc-item.open .nl-acc-icon { transform: rotate(45deg); }
.nl-acc-body {
  max-height: 0; overflow: hidden;
  padding: 0 28px;
  font-size: 14px; font-weight: 300;
  color: #6B7280; line-height: 1.75;
  transition: max-height .3s ease, padding .3s ease;
}
.nl-acc-item.open .nl-acc-body {
  max-height: 200px;
  padding: 0 28px 22px;
}

/* Responsive */
@media (max-width: 960px) {
  .nl-faq { padding: 60px 24px; }
  .nl-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .nl-what { padding: 60px 24px; }
}

/* FAQ responsive */
@media (max-width: 960px) {
  .nl-faq { padding: 60px 24px; }
  .nl-faq-cols { grid-template-columns: 1fr; }
}

/* ── NEWSLETTER COMPARISON TABLE ── */
.nl-diff-table-wrap {
  margin-bottom: 40px;
  overflow-x: auto;
}
.nl-diff-table {
  width: 100%; border-collapse: collapse;
}
.nl-diff-table th {
  padding: 16px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 1px; text-align: left;
  border-bottom: 2px solid var(--border);
}
.nl-diff-nl { color: var(--muted); }
.nl-diff-ac { color: #30BF70; border-bottom-color: #30BF70 !important; }
.nl-diff-feature { color: var(--muted); font-size: 14px; letter-spacing: 1.5px; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; }
.nl-diff-table td {
  padding: 14px 28px;
  font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--border); line-height: 1.6;
}
.nl-diff-table td:nth-child(2) { background: rgba(255,255,255,0.02); }
.nl-diff-table tr:hover td { background: rgba(48,191,112,0.03); }
.nl-diff-table tr:hover td:nth-child(2) { background: rgba(48,191,112,0.06); }
.nl-check { color: #30BF70; font-weight: 700; }
.nl-cross { color: var(--muted); }
@media (max-width: 960px) {
  .nl-diff-table th, .nl-diff-table td { padding: 12px 14px; font-size: 13px; }
}

/* ── FINAL CTA — NEWSLETTER PATTERN ── */
.nl-final-cta {
  position: relative;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 100px 80px;
  overflow: hidden;
  text-align: center;
}
.nl-final-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  color: rgba(48,191,112,0.035);
  letter-spacing: 8px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.nl-final-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
}
.nl-final-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .92; letter-spacing: -1px;
  color: var(--white); margin-bottom: 20px;
}
.nl-final-h2 em { color: #30BF70; font-style: normal; }
.nl-final-sub {
  font-size: 17px; font-weight: 300;
  color: var(--muted); line-height: 1.65;
  margin-bottom: 40px;
}
.nl-final-sub strong { color: var(--text); font-weight: 500; }
@media (max-width: 960px) {
  .nl-final-cta { padding: 72px 24px; }
  .nl-final-bg-text { font-size: 56px; }
}

/* ── NL HERO SIGNUP ROW ── */
.nl-signup-row {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.nl-proof-inline {
  display: flex; align-items: center; gap: 10px;
}
.nl-proof-inline .nl-proof-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; line-height: 1; color: #30BF70;
}
.nl-proof-inline .nl-proof-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 960px) {
  .nl-signup-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .nl-what-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ── FORMACION COMING SOON ── */
.fm-coming-soon {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid #30BF70;
  padding: 52px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.fm-cs-icon { font-size: 32px; margin-bottom: 16px; }
.fm-cs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--white);
  letter-spacing: .3px; margin-bottom: 12px;
}
.fm-cs-desc {
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 20px;
}
.fm-cs-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(48,191,112,0.6);
}

/* ── PAGE TRANSITIONS ── */
/* Apply to main, NOT body — transform on body breaks position:fixed */
main {
  animation: pageFadeIn 0.35s ease forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-transitioning main {
  opacity: 0 !important;
  transform: translateY(-6px) !important;
  transition: opacity 0.12s ease, transform 0.12s ease !important;
}

/* ── OFFER STRIP — marquesina lanzamiento ── */
.offer-strip-wrap {
  display: flex;
  justify-content: flex-start;
  padding: 16px 24px 0 120px;
  position: relative; z-index: 2;
  width: 100%;
}
.offer-strip {
  display: block;
  background: #30BF70;
  overflow: hidden;
  text-decoration: none;
  height: 36px;
  border-radius: 50px;
  max-width: 560px;
  width: 100%;
  transition: background 0.2s;
}
.offer-strip:hover { background: #27a85d; }
.offer-strip:hover .offer-strip-track {
  animation-play-state: paused;
}
.offer-strip-track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: offerScroll 18s linear infinite;
  gap: 24px;
  padding: 0 20px;
}
@keyframes offerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.offer-strip-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0A0A0A;
  flex-shrink: 0;
}
.offer-strip-item strong { font-weight: 800; }
.offer-strip-sep {
  color: rgba(0,0,0,0.3);
  font-size: 8px;
  flex-shrink: 0;
}

/* Adjust main padding to account for strip + nav */
/* The strip is 36px, nav is 68px = 104px total */
/* On hover strip is 52px but we don't need to adjust for that */

/* ── PILLARS — light variant ── */
.pillars-light {
  background: #F5F4F0;
  max-width: 100% !important;
  padding: 100px 80px;
}
.pillars-light .section-tag { color: #888; }
.pillars-light .section-h2 { color: #0A0A0A; }
.pillars-light .section-h2 em { color: #1D9E5F; }
.pillars-light .section-sub { color: #555; }
.pillars-light .pillar {
  background: #fff !important;
  border-color: #E0DFD8 !important;
}
.pillars-light .pillar:hover {
  border-color: #30BF70 !important;
  box-shadow: 0 4px 20px rgba(48,191,112,0.1);
}
.pillars-light .pillar-num { color: rgba(48,191,112,0.15) !important; }
.pillars-light .pillar-label { color: rgba(48,191,112,0.7) !important; }
.pillars-light .pillar-title { color: #0A0A0A !important; }
.pillars-light .pillar-desc { color: #555 !important; }
.pillars-light .pillar-tag { color: #888 !important; }
.pillars-light .pillars-grid { background: #E8E7E3 !important; }

/* Bonus bar on light bg */
.pillars-light .ac-bonus {
  background: #0A0A0A !important;
  border-color: rgba(48,191,112,0.3) !important;
}

/* ── TESTIMONIALS — light variant ── */
.testimonials-light {
  background: #F5F4F0;
  border-top: 1px solid #E0DFD8;
  padding: 100px 80px;
  max-width: 100% !important;
}
.testimonials-light .section-tag { color: #888; }
.testimonials-light .section-h2 { color: #0A0A0A; }
.testimonials-light .section-h2 em { color: #1D9E5F; }
.testimonials-light .testimonial {
  background: #fff !important;
  border-color: #E0DFD8 !important;
}
.testimonials-light .testimonial:hover {
  border-color: #30BF70 !important;
}
.testimonials-light .testimonials-grid { background: #E8E7E3 !important; }
.testimonials-light .testimonial-text { color: #2A2A2A !important; }
.testimonials-light .testimonial-info .name { color: #0A0A0A !important; }
.testimonials-light .testimonial-info .product { color: #888 !important; }
.testimonials-light .testimonial-avatar {
  background: rgba(48,191,112,0.1) !important;
  border-color: rgba(48,191,112,0.3) !important;
}

@media (max-width: 960px) {
  .pillars-light { padding: 60px 24px; }
  .testimonials-light { padding: 60px 24px; }
}

/* ── BIBLIOTECA HERO TAGS ── */
.bib-hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.bib-hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #30BF70;
  border: 1px solid rgba(48,191,112,0.35);
  padding: 6px 14px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.bib-hero-tag { cursor: default; }

/* ── BIBLIOTECA CARD — hover image darkening ── */
.bib-card-img {
  position: relative;
  overflow: hidden;
}
.bib-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,10,12,0);
  transition: background 0.3s ease;
}
.bib-card:hover .bib-card-img::after {
  background: rgba(8,10,12,0.45);
}
/* Also subtle scale on hover */
.bib-card-img {
  overflow: hidden;
}
.bib-card-img[style*="background-image"] {
  transition: transform 0.4s ease;
}
.bib-card:hover .bib-card-img {
  transform: scale(1.03);
}



/* ── MI ACADEMIA FEED — El vs Biblioteca meta ── */
/* bib shows fase tags instead of date/reading time */
.da-feed-meta-bib { display: none; }
.da-feed-meta-el  { display: block; }

.da-feed-item[data-type="bib"] .da-feed-meta-el  { display: none; }
.da-feed-item[data-type="bib"] .da-feed-meta-bib {
  display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px;
}

.da-feed-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: #888;
}
.da-feed-pill + .da-feed-pill::before {
  content: '·';
  margin-right: 5px;
  color: #888;
}

@media (max-width: 600px) {
  .el-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 960px) {
  .el-section-white .el-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE: No featured card, single column grids ── */
@media (max-width: 960px) {

  /* Biblioteca — hide featured, show as normal card */
  .bib-featured { display: none !important; }
  .bib-grid {
    grid-template-columns: 1fr !important;
  }
  /* Show first bib-card with "Última tarea" badge */
  .bib-card:first-child .bib-card-body::before {
    content: 'Última tarea';
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: #0A0A0A; background: #30BF70;
    padding: 3px 10px; margin-bottom: 10px;
  }

  /* Entre Líneas — hide featured (el-featured), single column */
  .el-featured { display: none !important; }
  .el-grid {
    grid-template-columns: 1fr !important;
  }
  /* Show first el-card with "Último publicado" badge */
  .el-card:first-child .el-card-body::before {
    content: 'Último publicado';
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: #0A0A0A; background: #30BF70;
    padding: 3px 10px; margin-bottom: 10px;
  }

}

/* ================================================
   EBOOK & CURSO PAGES
   ================================================ */

/* ── HERO ── */
.eb-hero { padding: 0; position: relative; overflow: hidden; }
.eb-hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 56px 80px 64px;
}
.eb-breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 36px;
}
.eb-breadcrumb a { color: rgba(48,191,112,0.7); text-decoration: none; }
.eb-breadcrumb a:hover { color: #30BF70; }
.eb-hero-cols {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 80px; align-items: center;
}
.eb-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(48,191,112,0.7); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.eb-eyebrow::before { content: ''; width: 20px; height: 1px; background: #30BF70; }
.eb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 84px); line-height: .92;
  letter-spacing: -1px; color: #F0EFEB; margin-bottom: 10px;
}
.eb-title em { color: #30BF70; font-style: normal; display: block; }
.eb-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(240,239,235,0.5); margin-bottom: 20px;
}
.eb-desc {
  font-size: 16px; font-weight: 300;
  color: rgba(240,239,235,0.6); line-height: 1.7; margin-bottom: 28px;
}
.eb-price-box { margin-bottom: 24px; }
.eb-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: #30BF70; line-height: 1;
}
.eb-price-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,239,235,0.4); margin-top: 4px;
}
.eb-actions { margin-bottom: 16px; }
.eb-buy-btn { display: inline-block; }
.eb-member-note {
  font-size: 13px; color: rgba(240,239,235,0.5);
  margin-top: 12px; line-height: 1.6;
}
.eb-member-note a { color: #30BF70; }
.eb-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,239,235,0.35);
}

/* Book mockup */
.eb-book-mockup {
  display: flex; gap: 0;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.5));
}
.eb-book-spine {
  width: 28px; background: #1D9E5F;
  border-radius: 2px 0 0 2px;
}
.eb-book-face {
  background: #0A0A0A;
  border: 1px solid rgba(48,191,112,0.3);
  padding: 40px 32px;
  width: 260px; min-height: 340px;
  display: flex; flex-direction: column; gap: 12px;
  border-radius: 0 2px 2px 0;
}
.eb-book-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: #30BF70;
}
.eb-book-face-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #F0EFEB; line-height: 1.05;
  flex: 1;
}
.eb-book-face-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,239,235,0.4);
}
.eb-book-pages {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(48,191,112,0.6);
  border-top: 1px solid rgba(48,191,112,0.15);
  padding-top: 12px;
}

/* Course mockup */
.eb-course-mockup { display: flex; flex-direction: column; gap: 12px; }
.eb-course-screen {
  background: #0A0A0A; border: 1px solid rgba(48,191,112,0.3);
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: #30BF70;
}
.eb-course-play { opacity: 0.8; }
.eb-course-meta {
  display: flex; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,239,235,0.35);
}

/* ── BODY ── */
.eb-body { background: #F5F4F0; }
.eb-body-inner { max-width: 1400px; margin: 0 auto; padding: 72px 80px; display: flex; flex-direction: column; gap: 64px; }

.eb-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #888; margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.eb-section-label::before { content: ''; width: 20px; height: 1px; background: #30BF70; }

/* Chapters */
.eb-chapters { display: flex; flex-direction: column; gap: 1px; background: #E0DFD8; }
.eb-chapter {
  background: #fff; padding: 24px 32px;
  display: flex; gap: 24px; align-items: flex-start;
}
.eb-chapter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: rgba(48,191,112,0.3);
  flex-shrink: 0; width: 36px; line-height: 1;
}
.eb-chapter-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: #0A0A0A; margin-bottom: 4px;
}
.eb-chapter-desc {
  font-size: 14px; font-weight: 300; color: #666; line-height: 1.65;
}
.eb-chapter-locked { opacity: 0.5; }

/* Includes */
.eb-includes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: #E0DFD8;
}
.eb-include-card {
  background: #fff; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.eb-include-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: #30BF70; line-height: 1;
}
.eb-include-desc {
  font-size: 14px; font-weight: 300; color: #666; line-height: 1.6;
}

/* Nota */
.eb-nota-section { }
.eb-nota-inner {
  background: #0A0A0A;
  border-left: 3px solid #30BF70;
  padding: 32px 40px;
}
.eb-nota-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #30BF70; margin-bottom: 12px;
}
.eb-nota-inner p {
  font-size: 15px; font-weight: 300; color: rgba(240,239,235,0.65);
  line-height: 1.7; margin-bottom: 8px;
}
.eb-nota-inner strong { color: #F0EFEB; font-weight: 500; }

/* Testimonials */
.eb-testimonials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: #E0DFD8;
}
.eb-testimonial {
  background: #fff; padding: 28px 32px;
  font-size: 15px; font-style: italic; font-weight: 300;
  color: #444; line-height: 1.7;
}

/* CTA Final */
.eb-cta-section { background: var(--dark); }
.eb-cta-inner {
  max-width: 560px; margin: 0 auto;
  padding: 72px 40px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.eb-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px); line-height: .95;
  color: var(--white); letter-spacing: -0.5px;
}
.eb-cta-title em { color: #30BF70; font-style: normal; }
.eb-price-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: #30BF70; line-height: 1;
}
.eb-price-big span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 400; vertical-align: middle; margin-left: 6px;
}
.eb-cta-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.eb-back-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,239,235,0.3); text-decoration: none;
}
.eb-back-link:hover { color: #30BF70; }

/* ── CURSO ACCESO ── */
.curso-wrap { background: #F5F4F0; min-height: 100vh; }
.curso-header {
  background: #30BF70; padding: 52px 80px 48px;
}
.curso-header-inner { max-width: 960px; margin: 0 auto; }
.curso-back {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.curso-back a { color: rgba(0,0,0,0.5); text-decoration: none; }
.curso-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,0.45); margin-bottom: 10px;
}
.curso-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: #0A0A0A; line-height: .95;
  margin-bottom: 12px;
}
.curso-sub {
  font-size: 15px; color: rgba(0,0,0,0.6); line-height: 1.65;
  max-width: 560px;
}
.curso-body { padding: 48px 80px; }
.curso-body-inner { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }

.curso-progress-bar {
  background: #fff; border: 1px solid #E0DFD8;
  padding: 20px 28px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.curso-progress-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #888; flex-shrink: 0;
}
.curso-progress-track {
  flex: 1; height: 4px; background: #E0DFD8; overflow: hidden;
}
.curso-progress-fill { height: 100%; background: #30BF70; }
.curso-progress-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: #888; flex-shrink: 0;
}

.curso-modulo {
  background: #fff; border: 1px solid #E0DFD8;
  overflow: hidden; transition: border-color .2s;
}
.curso-modulo-open { border-color: #30BF70; }
.curso-modulo-header {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 28px;
}
.curso-modulo-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: #30BF70; flex-shrink: 0; line-height: 1;
}
.curso-modulo-locked .curso-modulo-num { color: #CCC; }
.curso-modulo-meta { flex: 1; }
.curso-modulo-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px; margin-bottom: 6px; display: inline-block;
}
.curso-badge-open { background: #30BF70; color: #0A0A0A; }
.curso-badge-locked { color: #AAA; }
.curso-modulo-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #0A0A0A; margin-bottom: 4px;
}
.curso-modulo-locked .curso-modulo-title { color: #AAA; }
.curso-modulo-desc { font-size: 13px; font-weight: 300; color: #888; line-height: 1.6; }
.curso-modulo-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #1D9E5F; text-decoration: none; flex-shrink: 0; white-space: nowrap;
}
.curso-modulo-content { border-top: 1px solid #E0DFD8; padding: 28px; }
.curso-video-placeholder {
  background: #0A0A0A; aspect-ratio: 16/9;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 24px;
}
.curso-video-icon { font-size: 36px; color: #30BF70; }
.curso-video-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(240,239,235,0.4);
}
.curso-recursos-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #888; margin-bottom: 8px;
}
.curso-recurso-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #1D9E5F; text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid #F0EFEC;
}

.curso-soporte {
  background: #0A0A0A; padding: 32px 80px;
}
.curso-soporte-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.curso-soporte-text {
  font-size: 15px; font-weight: 300; color: rgba(240,239,235,0.5);
}
.curso-soporte-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #30BF70; text-decoration: none;
}

/* Responsive */
@media (max-width: 960px) {
  .eb-hero-inner { padding: 40px 24px 48px; }
  .eb-hero-cols { grid-template-columns: 1fr; gap: 40px; }
  .eb-hero-right { display: none; }
  .eb-body-inner { padding: 48px 24px; gap: 40px; }
  .eb-includes-grid { grid-template-columns: 1fr; }
  .eb-testimonials { grid-template-columns: 1fr; }
  .eb-cta-inner { padding: 52px 24px; }
  .curso-header { padding: 40px 24px 36px; }
  .curso-body { padding: 32px 24px; }
  .curso-soporte { padding: 28px 24px; }
  .curso-soporte-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── FM PRODUCT CARDS — new style ── */
.fm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  margin-top: 32px;
}
.fm-product-card {
  background: var(--card);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: border-color .2s;
}
.fm-product-img {
  height: 220px; display: block;
  position: relative; overflow: hidden;
  background: #141820;
  background-size: cover; background-position: center;
  text-decoration: none;
  transition: opacity .2s;
}
.fm-product-img:hover { opacity: .9; }
.fm-product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,10,12,0.6) 0%, transparent 60%);
}
.fm-product-img-ij {
  background-color: #0d1a0f;
  background-image: repeating-linear-gradient(135deg, rgba(48,191,112,0.06) 0px, rgba(48,191,112,0.06) 1px, transparent 1px, transparent 40px);
}
.fm-product-img-pre {
  background-color: #0a130d;
  background-image: repeating-linear-gradient(45deg, rgba(48,191,112,0.06) 0px, rgba(48,191,112,0.06) 1px, transparent 1px, transparent 40px);
}
.fm-product-img-curso {
  background-color: #0f0f14;
  background-image: repeating-linear-gradient(90deg, rgba(48,191,112,0.04) 0px, rgba(48,191,112,0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(48,191,112,0.04) 0px, rgba(48,191,112,0.04) 1px, transparent 1px, transparent 40px);
}
.fm-product-type-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: #30BF70; color: #0A0A0A;
  padding: 4px 10px;
}
.fm-badge-curso { background: rgba(48,191,112,0.15); color: #30BF70; border: 1px solid rgba(48,191,112,0.3); }
.fm-product-soon-pill {
  position: absolute; bottom: 14px; right: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(8,10,12,0.7); color: rgba(240,239,235,0.5);
  padding: 4px 10px; border: 1px solid rgba(255,255,255,0.1);
}
.fm-product-body {
  padding: 24px 28px; display: flex; flex-direction: column; flex: 1;
}
.fm-product-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.fm-product-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(48,191,112,0.7);
}
.fm-product-pages {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.fm-product-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--white); margin-bottom: 8px; line-height: 1.05;
}
.fm-product-title a { color: inherit; text-decoration: none; }
.fm-product-title a:hover { color: #30BF70; }
.fm-product-desc {
  font-size: 13px; font-weight: 300; color: var(--muted);
  line-height: 1.65; flex: 1; margin-bottom: 20px;
}
.fm-product-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.fm-product-price { display: flex; align-items: center; gap: 8px; }
.fm-price-now {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; color: #30BF70; line-height: 1;
}
.fm-price-before {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; color: var(--muted);
  text-decoration: line-through;
}
.fm-price-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(48,191,112,0.15); color: #30BF70;
  padding: 2px 7px; border: 1px solid rgba(48,191,112,0.2);
}
.fm-price-soon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}
.fm-product-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #30BF70; text-decoration: none; transition: color .2s;
}
.fm-product-btn:hover { color: #1D9E5F; }

@media (max-width: 960px) {
  .fm-grid { grid-template-columns: 1fr; }
  .fm-product-img { height: 160px; }
}

/* ── EBOOK COVER REAL IMAGE ── */
.eb-cover-wrap {
  display: flex; justify-content: center; align-items: center;
  height: 380px;
}
.eb-cover-real {
  max-height: 100%; max-width: 100%; width: auto;
  object-fit: contain;
  /* PNG has transparent bg — drop-shadow respects it */
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.55));
  transition: transform 0.4s ease, filter 0.4s ease;
  mix-blend-mode: normal;
}
.eb-cover-real:hover {
  transform: translateY(-8px) rotate(1.5deg) scale(1.02);
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.7));
}

/* ── CHAPTER CARDS — hover green ── */
.eb-chapter {
  transition: background 0.2s, padding-left 0.2s;
  cursor: default;
}
.eb-chapter:hover {
  background: #30BF70;
  padding-left: 40px;
}
.eb-chapter:hover .eb-chapter-num { color: rgba(0,0,0,0.2); }
.eb-chapter:hover .eb-chapter-title { color: #0A0A0A; }
.eb-chapter:hover .eb-chapter-desc { color: rgba(0,0,0,0.6); }

/* ── INCLUDE CARDS — hover ── */
.eb-include-card {
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}
.eb-include-card:hover {
  background: #30BF70;
  transform: translateY(-3px);
}
.eb-include-card:hover .eb-include-num { color: #0A0A0A; }
.eb-include-card:hover .eb-include-desc { color: rgba(0,0,0,0.65); }

/* ── TESTIMONIALS — dynamic carousel ── */
.eb-testimonials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: #E0DFD8;
}
.eb-testimonial {
  background: #fff; padding: 28px 32px;
  font-size: 15px; font-style: italic; font-weight: 300;
  color: #444; line-height: 1.7;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: default;
}
.eb-testimonial:hover {
  border-left-color: #30BF70;
  background: #F5F4F0;
  transform: translateX(4px);
}
.eb-testimonial::before {
  content: '"';
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: rgba(48,191,112,0.2);
  line-height: .8; margin-bottom: 8px;
  font-style: normal;
}

/* Formacion product card images */
.fm-product-img-ij,
.fm-product-img-pre {
  background-color: #0d1a0f !important;
}

@media (max-width: 960px) {
  .eb-testimonials { grid-template-columns: 1fr; }
  .eb-cover-wrap { height: 280px; }
}

/* ── EBOOK SINGLE COLUMN HERO ── */
.eb-hero-single { grid-template-columns: 1fr !important; max-width: 780px; }

/* ── BESTSELLER BADGES ── */
.eb-bestseller {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(48,191,112,0.12);
  border: 1px solid rgba(48,191,112,0.3);
  color: #30BF70;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.fm-best-badge {
  position: absolute; bottom: 14px; left: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: #30BF70; color: #0A0A0A;
  padding: 4px 10px; z-index: 2;
}

/* ================================================
   FORMACION — FEATURED + SMALL GRID
   ================================================ */

.fm-catalog { background: #F5F4F0; }
.fm-catalog-inner { max-width: 1400px; margin: 0 auto; padding: 52px 80px 80px; }

/* ── FEATURED CARD ── */
.fm-featured {
  display: flex; text-decoration: none; color: inherit;
  background: var(--dark);
  border: 1px solid var(--border);
  margin-bottom: 2px;
  transition: border-color .2s;
  overflow: hidden;
}
.fm-featured:hover { border-color: #30BF70; }

.fm-featured-left {
  width: 340px; flex-shrink: 0;
  background: linear-gradient(135deg, #0d1a0f 0%, #0a100b 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 32px;
  position: relative; overflow: hidden;
}
.fm-featured-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(to bottom, transparent 0px, transparent 24px, rgba(48,191,112,0.05) 24px, rgba(48,191,112,0.05) 25px);
}

/* Book mockup inside featured */
.fm-featured-book { display: flex; position: relative; z-index: 1; filter: drop-shadow(0 12px 32px rgba(0,0,0,0.6)); }
.fm-book-spine {
  width: 22px; background: #1D9E5F;
  border-radius: 2px 0 0 2px;
}
.fm-book-face {
  background: #0F1A10;
  border: 1px solid rgba(48,191,112,0.25);
  padding: 28px 22px;
  width: 180px; min-height: 240px;
  display: flex; flex-direction: column; gap: 8px;
  border-radius: 0 2px 2px 0;
}
.fm-book-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: #30BF70; background: rgba(48,191,112,0.1);
  padding: 3px 8px; display: inline-block; margin-bottom: 4px;
}
.fm-book-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #F0EFEB; line-height: 1.05; flex: 1;
}
.fm-book-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,239,235,0.35);
}
.fm-book-pages {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(48,191,112,0.55);
  border-top: 1px solid rgba(48,191,112,0.15);
  padding-top: 10px; margin-top: 4px;
}

.fm-featured-right {
  flex: 1; padding: 48px 52px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.fm-featured-badges { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; }
.fm-badge-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(48,191,112,0.7);
}
.fm-badge-best {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(48,191,112,0.1); color: #30BF70;
  border: 1px solid rgba(48,191,112,0.25); padding: 3px 10px;
}
.fm-badge-curso {
  color: rgba(48,191,112,0.6);
}
.fm-featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px); line-height: .95;
  color: var(--white); margin-bottom: 6px; letter-spacing: -.5px;
}
.fm-featured-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.fm-featured-desc {
  font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7;
}
.fm-featured-includes {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0; border-top: 1px solid var(--border);
  margin-top: 24px;
}
.fm-featured-include {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}
.fm-featured-include span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #30BF70; margin-right: 4px;
}
.fm-featured-sep { width: 1px; height: 32px; background: var(--border); }
.fm-featured-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.fm-featured-price { display: flex; align-items: center; gap: 10px; }
.fm-price-now {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: #30BF70; line-height: 1;
}
.fm-price-before {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; color: var(--muted); text-decoration: line-through;
}
.fm-price-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(48,191,112,0.12); color: #30BF70;
  border: 1px solid rgba(48,191,112,0.2); padding: 3px 8px;
}
.fm-price-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}
.fm-price-soon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}
.fm-featured-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #30BF70; transition: color .2s;
}
.fm-featured:hover .fm-featured-cta { color: #1D9E5F; }

/* ── SMALL GRID ── */
.fm-grid-small {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
}
.fm-small-card {
  background: var(--card);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: border-color .2s;
  border: 1px solid var(--border);
}
.fm-small-card:hover { border-color: rgba(48,191,112,0.35); }

.fm-small-book {
  height: 200px;
  background: linear-gradient(135deg, #0d1a0f, #0a100b);
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 28px;
  position: relative; overflow: hidden;
}
.fm-small-book::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 20px, rgba(48,191,112,0.05) 20px, rgba(48,191,112,0.05) 21px);
}
.fm-small-spine {
  width: 14px; height: 160px;
  background: #1D9E5F; border-radius: 2px 0 0 2px; flex-shrink: 0;
  position: relative; z-index: 1;
}
.fm-small-face {
  background: #0F1A10; border: 1px solid rgba(48,191,112,0.2);
  padding: 16px 14px; height: 160px; width: 120px;
  border-radius: 0 2px 2px 0; position: relative; z-index: 1;
  display: flex; align-items: center;
}
.fm-small-face-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; color: #F0EFEB; line-height: 1.1;
}
.fm-small-book-curso {
  background: linear-gradient(135deg, #0a0a14, #0f0f1a);
}
.fm-small-screen {
  width: 160px; height: 90px; aspect-ratio: 16/9;
  background: #0A0A0A; border: 1px solid rgba(48,191,112,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: rgba(48,191,112,0.5);
  position: relative; z-index: 1;
}

.fm-small-body { padding: 24px 28px; display: flex; flex-direction: column; flex: 1; }
.fm-small-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.fm-small-pages {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.fm-small-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--white); margin-bottom: 8px; line-height: 1.05;
}
.fm-small-desc {
  font-size: 13px; font-weight: 300; color: var(--muted);
  line-height: 1.65; flex: 1; margin-bottom: 16px;
}
.fm-small-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.fm-small-price { display: flex; align-items: center; gap: 8px; }
.fm-small-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #30BF70;
}

/* Responsive */
@media (max-width: 960px) {
  .fm-catalog-inner { padding: 36px 24px 56px; }
  .fm-featured { flex-direction: column; }
  .fm-featured-left { width: 100%; height: 220px; }
  .fm-featured-right { padding: 28px 24px; }
  .fm-grid-small { grid-template-columns: 1fr; }
}

/* ── CURSO — FRASE CENTRAL ── */
.curso-frase-central {
  background: #30BF70;
  padding: 52px 80px;
}
.curso-frase-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.curso-blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05; letter-spacing: -.5px;
  color: #0A0A0A; margin: 0; font-style: normal;
}

/* ── CURSO — QUÉ NO ES ── */
.curso-no-es {
  background: #fff;
  border: 1px solid #E0DFD8;
  border-left: 3px solid #E0DFD8;
  padding: 36px 40px;
}
.curso-no-es-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #888; margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.curso-no-es-label::before { content: ''; width: 20px; height: 1px; background: #888; }
.curso-no-es-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.curso-no-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; font-weight: 300; color: #555; line-height: 1.65;
}
.curso-no-x {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; color: #CCC; flex-shrink: 0; line-height: 1.3;
}

@media (max-width: 960px) {
  .curso-frase-central { padding: 40px 24px; }
  .curso-no-es { padding: 28px 24px; }
  .curso-no-es-grid { grid-template-columns: 1fr; }
}
