/* SecciÃ³n exterior â€” mobile first */
.rb-carousel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 20px 16px 40px;
  background: #fff;
}
 
/* TÃ­tulo */
.rb-carousel-section__title {
  color: #2c2c2c;
  text-align: center;
  margin: 0;
  padding: 0;
}
 
/* Contenedor raÃ­z */
.rb-carousel {
  position: relative;
  width: 100%;
  max-width: 328px;
}
 
/* Recorta slides fuera de vista; el JS asigna la altura */
.rb-carousel__viewport {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
 
/* Fila de slides desplazada por JS con translateX */
.rb-carousel__track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
 
/* Cada slide ocupa el 100% del viewport â€” mÃ³vil: columna */
.rb-carousel__slide {
  min-width: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
 
/* Wrapper imagen */
.rb-carousel__image-wrapper {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
}
 
/* Picture ocupa el wrapper */
.rb-carousel__picture {
  display: block;
  width: 100%;
  height: 100%;
}
 
/* Imagen */
.rb-carousel__image {
  display: block;
  width: 100%;
  min-width: 328px;
  height: 100%;
  object-fit: fill;
}
 
/* Bloque de texto */
.rb-carousel__content {
  width: 100%;
  min-width: 0;
}
 
/* TÃ­tulo del slide */
.rb-carousel__content h3 {
  margin: 0 0 8px;
  padding: 0;
}
 
/* PÃ¡rrafo */
.rb-carousel__content p {
  color: #2c2c2c;
  margin: 0 0 12px;
}
 
.rb-carousel__content p:last-child {
  margin-bottom: 0;
}
 
/* Lista */
.rb-carousel__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
 
/* Ãtem */
.rb-carousel__item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.4;
}
 
.rb-carousel__item:last-child {
  margin-bottom: 0;
}
 
/* ViÃ±eta circular verde */
.rb-carousel__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #00a443;
  border-radius: 50%;
}
 
/* Controles: flechas + dots */
.rb-carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
 
/* BotÃ³n flecha */
.rb-carousel__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--Color-Button-Border-Disabled, #00a443);
  background: var(--Color-Surface-General-1, #fff);
  cursor: pointer;
}

.rb-carousel__arrow:focus,
.rb-carousel__arrow:active,
.rb-carousel__arrow:focus-visible {
  outline: none;
  border-color: #00a443;
  box-shadow: none;
}
 
/* Icono flecha */
.rb-carousel__arrow-icon {
  display: block;
  width: 24px;
  height: 24px;
}
 
/* Pill de dots */
.rb-carousel__dots {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 100px;
  border: 1px solid #c8d9d0;
  background: #fff;
  height: 40px;
}
 
/* Fila de dots */
.rb-carousel__dots-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
 
/* Dot inactivo */
.rb-carousel__dot {
  width: 24px;
  height: 24px;
  padding: 0;
  flex-shrink: 0;
  border: none;
  background-color: transparent;
  background-image: url("/documents/20122/21755674/Oval.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
  cursor: pointer;
  box-sizing: border-box;
}
 
.rb-carousel__dot svg {
  display: none;
}
 
/* Dot activo */
.rb-carousel__dot--active {
  background-image: url("/documents/20122/21755674/VerdeOval.svg");
}
 
 
 
/* â‰¥ 576px */
@media (min-width: 576px) {
  .rb-carousel-section {
    padding: 20px 42px 40px;
  }
 
  .rb-carousel {
    max-width: 492px;
  }

  .rb-carousel__image {
    object-fit: fill;
    border-radius: 16px;
    min-width: 492px;
    width: 100%;
  }

   .rb-carousel__image-wrapper{
    border-radius: 16px;
  }
}
 
/* â‰¥ 768px */
@media (min-width: 768px) {
  .rb-carousel-section {
    padding: 20px 48px 40px;
  }
 
  .rb-carousel {
    max-width: 672px;
  }

  .rb-carousel__image {
    object-fit: fill;
    border-radius: 16px;
    min-width: 672px;
    width: 100%;
  }

   .rb-carousel__image-wrapper{
    border-radius: 16px;
  }
  
}
 
@media (min-width: 992px) {
  .rb-carousel-section {
    padding: 64px 82px 40px;
  }
 
  .rb-carousel {
    max-width: 828px;
  }
 
  .rb-carousel__slide {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  
 
  .rb-carousel__image-wrapper {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
    height: 300px;
    border-radius: 16px;
  }
 
  .rb-carousel__image {
    object-fit: fill;
    min-width: 402px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    object-position: center;
  }

  .rb-carousel__image-wrapper{
    border-radius: 16px;
  }
 
  /* Texto ocupa la otra mitad */
  .rb-carousel__content {
    flex: 1;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 
  .rb-carousel__content h3 {
    text-align: left;
  }
}
 
/* â‰¥ 1200px */
@media (min-width: 1200px) {
  .rb-carousel-section {
    padding: 64px 102px 40px;
  }
 
  .rb-carousel {
    max-width: 996px;
  }

  .rb-carousel__image {
    object-fit: fill;
    border-radius: 16px;
    width: 486px;
    width: 100%
  }

   .rb-carousel__image-wrapper{
    flex: 0 0 calc(50% - 12px);   
    width: calc(50% - 12px);   
     height: 300px;
  }
}
 
/* â‰¥ 1920px */
@media (min-width: 1920px) {
  .rb-carousel-section {
    padding: 64px 324px 40px;
  }

  .rb-carousel__image {
    object-fit: fill;
    border-radius: 16px;
    min-width: 624px;
    width: 100%;
  }
 
  .rb-carousel {
    max-width: 1272px;
  }

  .rb-carousel__image-wrapper{
    border-radius: 16px;
  }
}