/*@font-face {
  font-family: Oswald Variablefont Wght;
  src: url('../fonts/Oswald-VariableFont_wght.ttf') format("truetype");
  font-weight: 100 200 400 700 900;
  font-style: normal;
  font-display: swap;
}*/

@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');



html {
  scroll-behavior: smooth;
}

:root {
  --visible: 3;
  --gap: 0px;
  --speed: 600ms;
  --bg-blur: rgba(255, 255, 255, 0.25);
  --fg: #0f172a;
  --brand: #07219F;
  --border: rgba(255, 255, 255, 0.2);
  --shadow: rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  :root {
    --visible: 2;
  }
}

@media (max-width: 600px) {
  :root {
    --visible: 1;
  }
}

body {
  color: #333;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  /* line-height: 20px;*/

}

.main-content {
  padding-top: 50px;
  /* El mismo valor de la altura del navbar */
  min-height: 50px;
  position: static;
}


.todo {
  text-align: center;

}

.navbar {
  text-align: center;
  background-color: #fff0;
  margin: 15px 10px 9px;
  padding-bottom: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  position: fixed;
  inset: 0% 0% auto;
}

.image {
  min-width: 70px;
}

.nav_cont {
  z-index: 900;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  outline-offset: 0px;
  pointer-events: auto;
  -webkit-text-fill-color: inherit;
  background-color: rgba(255, 255, 255, 0.62);
  background-clip: content-box;
  border: .3px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  outline: 1px #333;
  min-width: 0;
  max-width: 1000px;
  min-height: 0;
  display: block;
  position: relative;
  box-shadow: 0px 0px 25px -4px rgba(0, 0, 0, 0.59);
  -webkit-box-shadow: 0px 0px 25px -4px rgba(0, 0, 0, 0.59);
  -moz-box-shadow: 0px 0px 25px -4px rgba(0, 0, 0, 0.59);
}

.brand {
  z-index: 9000;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  position: static;
}

.nav-menu {
  z-index: 1000;
  text-decoration: none;
  display: block;
  position: relative;
  top: 9px;
  right: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 300;
  display: inline-block;
  padding: 0;

}

.nav-link {
  font-family: "Oswald", sans-serif;

  font-weight: 300;
  font-size: 20px;
  margin-top: 0px;

  text-align: center;
  display: inline-block;

}

