#br-promos-.br-promos{
  --green: #124734;
  --text: #1E2C28;
  --muted: #5B5B5B;
  --dot-on: #00B451;
  --dot-off: #E5F7EE;

  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  width: 100%;
  background: var(--br-promos-bg, #fff);
}

#br-promos- .br-promos__container{
  max-width: 1279px;              
  margin: 0 auto;
  padding: 54px 16px 38px;
  box-sizing: border-box;
}

/* Header */
#br-promos- .br-promos__header{
  display: grid;
  place-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

#br-promos- .br-promos__title{
  font-family: "Inter", sans-serif;!important
  width: 100%;
  max-width: 1029px;
  margin: 0;
  color: var(--br-promos-title, var(--green));
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
}

#br-promos- .br-promos__desc{
 font-family: "Inter", sans-serif;!important
  width: 100%;
  max-width: 1029px;
  color: var(--br-promos-desc, var(--text));
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

#br-promos- .br-promos__desc p{
  font-family: "Inter", sans-serif;!important
  margin: 0;
  line-height: 1.2;
}

/* Carousel wrapper (cards box) */
#br-promos- .br-promos__carousel{
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 30px; 
  margin: 0 auto;
  max-width: 100%;
}

/* Flechas */
#br-promos- .br-promos__arrow{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18,71,52,.18);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: transform .15s ease, opacity .15s ease;
}

#br-promos- .br-promos__arrow:hover{
  transform: translateY(-1px);
  box-shadow: none;
}

#br-promos- .br-promos__arrow:active{
  transform: translateY(0);
}

#br-promos- .br-promos__arrow[disabled]{
  opacity: .35;
  cursor: not-allowed;
}

#br-promos- .br-promos__arrowIcon{
  display: grid;
  place-items: center;
}

/* Viewport / Track */
#br-promos- .br-promos__viewport{
  overflow-x: hidden;
  overflow-y: visible;
  width: var(--vp-w, 786px);
  margin: 0 auto;
  padding-bottom: 18px;
}

#br-promos- .br-promos__track{
  display: flex;
  gap: 0px;
  will-change: transform;
  transition: transform .35s ease;
}

#br-promos- .br-promos__page{
  flex: 0 0 var(--page-w, 786px);  
  display: flex;
  justify-content: center;         
  align-items: stretch;
  gap: 30px;
}

/* Cards */
#br-promos- .br-promos__card{
  width: 242px;
  height: ;
  flex: 0 0 242px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  display: flex;
  flex-direction: column;
}

#br-promos- .br-promos__media{
  width: 242px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: #000; /* para que el video no “parpadee” blanco */
}

/* Imagen llena el espacio */
#br-promos- .br-promos__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video: forzar que el embed/iframe se comporte como cover */
#br-promos- .br-promos__video,
#br-promos- .br-promos__video > *{
  width: 100%;
  height: 100%;
}

#br-promos- .br-promos__video iframe,
#br-promos- .br-promos__video video{
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}
#br-promos- .br-promos__card.is-link{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
#br-promos- .br-promos__card.is-link:hover{
  text-decoration: none;
}
#br-promos- .br-promos__card.is-link:focus-visible{
  outline: 2px solid #006C31;
  outline-offset: 3px;
}

/* Contenido card */
#br-promos- .br-promos__cardTitle{
   font-family: "Inter", sans-serif;!important
  width: 196px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

#br-promos- .br-promos__cardBody{
  width: 196px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;              
  padding-top: 0;
}

#br-promos- .br-promos__cardText{
 font-family: "Inter", sans-serif;!important
  width: 196px;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

#br-promos- .br-promos__cardText p{
  font-family: "Inter", sans-serif;!important
  margin: 0;
  line-height: 1.2;
}

/* Dots */
#br-promos- .br-promos__dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

#br-promos- .br-promos__dot{
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--dot-off);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transition: width .2s ease, background-color .2s ease, opacity .2s ease;
}

#br-promos- .br-promos__dot.is-active{
  width: 18px;
  height: 10px;
  background: var(--dot-on);
}

/* Botón */
#br-promos- .br-promos__cta{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

