.hero-qcore{
  background:
    radial-gradient(1200px 600px at 10% 20%, rgba(11,102,195,0.14), transparent),
    radial-gradient(900px 400px at 90% 10%, rgba(247,167,35,0.14), transparent);
}

/* Carrusel */
#carouselHero .carousel-item img{
  width: 100%;
  height: clamp(260px, 40vw, 420px);
  object-fit: cover;
}

#carouselHero .carousel-caption{
  background: rgba(0, 0, 0, 0.58);
  border-radius: .75rem;
  padding: .75rem 1rem;
}

#carouselHero .carousel-control-prev-icon,
#carouselHero .carousel-control-next-icon{
  filter: invert(1) grayscale(100%);
}

#carouselHero .carousel-indicators [data-bs-target]{
  background-color: #0B66C3;
  opacity: .85;
}

#carouselHero .carousel-indicators .active{
  background-color: #F7A723;
  opacity: 1;
}

/* Imágenes encima de cada beneficio */
.benefit-img{
  width: 100%;
  height: clamp(160px, 18vw, 220px);
  object-fit: cover;
}

/* Tarjetas de beneficios */
.benefit-col{
  display: flex;
  flex-direction: column;
}

.benefit-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.feature-btn{
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-btn:hover{
  background-color: rgba(11, 102, 195, 0.03);
}

.feature-btn h3{
  color: #000;
}

.benefit-summary{
  flex-grow: 1;
  line-height: 1.5;
}

.benefit-cta{
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: fit-content;
}

.feature-plus{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--qcore-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: transform .25s ease, background-color .25s ease;
  box-shadow: 0 2px 8px rgba(247, 167, 35, 0.25);
}

.feature-btn[aria-expanded="true"] .feature-plus{
  transform: rotate(45deg);
}

.benefit-collapse{
  background: #fff;
}

.benefit-detail{
  min-height: 76px;
  display: flex;
  align-items: flex-start;
  line-height: 1.45;
}

/* Mascota en “Dato clave” */
.mascota-qcore{
  max-width: 220px;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px){
  .benefit-detail{
    min-height: auto;
  }
}

/* Quitar viñetas negras en el bloque "Dato clave" */
.alert ul,
.alert li{
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.alert li::marker{
  content: "";
}