    .btn-card {
      background-color: #ffc509;
      color: #000;
    }

    .btn-card:hover {
      background-color: #FFCD4D;
      color: #000;
    }


    /* Promo section with background and two banners side-by-side */
    .promo-section {
      background-image: url('../img/Bg-1.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      color: #fff;
    }

    .app-section {
      background-image: url('../img/Bg-3.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      color: #fff;
    }

    .promo-section .promo-overlay {
      background: rgba(0, 0, 0, 0.35);
      width: 100%;
      height: 100%;
    }

    .promo-section .promo-img {
      width: 100%;
      object-fit: contain;
      display: block;
      border-radius: .75rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    /* App section: ensure background image is Bg-3 and inner image fits its container
       Override promo-img sizing inside .app-section to avoid oversized images */
    .app-section {
      background-image: url('../img/Bg-3.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      color: #fff;
    }

    .app-section .promo-overlay {
      background: rgba(0, 0, 0, 0.25);
      width: 100%;
    }

    /* Make the inner image responsive and constrained to its container */
    .app-section .promo-img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      border-radius: .5rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }


    .app-banner-hotspots {
      position: relative;
      display: block;
      width: 100%;
    }

    .app-banner-hotspots picture,
    .app-banner-hotspots img {
      display: block;
      width: 100%;
      height: auto;
      position: relative;
      z-index: 0;
    }

    .app-banner-hotspots__link {
      position: absolute;
      display: block;
      background: rgba(255, 255, 255, 0);
      cursor: pointer;
      z-index: 5;
      pointer-events: auto;
      transition: box-shadow 0.2s ease;
    }

    .app-banner-hotspots__link:focus-visible,
    .app-banner-hotspots__link:hover {
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
    }

    .app-banner-hotspots__link--app-store {
      left: 29%;
      top: 68%;
      width: 17.5%;
      height: 11.5%;
    }

    .app-banner-hotspots__link--google-play {
      top: 82%;
      left: 29%;
      width: 17.5%;
      height: 11.5%;
    }

    @media (max-width: 767px) {
      .app-banner-hotspots__link--app-store {
        height: 8.5%;
        left: 45%;
        top: 43.5%;
        width: 48%;
      }

      .app-banner-hotspots__link--google-play {
        top: 53%;
        left: 44%;
        width: 48%;
        height: 8.5%;
      }
    }

    #events {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: flex-start;
      align-items: center;
    }

    #events a {
      display: inline-flex;
      width: fit-content;
      text-decoration: none;
    }

    #events .event-thumb {
      width: 150px;
      height: 150px;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease-in-out;
    }

    #events .event-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    #events a:hover .event-thumb {
      transform: scale(1.05);
    }

    .event-container {
      max-width: 65%;
    }

    @media (min-width: 1200px) {
      .promo-section .promo-img {
        object-fit: contain;
      }
    }

    /* Banner productores - new styles */
    .banner-secondary {
      background-color: rgba(20, 3, 45, 1);
      padding: 2.5rem 0;
    }

    .banner-productoras {
      max-width: 100%;
      margin: 0 auto;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: visible;
      padding: 0px;
    }

    .logo-wrapper {
      background: rgb(228, 40, 84);
      border-radius: 0 32px 32px 0;
      padding: 12px 12px 12px 88px;
    }

    .main-logo {
      display: block;
      max-width: 300px;
      width: 100%;
      height: auto;
    }

    .banner-productoras .productora-img {
      display: inline-block;
      max-width: 140px;
      width: 100%;
      height: auto;
      margin: .25rem .5rem;
      opacity: .95;
    }

    @media (max-width: 575px) {
      .all-events {
      max-width: 95%;
    }

      .banner-productoras .productora-img {
        max-width: 90px;
        margin: .25rem .35rem;
      }


      .event-container {
        max-width: 95%;
      }

      .promo-section .promo-img {
        height: auto;
      }

      .main-logo {
        max-width: 300px;
      }
    }

    /* Events gallery (single-row) */
    #events {
      display: flex;
      flex-direction: row;
      gap: 12px;
      overflow-x: auto;
      /* allow horizontal scroll on smaller screens */
      -webkit-overflow-scrolling: touch;
      align-items: center;
      padding: 1rem 0;
    }

    #events .event-thumb {
      flex: 0 0 auto;
      /* keep fixed size, no grow */
      width: 150px;
      height: 150px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: .25rem;
      overflow: hidden;
    }

    #events .event-thumb img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      display: block;
    }

    /* Events of the month section */
    .events-month {
      background-image: url('../img/Bg-2.webp');
      background-color: rgba(20, 3, 45, 1);
      background-size: contain;
      background-position: center;
      padding: 2.5rem 0;
      color: #fff;
    }

    .events-month .month-panel {
      background: rgba(255, 255, 255, 0.85);
      padding: 1rem;
      border-radius: .5rem;
      color: #111;
    }

    .all-events {
      max-width: 85%;
    }

    .events-month .tag-title,
    .all-events .tag-title {
      display: inline-block;
      background: rgb(228, 40, 84);
      color: #fff;
      padding: .35rem .6rem;
      border-radius: 0 0 4px 4px;
      font-weight: 600;
      margin-bottom: .75rem;
      position: relative;
    }

    .events-month .tag-title {
      top: -40px;
    }


    .events-month .month-list {
      margin-top: .75rem;
    }

    .events-month .month-item {
      background: rgba(255, 255, 255, 0.95);
      padding: .75rem;
      border-radius: .4rem;
      color: #111;
    }

    .month-item.card {
      border-radius: 12px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    /* Ensure month-item cards layout as horizontal rows: image left, content right */
    .month-item.card {
      display: flex !important;
      flex-direction: row !important;
      align-items: stretch !important;
      gap: 12px;
    }

    .month-item .card-image {
      flex: 0 0 150px;
      /* fixed width for image column */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .month-item .card-image img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
    }

    .month-item .card-right {
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      min-width: 0;
      /* allow text truncation if needed */
    }

    .month-item .card-content {
      /* keep content at the top */
      min-width: 0;
      /* prevent flex overflow and satisfy linter (non-empty rule) */
    }

    .month-item .card-footer {
      /* footer sticks to bottom via margin-top:auto on spacer or by pushing using flex */
      margin-top: auto;
      display: flex;
      align-items: center;
    }

    .month-item .btn-bottom {
      margin-left: 8px;
      /* ensure button sits at the far right */
      align-self: center;
    }

    .event-thumb-month {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
    }

    .swiper-button-next,
    .swiper-button-prev {
      width: 16px;
      height: 16px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 16px;
      color: #fff;
    }


    /* Evita que Bootstrap cierre automáticamente el dropdown al hacer hover */

    .mukta-extralight {
      font-family: "Mukta", sans-serif;
      font-weight: 200;
      font-style: normal;
    }

    .mukta-light {
      font-family: "Mukta", sans-serif;
      font-weight: 300;
      font-style: normal;
    }

    .mukta-regular {
      font-family: "Mukta", sans-serif;
      font-weight: 400;
      font-style: normal;
    }

    .mukta-medium {
      font-family: "Mukta", sans-serif;
      font-weight: 500;
      font-style: normal;
    }

    .mukta-semibold {
      font-family: "Mukta", sans-serif;
      font-weight: 600;
      font-style: normal;
    }

    .mukta-bold {
      font-family: "Mukta", sans-serif;
      font-weight: 700;
      font-style: normal;
    }

    .mukta-extrabold {
      font-family: "Mukta", sans-serif;
      font-weight: 800;
      font-style: normal;
    }

    body {
      font-family: "Mukta", sans-serif !important;
    }

    :root,
    [data-bs-theme=dark] {
      --bs-nav-link-font-weight: 300;
      --bs-navbar-color: rgba(255, 255, 255, 1);
      --bs-nav-link-color: rgba(255, 255, 255, 1);
      --bs-dark-rgb: 0, 0, 0;
      --bs-card-border-radius: 1rem;
      --bs-card-border-width: 0;
    }

    .card {
      --bs-card-spacer-y: 1rem;
      --bs-card-spacer-x: 1rem;
      --bs-card-title-spacer-y: 0.5rem;
      --bs-card-border-width: 0;
      --bs-card-border-color: var(--bs-border-color-translucent);
      --bs-card-border-radius: 1rem;
      --bs-card-box-shadow: ;
      --bs-card-inner-border-radius: 1rem;
      --bs-card-cap-padding-y: 0.5rem;
      --bs-card-cap-padding-x: 1rem;
      --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
      --bs-card-cap-color: ;
      --bs-card-height: ;
      --bs-card-color: #262626;
      --bs-card-bg: #fff;
      --bs-card-img-overlay-padding: 1rem;
      --bs-card-group-margin: 0.75rem;
      position: relative;
      display: flex;
      flex-direction: column;
      min-width: 0;
      height: var(--bs-card-height);
      word-wrap: break-word;
      background-color: var(--bs-card-bg);
      background-clip: border-box;
      border: var(--bs-card-border-width) solid var(--bs-card-border-color);
      border-radius: var(--bs-card-border-radius);
    }

    .navbar-nav {
      --bs-nav-link-font-weight: var(--bs-nav-link-font-weight);
      --bs-nav-link-color: rgba(255, 255, 255, 1);
      --bs-navbar-nav-link-padding-x: 1.0rem;
      --bs-navbar-nav-link-padding-y: 1.0rem;
    }

    .navbar-nav .nav-link {
      text-decoration: none;
      /* sin subrayado */
      transition: color 0.4s ease;
      /* transición suave */
      padding-left: 20px;
    }

    .navbar-nav .nav-link:hover {
      color: var(--bs-tertiary) !important;
      /* usa el color primary de Bootstrap */
      text-decoration: none !important;
      /* asegura que no aparezca línea */
    }

    .btn {
      transition: all 0.4s ease;
      /* transición suave */
    }

    .btn-primary:hover {
      background-color: var(--bs-secondary) !important;
      border-color: var(--bs-secondary) !important;
    }


    .btn-secondary:hover {
      background-color: var(--bs-primary) !important;
      border-color: var(--bs-primary) !important;
    }


    header.scrolled {
      background-color: rgba(var(--bs-tertiary-rgb), var(--bs-bg-opacity)) !important;
    }

    .fw-extrabold {
      font-weight: 900;
    }

    .homeSlider {
      /* width: 100%;
  height: 70vh;
  padding-top: 77px; */
      width: 100%;
      /* max-height: 80vh; */
      padding-top: 90px;
      /* Altura máxima opcional */
      overflow: hidden;
      position: relative;
    }

    .homeSlider .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .homeSlider .swiper-slide picture {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }



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

    .slide-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 5rem;
      color: #fff;
      background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    }


    .slide-buttons .btn {
      margin-right: 1rem;
    }

    .dropdown-hover:hover>.dropdown-menu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu {
      display: block;
      opacity: 0;
      visibility: hidden;
      transform: translateY(40px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      margin-top: 0;
      /* Elimina espacio extra de Bootstrap */
      pointer-events: none;
      /* Previene errores al hacer hover rápido */
    }

    .dropdown-hover:hover .dropdown-menu {
      pointer-events: auto;
    }

    .banner-section .banner-video video {
      transform: scale(2.5);
    }

    section,
    footer {
      overflow: hidden;
    }



    .max-un {
      max-width: 150px;
    }

    .carousel-infinity .swiper-slide {
      width: -moz-min-content;
      width: min-content;
    }

    .vh-75 {
      height: 75vh;
    }

    /* Simple carousel styles for components/carousel-slider.php */
    .slider-container,
    .slider-container-mobile {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 1rem 0;
    }

    .slider-container .slides-viewport,
    .slider-container-mobile .slides-viewport {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }

    .slider-container .slides,
    .slider-container-mobile .slides {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 6px 12px;
    }

    .slider-container .slide,
    .slider-container-mobile .slide {
      flex: 0 0 auto;
      width: 200px;
      height: 200px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      background: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .slider-container .slide img,
    .slider-container-mobile .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Prev/next buttons styling — keep them small and overlayed */
    .slider-container .carousel-control-prev,
    .slider-container .carousel-control-next,
    .slider-container-mobile .carousel-control-prev,
    .slider-container-mobile .carousel-control-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      background: rgba(0, 0, 0, 0.35);
      border: none;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
    }

    .slider-container .carousel-control-prev {
      left: 8px;
    }

    .slider-container .carousel-control-next {
      right: 8px;
    }

    .slider-container-mobile .carousel-control-prev {
      left: 8px;
    }

    .slider-container-mobile .carousel-control-next {
      right: 8px;
    }

    /* Marquee (single-row continuous list) */
    .marquee {
      width: 100%;
      overflow: hidden;
      position: relative;
      display: block;
      padding: 0.5rem 0;
    }

    .marquee .marquee-track {
      display: inline-flex;
      gap: 12px;
      align-items: center;
      padding: 6px 12px;
      flex-wrap: nowrap;
      width: max-content;
      transform: translateX(0);
      will-change: transform;
    }

    .marquee .marquee-item {
      flex: 0 0 auto;
      width: 200px;
      height: 200px;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .marquee .marquee-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: grayscale(100%);
      transition: filter 0.4s ease;
    }

    .marquee .marquee-item.is-active img {
      filter: none;
    }

    .marquee .marquee-item a {
      display: block;
      width: 100%;
      height: 100%;
    }

    .marquee .marquee-item {
      cursor: pointer;
    }

    /* New events-slider styles (replacement component) */
    .events-marquee {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 0.5rem 0;
    }

    .events-marquee .events-track {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 6px 12px;
      overflow-x: hidden;
      white-space: nowrap;
    }

    .events-marquee .events-item {
      display: inline-flex;
      flex: 0 0 auto;
      width: 200px;
      height: 200px;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
      align-items: center;
      justify-content: center;
    }

    .events-marquee .events-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    a {
      text-decoration: none;
    }

    a:hover {
      text-decoration: none !important;
    }


    .card.text-decoration-none a:hover {
      text-decoration: none !important;
    }

    .card.pointer-cursor:hover {
      cursor: pointer;
    }


    /*
.card:hover img.zoom {
  transform: scale(1.1, 1.1) !important;
}
*/

    .card .thumb-info {
      border-radius: var(--bs-card-border-radius) var(--bs-card-border-radius) 0 0;
      max-height: 310px;

    }

    .card .thumb-info.image-desktop {
      background: url($imagenotfound) !important;
      aspect-ratio: 1 / 1;
    }

    .card .thumb-info.image-mobile {
      background: url($imagenotfound) !important;
      background-size: auto 140px !important;
      min-height: 109px !important;
    }

    .card .thumb-info.image-desktop img,
    .card .thumb-info.image-mobile img {
      color: #272933 !important;
    }

    .card .card-location {
      height: 20px !important;
      display: block;
      overflow: hidden;
    }

    .card .card-title {
      /*  min-height: 70px; */
      font-weight: normal;
      height: 70px;
      max-height: 70px;
      overflow: hidden;
      font-size: 18px !important;
      font-weight: 600 !important;
      line-height: normal;
      padding-top: 7px;
      letter-spacing: 0 !important;
    }

    .card .card-body small {
      font-size: 12px !important;
      font-weight: 700 !important;
    }



    #firstListEvent .col,
    #secondListEvent .col,
    #listloadresult .col {
      margin-top: .9rem;
    }

    .card-hr .card-title {
      font-size: 15px !important;
      min-height: auto;
      font-weight: 600;
    }

    .card.card-hr {
      border-radius: .475rem !important;
    }

    .card.card-hr .thumb-info {
      border-radius: .475rem 0 0 .475rem !important;
    }

    .card.card-hr .card-body {
      padding: 6px 10px 0 10px !important;
    }

    .card.card-hr .card-calendar {
      position: absolute;
      bottom: 10px;
    }

    .card.card-hr .card-calendar .fs-4 {
      font-size: 16px !important;
    }

    .card.card-hr .card-calendar span.event-micro {
      font-size: 11px !important;
    }

    .card.card-hr .card-body small {
      font-size: 11px !important;
    }

    .card.card-hr .thumb-info {
      max-height: 115px !important;
      min-height: 114px !important;
      max-width: 115px !important;
      min-width: 114px !important;
    }

    .card.card-hr .thumb-info img {
      min-width: 110px;
    }

    .card-calendar.hstack .event-date,
    .card-calendar.hstack .event-hours {
      font-size: 16px !important;
    }

    .card-calendar.hstack .event-date .fs-2,
    .card-calendar.hstack .event-hours .fs-2 {
      font-size: 39px !important;
    }


    .card-hr .card-calendar.hstack .event-date .event-micro,
    .card-hr .card-calendar.hstack .event-hours .event-micro {
      font-size: 12px !important;
      padding-top: 2px !important;
    }

    .card-hr .card-calendar.hstack .event-date .fs-3,
    .card-hr .card-calendar.hstack .event-hours .fs-3 {
      font-size: 27px !important;

    }

    .card.card-hr .card-title {
      padding-top: 1px !important;
    }


    @media (max-width: 768px) {

      .banner-fecha img.desktop {
        display: none;
      }

      .banner-fecha img.mobile {
        display: block;
        max-width: 21rem;
      }

      .banner-fecha .banner-texto h2 {
        font-size: 1.8rem;
      }

      .banner-fecha .banner-texto p {
        font-size: 1rem;
      }
    }

    .swiper,
    .swiper-slide,
    .swiper-slide img,
    .banner-fecha img,
    .card img {
      max-width: 100%;
    }

    /* Featured event thumbs */
    #featured-thumbs {
      gap: 12px;
      align-items: center;
      justify-content: center;
      display: flex;
      flex-wrap: nowrap;
      overflow: hidden;
      padding: 1rem 0;
    }

    #featured-thumbs .featured-thumb img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 767.98px) {
      #featured-thumbs {
        gap: 10px;
      }

      #featured-thumbs .featured-thumb img {
        width: 150px;
        height: 150px;
      }
    }

    .row {
      margin-left: 0;
      margin-right: 0;
    }

    /* Responsive backgrounds for mobile */
    @media (max-width: 767px) {
      .promo-section {
        background-image: url('../img/mobile/bg1_mob.webp');
      }

      .events-month {
        background-image: url('../img/mobile/bg2_mob.webp');
      }

      .app-section {
        background-image: url('../img/mobile/bg3_mob.webp');
      }

      .app-section .promo-img {
        max-height: none;
      }
    }

    /* Banner socials - center icons and texts on mobile while keeping desktop layout intact */
    @media (max-width: 767.98px) {
      .banner-socials .position-absolute .container .row {
        justify-content: center;
        text-align: center;
      }

      .banner-socials .d-flex.gap-3 {
        justify-content: center !important;
      }

      .banner-socials .col-12.col-md-4.text-md-end {
        text-align: center !important;
        margin-top: .75rem;
      }

      .banner-socials .d-flex.gap-3 a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
      }

      .banner-socials .d-flex.gap-3 img {
        height: 60px;
        width: auto;
        margin: 0;
        display: inline-block;
      }
    }