.contenedor {
  background-color: #e1efff;
  text-align: center;
  padding: 30px 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1160px;
  margin: 20px auto;
}
.contenedor h3 {
  font-size: 1.4rem;
  line-height: normal;
  font-weight: 100;
}
.opciones {
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.opciones button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  background: white;
  border: none;
  padding: 18px 20px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  width: 90%;
  min-width: 210px;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.opciones button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.opciones button img {
  height: auto;
}
/* Flecha */
.opciones button .icono-flecha {
  margin-left: auto;
  /* Mueve la flecha a la derecha */
}
.btn-popup--icon {
  font-size: 28px;
}

.btn-popup--arrow {
  margin-left: auto;
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Fondo oscuro para efecto modal */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup.active {
  display: flex;
  /* Mostrar el popup cuando esté activo */
}

.popup-content-pos {
  background: #f5f5f5;
  padding: 2.5rem;
  border-radius: 15px;
  max-width: 90%;
  text-align: center;
  width: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.popup-content-pos_benef {
  padding: 2rem 3rem;
}
.popup-content-pos,
.benefits-container {
  min-height: auto;
}
.close {
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  top: 0px;
  right: 15px;
  color: #86888c;
}
/* Mejora en el diseño de los beneficios */
.benefits-container {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  overflow-y: auto;
}
.container-benefits__benefits .benefit-item-pos i {
  font-size: 35px;
}

.benefit-item-pos {
  background: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  width: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 150px;
}
.benefit-item-pos .icn-mov-arena-vertical:before {
  font-size: 40px;
}
.benefit-item-pos:hover {
  transform: scale(1.03);
  /* Hace crecer la caja */
}
.img-boxx {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  min-height: 40px;
  max-height: 42px;
}
/* Colores de títulos */
.benefit-title {
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 5px;
  font-size: 9px;
  text-align: left;
  width: max-content;
  background-color: #e1efff !important;
  color: #066fcb;
  letter-spacing: 2px;
}
.benefit-description {
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  margin-top: 10px;
  color: #0a2739;
}
.titlepupop {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.img-size{
  width: 55px;
}
@media (min-width: 767px) {
  .opciones {
    flex-direction: row;
    width: max-content;
  }
  .contenedor {
    flex-direction: row;
    padding: 24px 40px;
    justify-content: space-around;
  }
  .contenedor h3{
    text-align: left;
  }
  .container-benefits__benefits {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    justify-content: center;
  }
  .container-benefits__benefits .slick-slide {
    margin: 0 10px;
    padding: 10px 0 10px;
  }
  
  .benefits-container {
    display: flex;
    overflow: hidden;
  }
}