.nav-link:hover {
  font-weight: 200;
  color: #001778;
  background-color: rgba(255, 255, 255, 0.85);
  border: solid #FFFFFF;
  border-radius: 10px;

  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-link-2,
.nav-link-3 {
  font-size: 20px;
}

.body {
  background-color: #07219F;



  align-items: center;
  justify-content: center;

  /* background: url(bgm.jpg) no-repeat center/cover  */




  background-image: url('../images/bgc1low2.png');
  /* Reemplaza con la ruta de tu imagen */
  background-repeat: no-repeat;
  /* Evita que la imagen se repita */
  background-position: center center;
  /* Centra la imagen horizontal y verticalmente */
  background-attachment: fixed;
  /* Mantiene la imagen fija al desplazarse */
  background-size: cover;
  /* Escala la imagen para cubrir todo el fondo */







}





.nav-wrap {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, calc(100% - 24px));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background-color: var(--bg-blur);
  border: 1px solid var(--border);
  border-bottom: none;
  /* evita línea inferior del contenedor */
  border-radius: 10px;
  /* sin borde redondo inferior para continuidad */
  box-shadow: 0 8px 32px var(--shadow);
  z-index: 1000;
  overflow: visible;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  position: relative;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.nav__logo {
  width: 110px;
  /*height:40px;*/

  /*background: radial-gradient(circle at 30% 30%, var(--brand), #0369a1);*/
}

.nav__links {
  display: flex;
  gap: 1rem;
}

.nav__btn {
  color: var(--fg);
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nav__btn_red {
  background-color: #e51050;
  color: #fff;
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nav__btn:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.nav__btn_red:hover {
  transform: translateY(-2px);
  background-color: #c90a44;
}

/* ---- MODAL EN VIVO SYSTEM ---- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #fff;
  width: 90%;
  max-width: 800px;
  border-radius: 16px;
  position: relative;
  padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #444;
  line-height: 1;
}

.modal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #07219F;
  letter-spacing: 1px;
}

.modal-video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.modal-video-container video {
  width: 100%;
  height: 100%;
  display: block;
}

/* Advertisement Style Preroll */
.modal-ad-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding-bottom: 2px;
}

.modal-ad-label {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 10px 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.modal-ad-progress-bg {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.modal-ad-progress-fill {
  width: 0%;
  height: 100%;
  background: #ffcc00;
  /* Yellow bar */
  transition: width 0.1s linear;
}

@media (max-width: 480px) {
  .modal-content {
    width: 95%;
  }

  .nav__btn_red {
    padding: 8px 12px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .modal-card {
    padding: 20px 15px;
  }

  .modal-title {
    font-size: 18px;
  }
}

/* ---- FOOTER STYLES ---- */
.pie footer {
  background-color: #fff;
  background-image: linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)), url('../images/bg_foo2.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 40px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Oswald', sans-serif;
  border-radius: 10px;
  overflow: hidden;
}

.footer-subscribe {
  background: #f0f0f0;
  padding: 40px 20px;
  text-align: center;
}

.footer-subscribe input[type="email"] {
  border: none;
  border-bottom: 1px solid #999;
  padding: 8px;
  width: 250px;
  background: transparent;
  font-size: 14px;
  outline: none;
}

.footer-subscribe button {
  background: #444;
  color: #fff;
  border: none;
  padding: 9px 20px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-column h4 {
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
}

.footer-info p {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

/* Footer Bottom Layout: Text + Icons side by side */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 15px 60px;
  font-size: 13px;
  color: #999;
  display: flex;
  justify-content: flex-start;
  /* Place items at the start */
  align-items: center;
  gap: 20px;
  /* Space between copyright and icons group */
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Small space between icons */
}

.footer-social a {
  color: #999;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 18px !important;
  /* Forces small size */
  height: 18px !important;
  fill: currentColor;
}

.footer-social a:hover {
  color: #333;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
    flex: 0 0 auto;
    margin: 10px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s ease;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--fg);
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 0;
  /* sin borde por defecto para que no se vea línea */
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, border-width .2s ease;
  -webkit-overflow-scrolling: touch;
  z-index: 1100;
}

.mobile-menu.open {
  /* solo muestra borde cuando está abierto */
  max-height: 300px;
  border: 1px solid var(--border);
  border-top: none;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--fg);
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width:640px) {
  .nav__links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    padding: 0.6rem 0.6rem;
  }
}

@media (min-width:641px) {
  .menu-toggle {
    display: none;
  }

  .nav__links {
    display: flex;
  }
}







.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.4);*/
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  opacity: 0;
  transition: top 1s ease, opacity 1s ease;
}

.slide.active {
  top: 0;
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}







