/* ══════════════════════════════════════
   ACTITUD CAMPO — style.css
   Variables + estilos globales compartidos
   por todas las páginas del sitio
══════════════════════════════════════ */

/* Google Fonts se importa en el <head> de cada HTML */

:root {
  /* Paleta AC */
  --verde: #14230c;
  --verde-mid: #5f8647;
  --lima: #d3f954;
  --lima-btn: #d3f954;
  --verde-pastel: #efffb8;
  --crema: #f4f4f2;
  --blanco: #ffffff;
  --negro: #14230c;
  --gris-texto: #555550;
  --gris-light: #e8e8e4;
  --gris-border: #d8d8d2;
  --fondo-episodios: #f8f8f6;
  --fondo-blog: #f0f0ee;
  --fondo-footer: #f2f2ef;

  /* Tipografías */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Work Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--blanco);
  color: var(--negro);
  overflow-x: hidden;
  font-size: 14px;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gris-border);
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--negro);
  flex-shrink: 0;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
/* fallback text logo (si no hay SVG) */
.logo-badge {
  background: var(--verde);
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-text { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; }
.logo-text span { color: var(--lima); }

/* Nav desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-desktop .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-desktop .menu-item > a {
  font-size: 0.82rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: color .2s;
}
.nav-desktop .menu-item > a:hover { color: var(--negro); }
.nav-desktop .menu-item.current-menu-item > a { color: var(--negro); font-weight: 700; }

.btn-yt {
  background: var(--lima-btn);
  color: var(--negro);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  flex-shrink: 0;
}
.btn-yt:hover { background: #bfe040; }
.btn-yt svg { width: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background .2s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--crema); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--negro);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 58px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gris-border);
  z-index: 199;
  padding: 1rem 5% 1.5rem;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav-mobile .menu-item > a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gris-texto);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--gris-light);
  display: block;
  transition: color .2s;
}
.nav-mobile .menu-item:last-child > a { border-bottom: none; }
.nav-mobile .menu-item > a:hover { color: var(--negro); }
.nav-mobile .menu-item.current-menu-item > a { color: var(--negro); font-weight: 600; }
.nav-mobile .btn-yt-mobile {
  margin-top: 1rem;
  background: var(--lima-btn);
  color: var(--negro);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .2s;
}
.nav-mobile .btn-yt-mobile:hover { background: #96cc40; }
.nav-mobile .btn-yt-mobile svg { width: 15px; }

/* ══════════════════════════════════════
   PAGE WRAPPER (margen top por header fijo)
══════════════════════════════════════ */
.page-top { margin-top: 58px; }

/* ══════════════════════════════════════
   HERO (home)
══════════════════════════════════════ */
.hero {
  margin-top: 58px;
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* background-image se inyecta via style= en el HTML */
  background-color: var(--verde);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(19 51 4 / 66%) 0%, rgb(29 79 6 / 52%) 50%, rgb(19 55 3 / 71%) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 700px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: normal;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--lima-btn); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--lima-btn);
  color: var(--negro);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .2s;
}
.btn-hero-primary:hover { background: #96cc40; }
.btn-hero-primary svg { width: 14px; }
.btn-hero-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.22); }

/* Page header (páginas internas) */
.page-header {
  background: var(--verde);
  padding: 3.5rem 5%;
  margin-top: 58px;
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   STREAMING + AD
══════════════════════════════════════ */
.streaming-section {
  padding: 2rem 5%;
  display: grid;
  grid-template-columns: 1fr 320px 320px;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid var(--gris-border);
  background: var(--blanco);
}
.streaming-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde-mid);
  margin-bottom: 0.6rem;
}
.streaming-dot {
  width: 7px; height: 7px;
  background: var(--verde-mid);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.25;} }
.streaming-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--negro);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.streaming-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: var(--gris-texto);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.streaming-meta span { display: flex; align-items: center; gap: 5px; }
.streaming-meta svg { width: 13px; }
.btn-canal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lima-btn);
  color: var(--negro);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .2s;
}
.btn-canal:hover { background: #96cc40; }
.ad-box {
  background: var(--crema);
  border: 1.5px dashed var(--gris-border);
  border-radius: 8px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #bbb;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ══════════════════════════════════════
   SECCIÓN EPISODIOS (HOME)
══════════════════════════════════════ */
.section-episodios {
  background: var(--fondo-episodios);
  padding: 4rem 5%;
}
.section-center-title { text-align: center; margin-bottom: 2rem; }
.section-center-title h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: normal;
  color: var(--lima);
  margin-bottom: 0.4rem;
  display: inline-block;
  padding: 10px 10px 10px 40px;
  border-radius: 10px;
  background: var(--verde);
  position: relative;
}
.section-center-title h2:after {
  content: ' ';
  position: absolute;
  top: -16px;
  right: 20px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 10px 17.3px 10px;
  border-color: transparent transparent var(--verde) transparent;
}
.section-center-title h2:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: -45px;
  margin: 0;
  display: inline-block;
  width: 70px;
  height: 60px;
  background: url('../img/logo-ac-abbr.svg') center center no-repeat;
  background-size: 100%;
}
.section-center-title p { 
  font-size: 1.2rem; 
  color: var(--gris-texto);
  font-family: var(--font-display);
}