#br-promos- .br-promos__btn{
  width: 288px;
  height: 48px;
  border-radius: 999px;
  background: var(--br-promos-btn, var(--green));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#br-promos- .br-promos__btnText{
  color: var(--br-promos-btnText, #fff);
   font-family: "Inter", sans-serif;!important
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

/* Responsive */ 
@media (max-width: 767px) {
  #br-promos- .br-promos__container{
    padding: 54px 16px 38px;
  }

  /* Header */
  #br-promos- .br-promos__header{
    gap: 14px;
    margin-bottom: 26px;
  }

  #br-promos- .br-promos__title{
     font-family: "Inter", sans-serif;!important
    width: 344px;
    max-width: 100%;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
  }

  #br-promos- .br-promos__desc{
    width: 344px;
    max-width: 100%;
    margin: 0 auto;
     font-family: "Inter", sans-serif;!important
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
  }

  #br-promos- .br-promos__desc p{
    margin: 0;
  }

  /* Flechas fuera en móvil */
  #br-promos- .br-promos__arrow{
    display: none !important;
  }

  #br-promos- .br-promos__carousel{
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Viewport: swipe vertical de página con carrusel horizontal */
  #br-promos- .br-promos__viewport{
    touch-action: pan-y;
  }

  /* Card size móvil */
  #br-promos- .br-promos__card{
    width: 242px;
    height: 432px;
    flex: 0 0 242px;
    border-radius: 10px;
  }

  /* Imagen */
  #br-promos- .br-promos__imgWrap{
    width: 242px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
  }

  #br-promos- .br-promos__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Título card */
  #br-promos- .br-promos__cardTitle{
    width: 196px;
    min-height: 46px;
    margin: 22px auto 0;
     font-family: "Inter", sans-serif;!important
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
  }

  /* Body card con gap solicitado */
  #br-promos- .br-promos__cardBody{
    width: 150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 0;
  }

  /* Descripción card */
  #br-promos- .br-promos__cardText{
    width: 196px;
    min-height: 84px;
    margin: 0 auto;
     font-family: "Inter", sans-serif;!important
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
  }

  #br-promos- .br-promos__cardText p{
    margin: 0;
  }

  /* Botón */
  #br-promos- .br-promos__btn{
    width: 288px;
    height: 48px;
    border-radius: 999px;
    padding: 12px 20px;
    gap: 8px;
  }

  /* Texto botón */
  #br-promos- .br-promos__btnText{
    width: 240px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
     font-family: "Inter", sans-serif;!important
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    vertical-align: middle;
    text-align: center;
  }

  /* Dots */
  #br-promos- .br-promos__dots{
    margin-top: 18px;
  }
}
@media (max-width: 1024px) {
  #br-promos- .br-promos__arrow { display: none !important; }
  #br-promos- .br-promos__carousel { grid-template-columns: 1fr; gap: 0; }
  #br-promos- .br-promos__viewport {
    touch-action: pan-y;
  }
}
@media (min-width: 1025px){
  #br-promos- .br-promos__carousel{
    grid-template-columns: 40px auto 40px;
    gap: 30px;
    width: fit-content;
    max-width: none;
    margin: 0 auto;
  }

  #br-promos- .br-promos__viewport{
    margin: 0;
  }

  #br-promos- .br-promos__arrow{
    box-shadow: none !important;
  }

  #br-promos- .br-promos__arrow:hover{
    box-shadow: none !important;
  }
  #br-promos- .br-promos__arrow{
    border: 1px solid #124734 !important;
  }
  #br-promos- .br-promos__arrow,
  #br-promos- .br-promos__arrow:hover,
  #br-promos- .br-promos__arrow:focus-visible{
    border: 1px solid #124734 !important;
  }
}
/* =========================
   1) Media: menos alta cuando es video
   ========================= */
#br-promos- .br-promos__card.has-video .br-promos__media{
  height: 160px; /* antes 200px */
}

/* Capa clickeable de video */
#br-promos- .br-promos__videoThumb{
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#br-promos- .br-promos__videoThumb::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

#br-promos- .br-promos__videoThumbBtn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.85);
  display: grid;
  place-items: center;
}

#br-promos- .br-promos__videoThumbBtn svg{
  width: 18px;
  height: 18px;
}

/* =========================
   2) Card: si no hay contenido, encoger body
   ========================= */
#br-promos- .br-promos__card.is-no-text .br-promos__cardBody{
  padding-bottom: 14px;
  gap: 10px;
}

#br-promos- .br-promos__card.is-no-text .br-promos__cardText{
  display: none;
}

/* =========================
   3) Modal fullscreen
   ========================= */
.br-promos__modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.br-promos__modal.is-open{ display: flex; }

.br-promos__modalBox{
  width: min(980px, 100%);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.br-promos__modalClose{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.9);
  display: grid;
  place-items: center;
  z-index: 2;
}

.br-promos__modalFrame{
  position: absolute;
  inset: 0;
}

.br-promos__modalFrame iframe,
.br-promos__modalFrame video{
  width: 100%;
  height: 100%;
  display: block;
}
#br-promos- .br-promos__videoEmbed{
  display: none;
}
#br-promos-.br-promos.is-all-no-text .br-promos__card{
  height: 332px;
}
#br-promos-.br-promos.is-all-no-text .br-promos__cardBody{
  gap: 16px;
}