  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pink:      #ff5967;
      --pink-dark: #e03e4c;
      --gray-text: #5e5e5e;
      --bg:        #fdf8f8;
      --card-bg:   #ffffff;
      --shadow:    0 4px 24px rgba(255,89,103,.12);
      --radius:    16px;
      --max-w:     1280px;
    }

    body {
      background: var(--bg);
      font-family: 'DM Sans', sans-serif;
      color: #333;
      min-height: 100vh;
    }
.section-title {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    margin-bottom: 8px;
  }
    .page-wrapper {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 60px 24px 80px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-header .eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--pink);
      background: rgba(255,89,103,.08);
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 16px;
    }

    .section-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 42px);
      color: var(--pink);
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .section-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--gray-text);
      letter-spacing: .06em;
      text-transform: uppercase;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(255,89,103,.2);
      margin-bottom: 28px;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }

    @media (max-width: 960px) {
      .video-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 520px) {
      .video-grid { grid-template-columns: 1fr; }
    }

    .video-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform .25s ease, box-shadow .25s ease;
      text-decoration: none;
      display: block;
    }

    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(255,89,103,.22);
    }

    .video-card:hover .card-overlay {
      opacity: 1;
    }

    .card-thumb {
      position: relative;
      width: 100%;
      aspect-ratio: 731 / 1060;
      overflow: hidden;
      background: #f0e8e8;
    }

    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s ease;
    }

    .video-card:hover .card-thumb img {
      transform: scale(1.04);
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(255,89,103,.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .25s ease;
    }

    .dl-icon {
      width: 54px;
      height: 54px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
    }

    .dl-icon svg {
      width: 24px;
      height: 24px;
      fill: var(--pink);
    }



    /*VIDEOS*/

      *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pink:      #ff5967;
      --pink-dark: #e03e4c;
      --gray-text: #5e5e5e;
      --bg:        #fdf8f8;
      --card-bg:   #ffffff;
      --shadow:    0 4px 24px rgba(255,89,103,.12);
      --radius:    16px;
      --max-w:     1280px;
    }

    body {
      background: var(--bg);
      font-family: 'DM Sans', sans-serif;
      color: #333;
      min-height: 100vh;
    }

    /* ── PAGE WRAPPER ── */
    .page-wrapper {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 60px 24px 80px;
    }

    /* ── HEADER ── */
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-header .eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--pink);
      background: rgba(255,89,103,.08);
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 16px;
    }

    .section-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 42px);
      color: var(--pink);
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .section-header p {
      font-size: 16px;
      font-weight: 300;
      color: var(--gray-text);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ── SECTION LABEL ── */
    .section-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--gray-text);
      letter-spacing: .06em;
      text-transform: uppercase;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(255,89,103,.2);
      margin-bottom: 28px;
    }

    /* ── GRID ── */
    .video-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }

    @media (max-width: 960px) {
      .video-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 520px) {
      .video-grid { grid-template-columns: 1fr; }
    }

    /* ── CARD ── */
    .video-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform .25s ease, box-shadow .25s ease;
      text-decoration: none;
      display: block;
    }

    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(255,89,103,.22);
    }

    .video-card:hover .card-overlay {
      opacity: 1;
    }

    /* card sin enlace (solo imagen) */
    .card-static {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: block;
    }

    .card-thumb {
      position: relative;
      width: 100%;
      aspect-ratio: 731 / 1060;
      overflow: hidden;
      background: #f0e8e8;
    }

    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s ease;
    }

    .video-card:hover .card-thumb img {
      transform: scale(1.04);
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(255,89,103,.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .25s ease;
    }

    .play-icon {
      width: 54px;
      height: 54px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
    }

    .play-icon svg {
      width: 22px;
      height: 22px;
      fill: var(--pink);
      margin-left: 3px;
    }

    /* PDF icon overlay */
    .pdf-icon {
      width: 54px;
      height: 54px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
    }

    .pdf-icon svg {
      width: 24px;
      height: 24px;
      fill: var(--pink);
    }




      /* ============================================
   FOLLETOS MK - Visor + Carrusel de Miniaturas
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* Variables */
:root {
  --accent: #C8923A;
  --accent-light: #e8b96a;
  --dark: #12110F;
  --surface: #1C1A17;
  --surface2: #252219;
  --border: rgba(200, 146, 58, 0.2);
  --text: #F0EDE8;
  --text-muted: #9A9080;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* Sección principal */
.folletos_mk {
  background-color: white;
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  padding-bottom: 60px;
}

/* Título */
.folletos_mk h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: black;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
}
.folletos_mk h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ─── VISOR PRINCIPAL ─────────────────────── */
.folleto-visor-wrapper {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 0 24px;
  position: relative;
}

.folleto-visor-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, var(--accent-light) 100%);
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
  left: 24px;
  right: 24px;
}