/* Cards de episodio */
.ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.ep-card {
  background: var(--blanco);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  border: 1px solid var(--gris-border);
  transition: transform .25s, box-shadow .25s;
}
.ep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
}

/* YouTube thumbnail */
.yt-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.yt-thumb-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s, opacity .3s;
}
.yt-thumb-wrap:hover > img { transform: scale(1.03); opacity: 0.85; }
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  pointer-events: none;
}
.yt-thumb-wrap:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.yt-play-btn svg { width: 20px; color: var(--verde); margin-left: 3px; }

.ep-cat, .cat-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--verde);
  color: var(--lima);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ep-cat img, .cat-badge img {
  height: 18px;
  width: 18px;
  display: block;
  flex-shrink: 0;
  border-radius: 3px;
  object-fit: cover;
}
.ep-body, .cat-body { padding: 1rem 1.1rem 1.2rem; }
.ep-date, .cat-date { font-size: 0.7rem; color: #aaa; margin-bottom: 0.4rem; }
.ep-title, .cat-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--negro);
  line-height: normal;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.ep-card.destacada .ep-title {
  color: var(--lima);
}
.ep-excerpt, .cat-excerpt {
  font-size: 0.8rem;
  color: var(--gris-texto);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}
.ep-card.destacada .ep-excerpt {
  color: var(--blanco);
}
.ep-link, .cat-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--verde-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.ep-card:hover .ep-link,
.cat-card:hover .cat-link { gap: 7px; }
.ep-card.destacada .ep-link {
  color: var(--lima);
}
.todos-link-wrap { text-align: center; margin-top: 0.5rem; }
.todos-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--negro);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.todos-link:hover { gap: 10px; }

/* ══════════════════════════════════════
   AD SLOTS
══════════════════════════════════════ */
.ad-leaderboard {
  background: var(--fondo-episodios);
  padding: 0.5rem 5% 2.5rem;
  display: flex;
  justify-content: center;
}
.ad-leader-box {
  background: var(--blanco);
  border: 1.5px dashed var(--gris-border);
  border-radius: 6px;
  width: 100%;
  max-width: 728px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #bbb;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ══════════════════════════════════════
   EXPLORAR POR CATEGORÍA
══════════════════════════════════════ */
.section-explorar { padding: 3.5rem 5%; background: var(--blanco); }
.explorar-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: normal;
  color: var(--negro);
  margin-bottom: 1rem;
}
.cat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.cat-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--gris-border);
  background: var(--blanco);
  color: var(--gris-texto);
  cursor: pointer;
  transition: all .2s;
}
.cat-pill.active { background: var(--lima-btn); border-color: var(--lima-btn); color: var(--negro); }
.cat-pill:hover:not(.active) { border-color: var(--lima); color: var(--negro); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  min-height: 200px;
  position: relative;
}
.grid-loading {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  border-radius: 8px;
}
.grid-loading.active { opacity: 1; pointer-events: all; }
.spinner {
  width: 28px; height: 28px;
  border: 3px solid var(--gris-light);
  border-top-color: var(--lima);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cat-card {
  background: var(--blanco);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  border: 1px solid var(--gris-border);
  transition: transform .25s, box-shadow .25s;
  animation: cardIn .35s ease both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }

.cat-yt-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.cat-yt-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s, opacity .3s;
}
.cat-yt-wrap:hover > img { transform: scale(1.03); opacity: 0.85; }
.cat-yt-wrap .yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform .2s, background .2s;
  pointer-events: none;
}
.cat-yt-wrap:hover .yt-play-btn { transform: translate(-50%,-50%) scale(1.1); background: #fff; }
.cat-yt-wrap .yt-play-btn svg { width: 18px; color: var(--verde); margin-left: 3px; }

.explorar-cta { text-align: center; padding-top: 0.5rem; }
.btn-explorar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blanco);
  color: var(--negro);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 8px;
  border: 1.5px solid var(--gris-border);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-explorar:hover { border-color: var(--lima); background: var(--fondo-episodios); }
