/* carousellEsferas — selectores propios, no interfiere con carousellTutete */

.container-esferas-nuevo.container-carousell-esferas {
  font-family: Lato, sans-serif;
  max-width: none;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #3f3e3f;
  padding: 0 15px;
  line-height: 1.5;
  box-sizing: border-box;
  position: relative;
  height: auto !important;
}

.carousellEsferas {
  position: relative;
  width: 100%;
  height: auto !important;
  overflow: hidden;
  box-sizing: border-box;
}

.carousellEsferas .esferasTitulo {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.carousellEsferas .esferasSubtitulo {
  text-transform: none;
  font-size: 32px;
  font-family: Lato, sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (min-width: 767px) {
  .carousellEsferas .esferasTitulo {
    font-size: 18px;
  }
  .carousellEsferas .esferasSubtitulo {
    margin-bottom: 50px;
  }
}

.carousellEsferas .arrowCarousellEsferas {
  position: absolute;
  z-index: 10;
  width: 13px !important;
  height: 13px;
  display: none;
  cursor: pointer;
  border-right: 2px solid #dc8699;
  border-top: 2px solid #dc8699;
  box-sizing: border-box;
}

.carousellEsferas .arrowCarousellEsferas svg {
  display: none;
}

.carousellEsferas .arrowCarousellEsferas-right {
  right: 4px;
  transform: rotate(45deg);
}

.carousellEsferas .arrowCarousellEsferas-left {
  left: 4px;
  transform: rotate(-135deg);
}

@media only screen and (min-width: 767px) {
  .carousellEsferas .arrowCarousellEsferas {
    width: 18px !important;
    height: 18px;
  }

  .carousellEsferas .arrowCarousellEsferas-right {
    right: 8px;
  }

  .carousellEsferas .arrowCarousellEsferas-left {
    left: 8px;
  }
}

.carousellEsferas .carousellWrapperEsferas {
  overflow: hidden;
  position: relative;
  margin: 0 25px;
  height: max-content;
}

@media only screen and (min-width: 767px) {
  .carousellEsferas .carousellWrapperEsferas {
    margin: 0 40px;
  }
}

.carousellEsferas .productosCarousellEsferas {
  display: flex;
  position: relative;
  left: 0;
  transition: left 0.45s ease;
  will-change: left;
}

.carousellEsferas .productosCarousellEsferas.sin-transicion {
  transition: none;
}

.carousellEsferas .itemEsferas {
  flex: 0 0 100px;
  box-sizing: border-box;
}

.carousellEsferas .itemContentEsferas {
  text-align: center;
  padding-bottom: 6px;
}

.carousellEsferas .itemContentEsferas picture {
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousellEsferas .itemContentEsferas img {
  height: 100%;
  width: 100%;
  background: #f7f7f7;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
}

.carousellEsferas .productoEsferas {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  color: #3f3e3f;
}

@media only screen and (min-width: 992px) {
  .carousellEsferas .productoEsferas {
    margin-top: 20px;
  }
}

/* Desplegable bajo el carrusel */
.carousellEsferas .desplegableEsferas {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: height 0.35s ease, max-height 0.35s ease, margin-top 0.35s ease, opacity 0.2s ease;
}

.carousellEsferas .desplegableEsferas.is-open {
  margin-top: 20px;
  opacity: 1;
  visibility: visible;
}

.carousellEsferas .desplegableEsferas-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.carousellEsferas .desplegableEsferas-slot {
  width: 100%;
  min-height: 160px;
  height: 160px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-sizing: border-box;
  padding: 20px;
}

.carousellEsferas .desplegableEsferas-slot--conContenido {
  display: block;
  min-height: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
}

.carousellEsferas .desplegableEsferas-slot--conContenido > * {
  width: 100%;
  box-sizing: border-box;
}

.carousellEsferas .desplegableEsferas-cta {
  width: 100%;
  text-align: center;
  padding: 14px 10px 4px;
  box-sizing: border-box;
  height: auto;
}

.carousellEsferas .desplegableEsferas-ctaLink {
  color: #dc8699;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  line-height: 1.4;
}

@media only screen and (min-width: 767px) {
  .carousellEsferas .desplegableEsferas-ctaLink {
    font-size: 16px;
  }
}