#visorFolleto {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(420px, 65vh, 780px);
  border: none;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow:
    var(--shadow),
    0 0 0 1px var(--border);
  transition: box-shadow 0.3s ease;
}

#visorFolleto:hover {
  box-shadow:
    0 12px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(200, 146, 58, 0.4);
}

/* ─── CARRUSEL / MINIATURAS ───────────────── */
.folletos-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  justify-content: flex-start;
}

/* Item de miniatura */
.folleto-item {
  flex: 0 0 calc(20% - 16px);
  min-width: 160px;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
}

.folleto-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(200, 146, 58, 0.2);
}

.folleto-item.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 8px 28px rgba(200, 146, 58, 0.3);
}

.folleto-item.active::before {
  content: '▶';
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-left: 2px;
}

/* Imagen miniatura */
.folleto-item figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface2);
}

.folleto-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.folleto-item:hover figure img {
  transform: scale(1.06);
}

/* Título de la miniatura */
.folleto-item .folleto-titulo {
  padding: 10px 12px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.folleto-item:hover .folleto-titulo,
.folleto-item.active .folleto-titulo {
  color: var(--text);
}

/* ─── Mensaje sin acceso ──────────────────── */
.folletos_mk .acceso-denegado {
  padding: 80px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ─── OWL CAROUSEL override ──────────────── */
/* Si decides mantener owl-carousel, aplica el grid como
   fallback con JS o reemplaza el HTML del carrusel */

/* ─── BANNER INFERIOR ────────────────────── */
.banner_inferior {
  background-color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  padding: 0 0 70px;
  width: 100%;
}

.texto_bannerinferior {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  padding: 56px 48px 60px !important;
  box-shadow: var(--shadow);
}

/* Overlay oscuro sobre la imagen de fondo */
.texto_bannerinferior::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 10, 8, 0.88) 0%,
    rgba(18, 14, 10, 0.75) 55%,
    rgba(12, 10, 8, 0.60) 100%
  );
  z-index: 0;
}

.texto_bannerinferior > .row {
  position: relative;
  z-index: 1;
}

/* Título principal grande */
.titulo_banner_inferior {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  line-height: 1.15 !important;
  letter-spacing: 0.01em !important;
  margin-bottom: 40px !important;
  position: relative;
  padding-bottom: 20px;
}

.titulo_banner_inferior::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), transparent);
}

/* Divisor vertical entre las 2 columnas */
.banner_inferior .col-md-5:first-of-type {
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

.banner_inferior .col-md-5:last-of-type {
  padding-left: 40px;
}

/* Subtítulos */
.subtitulos_baner {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(1rem, 1.5vw, 1.2rem) !important;
  font-weight: 500 !important;
  color: var(--accent-light) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 20px !important;
}

/* Listas de contenido */
.lista_banner_inferior ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.lista_banner_inferior ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: rgba(240, 237, 232, 0.80);
  font-size: 0.97rem;
  line-height: 1.65;
}

.lista_banner_inferior ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.lista_banner_inferior ul li span {
  font-family: 'DM Sans', sans-serif !important;
}

/* Botones / enlaces CTA */
.enlace_banner_inferior ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enlace_banner_inferior ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--dark) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 13px 28px;
  border-radius: 40px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  box-shadow: 0 4px 20px rgba(200, 146, 58, 0.35);
}

.enlace_banner_inferior ul li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 146, 58, 0.5);
  opacity: 0.92;
}

.enlace_banner_inferior ul li a .fa {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.enlace_banner_inferior ul li a:hover .fa {
  transform: translateX(3px);
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1100px) {
  .folleto-item { flex: 0 0 calc(25% - 15px); }
}

@media (max-width: 768px) {
  .folleto-item { flex: 0 0 calc(33.33% - 14px); }

  #visorFolleto {
    height: clamp(320px, 55vw, 500px);
  }

  .texto_bannerinferior {
    padding: 36px 24px 40px !important;
  }

  .banner_inferior .col-md-5:first-of-type {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 15px;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .banner_inferior .col-md-5:last-of-type {
    padding-left: 15px;
  }
}

@media (max-width: 520px) {
  .folleto-item { flex: 0 0 calc(50% - 10px); }
}