.btn-explorar svg { width: 16px; color: var(--lima); }

/* ══════════════════════════════════════
   SPONSORS CARRUSEL
══════════════════════════════════════ */
.sponsors-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--gris-border);
  border-bottom: 1px solid var(--gris-border);
  background: var(--blanco);
  overflow: hidden;
}
.sponsors-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1.4rem;
}
.sponsors-track-wrap {
  overflow: hidden;
  position: relative;
}
.sponsors-track-wrap::before,
.sponsors-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.sponsors-track-wrap::before { left: 0; background: linear-gradient(to right, var(--blanco), transparent); }
.sponsors-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--blanco), transparent); }
.sponsors-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
}
.sponsors-track.is-scrolling {
  animation: marquee var(--marquee-duration, 22s) linear infinite;
}
.sponsors-track.is-scrolling:hover { animation-play-state: paused; }
.sponsors-track.is-centered {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.sp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.sp-logo:hover { transform: translateY(-1px); }
.sp-logo img {
  width: 160px;
  height: 100px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  opacity: 0.75;
  transition: opacity .2s;
}
.sp-logo:hover img { opacity: 1; }

/* ══════════════════════════════════════
   BLOG by BARDEO
══════════════════════════════════════ */
.section-blog { background: var(--fondo-blog); padding: 4rem 5%; }
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-mid);
  margin-bottom: 0.4rem;
}
.blog-section-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: normal;
  color: var(--negro);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-section-title img {
  height: 28px;
  width: auto;
  display: block;
}
.btn-blog-all {
  background: var(--blanco);
  color: var(--negro);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--gris-border);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.btn-blog-all:hover { background: var(--crema); border-color: var(--verde-mid); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--blanco);
  border: 1px solid var(--gris-border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.blog-img-wrap { overflow: hidden; }
.blog-img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.04); }
.blog-body { padding: 1rem 1.1rem 1.2rem; }
.blog-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--verde-mid);
  margin-bottom: 0.4rem;
  display: block;
  text-transform: uppercase;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--negro);
  line-height: normal;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.blog-card-excerpt {
  font-size: 0.78rem;
  color: var(--gris-texto);
  line-height: 1.55;
  margin-bottom: 0.9rem;
}
.blog-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.blog-author { display: flex; align-items: center; gap: 8px; }
.author-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--verde-mid);
  border: 1.5px solid rgba(95,134,71,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.author-avatar-letter { font-size: 0.65rem; font-weight: 800; color: var(--lima-btn); line-height: 1; }
.author-name { font-size: 0.75rem; font-weight: 600; color: var(--gris-texto); }
.blog-read-time { font-size: 0.7rem; color: #aaa; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--fondo-footer);
  border-top: 1px solid var(--gris-border);
  color: var(--gris-texto);
  padding: 3.5rem 5% 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gris-border);
}
.footer-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; margin-bottom: 0.9rem; }
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-logo-badge {
  background: var(--verde-mid);
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}
.footer-logo-text { font-size: 0.95rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.footer-logo-text span { color: var(--lima-btn); }
.footer-desc { font-size: 0.82rem; line-height: 1.65; color: var(--gris-texto); margin-bottom: 1.3rem; }
.footer-nl-label { font-size: 0.75rem; font-weight: 600; color: var(--negro); margin-bottom: 0.5rem; }
.nl-form { display: flex; border-radius: 6px; overflow: hidden; }
.nl-input {
  background: var(--blanco);
  border: 1px solid var(--gris-border);
  border-right: none;
  padding: 9px 13px;
  font-size: 0.82rem;
  color: var(--negro);
  flex: 1;
  outline: none;
  font-family: 'Inter', sans-serif;
  border-radius: 6px 0 0 6px;
}
.nl-input::placeholder { color: #aaa; }
.nl-input:focus { border-color: var(--lima); }
.nl-btn {
  background: var(--lima-btn);
  color: var(--negro);
  border: none;
  padding: 9px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border-radius: 0 6px 6px 0;
  transition: background .2s;
  white-space: nowrap;
}
.nl-btn:hover { background: #96cc40; }

/* WPForms en el footer */
.footer-top .wpforms-container { margin: 0; }
.footer-top .wpforms-container .wpforms-field { margin-bottom: 0 !important; }
.footer-top .wpforms-container .wpforms-field-label {
  display: none !important;
}
.footer-top .wpforms-container .wpforms-form {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
}
.footer-top .wpforms-container input[type=email] {
  flex: 1;
  background: var(--blanco) !important;
  border: 1px solid var(--gris-border) !important;
  border-right: none !important;
  border-radius: 6px 0 0 6px !important;
  padding: 9px 13px !important;
  font-size: 0.82rem !important;
  font-family: var(--font-primary) !important;
  color: var(--negro) !important;
  outline: none !important;
  box-shadow: none !important;
  min-height: unset !important;
  width: 100% !important;
}
.footer-top .wpforms-container input[type=email]::placeholder { color: #aaa !important; }
.footer-top .wpforms-container input[type=email]:focus { border-color: var(--lima) !important; }
.footer-top .wpforms-container .wpforms-field-container { flex: 1; }
.footer-top .wpforms-container .wpforms-submit-container { margin: 0 !important; padding: 0 !important; }
.footer-top .wpforms-container .wpforms-submit {
  background: var(--lima-btn) !important;
  color: var(--negro) !important;
  border: 1px solid var(--gris-border) !important;
  border-radius: 0 6px 6px 0 !important;
  padding: 9px 16px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  font-family: var(--font-primary) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background .2s !important;
}
.footer-top .wpforms-container .wpforms-submit:hover { background: #96cc40 !important; }
.footer-top .wpforms-container .wpforms-error {
  display: block !important;
  font-size: 0.72rem !important;
  color: #c0392b !important;
  margin-top: 4px !important;
  font-weight: 500 !important;
}

.footer-col-title { font-size: 0.8rem; font-weight: 700; color: var(--negro); margin-bottom: 1rem; }
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav-links a { font-size: 0.82rem; color: var(--gris-texto); text-decoration: none; transition: color .2s; }
.footer-nav-links a:hover { color: var(--verde-mid); }
.social-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.social-icon-btn {
  width: 36px; height: 36px;
  background: var(--blanco);
  border: 1px solid var(--gris-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gris-texto);
  font-size: 0.7rem;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.social-icon-btn:hover { background: var(--lima-btn); color: var(--negro); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: #aaa; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: #aaa; text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--verde-mid); }

/* ══════════════════════════════════════
   UTILIDADES GENERALES
══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Card destacada — fondo verde pastel (solo las 3 de "¿Qué tipo de contenido...?") */
.ep-card.destacada {
  background: var(--verde);
  border-color: #c8e880;
}
.ep-card.destacada .ep-body { background: var(--verde); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .streaming-section { grid-template-columns: 1fr 260px 260px; }
}
@media (max-width: 960px) {
  .ep-grid, .cat-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .streaming-section { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-desktop { display: none; }
  .btn-yt { display: none; }
  .hamburger { display: flex; }
  .ep-grid, .cat-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { height: 360px; }
  .hero-title { font-size: 2rem; }
  .section-center-title h2 { font-size: 1.55rem; }
  .explorar-title { font-size: 1.55rem; }
  .blog-section-title { font-size: 1.55rem; }
  .ep-title, .cat-title { font-size: 1.1rem; }
  .streaming-section { grid-template-columns: 1fr; padding: 1.5rem 5%; }
  .page-header { padding: 2.5rem 5%; }
  .section-center-title h2 {
    padding: 10px;
  }
  .section-center-title h2:before {
    display: none;
  }
}

/* ══════════════════════════════════════
   BARDEO accent
══════════════════════════════════════ */
/* Bardeo red accent removed */

/* ══════════════════════════════════════
   HERO LOGO (reemplaza el h1 de texto)
══════════════════════════════════════ */
.hero-logo-wrap {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  height: clamp(60px, 10vw, 150px);
  width: auto;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.35));
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   BARDEO LOGO en blog title
══════════════════════════════════════ */
.blog-section-title .bardeo-logo {
  height: 30px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}

/* ══════════════════════════════════════
   INSTAGRAM FEED
══════════════════════════════════════ */
.section-instagram {
  padding: 3.5rem 1.5rem;
  background: var(--crema);
}
.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.instagram-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--verde);
}
.instagram-title svg { color: #E4405F; flex-shrink: 0; }
.btn-ig-seguir {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--verde);
  text-decoration: none;
  border: 1.5px solid var(--verde);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.btn-ig-seguir:hover { background: var(--verde); color: var(--lima); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}
.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  background: var(--gris-light);
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.ig-item:hover img { transform: scale(1.06); }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,35,12,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-overlay svg { color: #fff; }
.ig-video-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.ig-video-icon svg { width: 14px; color: #fff; }

@media (max-width: 767px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .section-instagram { padding: 2rem 1rem; }
}