.carr {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  filter: drop-shadow(0 0 3px #00000021);
  text-align: center;
  object-fit: fill;
  background-color: #fafafae0;
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  height: 400px;
  margin: 10px auto;
  display: block;
  position: relative;

}

.bot_live {
  filter: drop-shadow(0 0 5px #00000054);
  vertical-align: middle;
  background-color: #e51050;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: inline-block;

  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 100;
}

.bot_live:hover {

  background-color: #001778;
}

.minibody {
  filter: drop-shadow(0 0 3px #00000026);
  background-color: #ffffffdb;
  border-radius: 9px;
  max-width: 1200px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.program_mo {
  box-sizing: border-box;
  float: none;
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  aspect-ratio: auto;
  flex-flow: wrap;
  grid-template: "Area-2 Area"
    / .75fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: flex-start start;
  margin: 0 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  position: relative;
}

.ads {
  box-sizing: border-box;
  float: right;
  clear: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  background-color: #f50000;
  border-radius: 9px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 250px;
  min-width: 250px;
  min-height: 400px;
  margin: auto auto 10px;
  padding-bottom: 10px;
  font-family: Oswald Variablefont Wght, Impact, sans-serif;
  display: block;
  position: static;
}

.c1m {
  background-color: #dfdfec;
  border-radius: 12px;
  margin-left: auto;
  margin-right: 260px;
  position: relative;
}

.cli {
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 1200px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;

}

.pie {
  filter: drop-shadow(0 0 3px #00000026);
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 1200px;
  /* [disabled]margin-top: 10px; */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  position: relative;
}


.especial {
  display: none;

}

.hero-heading-center {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading.margin-bottom-32px {
  margin-bottom: 32px;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 0;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.viendo {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  filter: drop-shadow(0 0 3px #00000021);
  text-align: center;
  object-fit: fill;
  background-color: #fafafae0;
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 10px auto;
  display: block;
  position: relative;
}

.div-block,
.div-block-2,
.div-block-3 {
  padding: 10px;
}

.pro {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  filter: drop-shadow(0 0 3px #00000021);
  text-align: center;
  object-fit: fill;
  background-color: #fafafae0;
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 10px auto;
  display: block;
  position: relative;
}

.t1_not {
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /* [disabled]border-top-right-radius: 10px; */
  /* [disabled]border-top-left-radius: 10px; */
  padding-top: 7px;
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 7px;

  text-align: left;
}

.colestas {
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
}

.minitit {
  color: #2c2829;
  -webkit-text-stroke-color: #f10b54;
  margin-bottom: 10px;
  font-size: 15px;
}

.minitit_rojo {
  color: #f00b53;
  margin-bottom: 10px;
  font-size: 15px;
}

.texnegro {
  font-weight: 600;
}

.column-2,
.column-3 {
  padding: 15px 10px 10px;
}

.image-2,
.image-3 {
  border-radius: 10px 10px 0 0;
}

.not {
  background-color: #dfdfec;
  border-radius: 12px;
  margin-left: auto;
  margin-right: 260px;
  position: relative;
}

.grid {
  grid-column-gap: 0px;
  grid-template-areas: "Area-2 Area-2"
    "Area-3 Area-3";
}

.div-block-4 {
  text-align: left;
  padding: 10px;
  font-family: "Oswald", sans-serif;
}

.video {
  border-radius: 10px 10px 0 0;
}

.columns {
  padding-top: 10px;
  padding-bottom: 10px;
}

.columns-2 {
  margin-top: 0;
  padding-left: 0;
}

.div-block-5 {
  padding-top: 0;
  padding-right: 10px;
}

.div-block-6 {
  padding-left: 10px;
}

.detallevideo {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: rgba(60, 62, 76, 1.00);
  text-align: left;
}

.video-2 {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.pcanal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  filter: drop-shadow(0 0 3px #00000021);
  text-align: center;
  object-fit: fill;
  background-color: #fafafae0;
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 10px auto;
  display: block;
  position: relative;
}

.adsmovil {
  box-sizing: border-box;
  float: right;
  clear: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  background-color: #f50000;
  border-radius: 9px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 250px;
  min-width: 250px;
  min-height: 400px;
  margin: auto auto 10px;
  padding-bottom: 10px;
  font-family: "Oswald", sans-serif;
  display: block;
  position: static;
}

.colmax,
.colmaxtablet,
.comaxmin {
  padding-top: 10px;
  padding-bottom: 10px;
}















@media screen and (min-width: 1920px) {
  .todo {
    text-align: center;
  }

  .nav_cont {
    border-width: 1px;
  }
}

@media screen and (max-width: 991px) {
  .carr {
    margin-left: 10px;
    margin-right: 10px;
  }

  .container {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .viendo,
  .pro {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {

  .main-content {
    padding-top: 80px;
    /* El mismo valor de la altura del navbar */
  }


  .hero-heading-center {
    padding: 60px 15px;
  }

  .body {

    padding-top: 0px;
    background-image: none;
    background-color: #001778;



  }


  .todo {
    padding-top: 0px;
    position: relative;


  }






  .slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.4);*/
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    opacity: 0;
    transition: top 1s ease, opacity 1s ease;
  }

  .slide.active {
    top: 0;
    opacity: 1;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }



  .carr {

    max-width: 700px;
    height: 200px;
    border-radius: 10px;

  }





}

@media screen and (max-width: 479px) {
  .main-content {
    padding-top: 90px;
    /* El mismo valor de la altura del navbar */
    padding-bottom: 40px;
  }

  .body {


    background-image: none;
    background-color: #001778;
    padding-top: 0px;


  }


  .todo {
    position: relative;
    padding-top: 0px;

  }




  .nav_cont {
    border-width: 1px;
  }

  .carr {
    filter: drop-shadow(0 0 10px #0000000d);


    margin-left: 10px;
    margin-right: 10px;

    max-width: 700px;
    height: 130px;
    min-height: 130;
    border-radius: 10px;
  }




  .slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 130px;
    overflow: hidden;
    border-radius: 10px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.4);*/
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    opacity: 0;
    transition: top 1s ease, opacity 1s ease;
  }

  .slide.active {
    top: 0;
    opacity: 1;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }





  .icon {
    justify-content: center;
    align-items: center;
    margin-top: -1px;
    margin-left: auto;
    margin-right: auto;
    font-size: 40px;
    text-decoration: none;
    display: block;
  }

  .minibody {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
  }

  .program_mo {
    flex-flow: wrap;
    flex: 1;
    order: 0;
    place-content: stretch center;
    align-self: auto;
    align-items: flex-start;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .adsall {
    width: 100% !important;
    float: none !important;
    display: block !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }

  .ads {
    clear: none;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 20px !important;
    text-align: center;
    position: static;
  }

  .ads img {
    display: block !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
  }

  .c1m {
    border-radius: 11px;
    flex: 0 auto;
    align-self: auto;
    width: 280px;
    min-width: 360px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .cli,
  .pie {
    margin-left: 10px;
    margin-right: 10px;
  }

  .especial {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    position: fixed;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    height: 75px;
    background-color: #ff0050;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    gap: 15px;
  }

  .especial:hover {
    background-color: #d8004d;
    transform: translateX(-50%) scale(1.02);
  }

  .especial .live-text-stack {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
  }

  .especial .live-top-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .especial .live-bottom-text {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .container {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .viendo,
  .pro,
  .hablemos-section {
    filter: drop-shadow(0 0 10px #0000000d);
    background-color: #f7fdffe0;
    border-radius: 12px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .viendo .w-col {
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .viendo .w-col:last-child {
    margin-bottom: 0;
  }

  .ritmo-section {
    filter: drop-shadow(0 0 10px #0000000d);
    background-color: #fff9f5;
    border-radius: 12px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .classics-section {
    border-radius: 12px;
    margin-left: 10px;
    margin-right: 10px;
  }



}


#w-node-_0d4ddb4a-3476-b419-3fe6-c602055c10ff-798ec0e4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: auto;
}


/* ---- HABLEMOS / RITMO Y SABOR / ONLY CLASSICS SECTIONS ---- */
.hablemos-section,
.ritmo-section,
.classics-section {
  padding: 60px 0;
  background-color: #f7fdff;
  filter: drop-shadow(0 0 10px #0000000d);
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Fondo para Hablemos */
.hablemos-section {
  background-image: linear-gradient(rgba(247, 253, 255, 0.5), rgba(247, 253, 255, 0.5)), url('../images/bg_hm.jpg');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Tono cálido exclusivo de Ritmo y Sabor */
.ritmo-section {
  background-color: #fff9f5;
  background-image: linear-gradient(rgba(255, 249, 245, 0.5), rgba(255, 249, 245, 0.5)), url('../images/bg_rs.jpg');
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ---- ONLY CLASSICS SECTION ---- */
.classics-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
  background-image: linear-gradient(rgba(26, 26, 46, 0.5), rgba(26, 26, 46, 0.5)), url('../images/bg_oc.jpg');
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  filter: drop-shadow(0 0 10px #0000000d);
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.classics-heading {
  color: #d4af37 !important;
  letter-spacing: 4px;
  font-size: 2.2rem;
}

.classics-desc {
  color: #ccc;
  max-width: 680px;
}

.classics-player-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.classics-player-wrap .video-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.classics-player-wrap .video-box video {
  width: 100%;
  display: block;
}

.classics-reactions {
  justify-content: center;
  margin-top: 20px;
}

.ritmo-section .centered-heading {
  color: #c0392b;
}

.section-desc {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  color: #555;
  max-width: 720px;
  margin: 0 auto 40px auto;
  text-align: center;
  line-height: 1.7;
  padding: 0 20px;
}

.playlist-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.playlist-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.playlist-item:last-child {
  border-bottom: none;
}

.playlist-item:hover {
  background-color: #07219F;
}

.playlist-item:hover .playlist-title,
.playlist-item:hover .playlist-subtitle,
.playlist-item:hover .playlist-duration {
  color: #fff;
}

.playlist-play-icon {
  flex-shrink: 0;
  margin-right: 15px;
}

.playlist-info {
  flex-grow: 1;
  text-align: left;
}

.playlist-title {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  margin-bottom: 2px;
}

.playlist-subtitle {
  font-size: 13px;
  color: #888;
}

.playlist-duration {
  font-size: 13px;
  color: #888;
  margin-right: 15px;
}

.playlist-more {
  color: #ccc;
  font-size: 18px;
}

/* ---- SIDEBAR MODULES (CALENDAR & INTERVIEWS) ---- */
.sidebar-title {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}

.sidebar-module {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  padding: 20px;
  font-family: 'Oswald', sans-serif;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.cal-nav-btn {
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cal-nav-btn:hover {
  background: #eee;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  margin-bottom: 10px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 14px;
}

.calendar-days div {
  padding: 8px 0;
  color: #444;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-days div:hover {
  background: #f0f0f0;
}

.calendar-days .prev-date,
.calendar-days .next-date {
  color: #ccc;
}

.calendar-days .today {
  background: #d4f800;
  /* Lime green from image */
  color: #333;
  font-weight: bold;
}

/* Sidebar Headers */
.sidebar-module .module-header {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}

/* Línea divisoria centrada que no toca los bordes */
.sidebar-module .module-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background-color: #f0f0f0;
}

.sidebar-module h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #222;
  text-align: center;
  letter-spacing: 0.5px;
}

.interviews-list {
  display: flex;
  flex-direction: column;
}

.interview-item {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.interview-item:last-child {
  border-bottom: none;
}

.interview-item:hover {
  background-color: #eefbff;
}

.interview-item.active {
  background-color: transparent;
}

.interview-avatar {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  background-color: #eee;
}

.interview-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-info {
  text-align: left;
}

.interview-name {
  font-size: 17px;
  font-weight: 500;
  color: #333;
}

.interview-role {
  font-size: 12px;
  color: #777;
}

@media screen and (max-width: 991px) {
  .sidebar-module {
    margin-top: 20px;
  }
}

/* ---- FOOTER STYLES ---- */

.pie footer {
  background-color: #fff;
  background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../images/bg_foo2.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 40px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Oswald', sans-serif;
  border-radius: 10px;
  overflow: hidden;
}

.footer-subscribe {
  background: #f0f0f0;
  padding: 40px 20px;
  text-align: center;
}

.footer-subscribe input[type="email"] {
  border: none;
  border-bottom: 1px solid #999;
  padding: 8px;
  width: 250px;
  background: transparent;
  font-size: 14px;
  outline: none;
}

.footer-subscribe button {
  background: #444;
  color: #fff;
  border: none;
  padding: 9px 20px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-column h4 {
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
}

.footer-info p {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

/* Footer Bottom Layout: Text + Icons side by side */
.footer-bottom {
  border-top: 1px solid #ddd !important;
  padding: 15px 60px;
  font-size: 13px;
  color: #999;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 20px !important;
}

.footer-social {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.footer-social a {
  color: #999 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}

.footer-social a:hover {
  color: #333 !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
    flex: 0 0 auto;
    margin: 10px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px !important;
  }
}