/* ===================
   ESTILOS ACTUALIZADOS
   =================== */

/* TITULOS DE SECCIÓN */
.section-title {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  color: #3c3c3c;
}

/* BOTÓN "VER MÁS" */
.btn-minimal {
  background-color: #001e44;
  color: white;
  border-radius: 20px;
  padding: 8px 16px;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}
.btn-minimal:hover {
  background-color: #0d3263;
}

/* EFECTO HOVER EN TARJETAS */
.card.custom-card:hover,
.card.custom-card-grey:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* FONDOS ALTERNATIVOS */
.section-white-bg {
  background-color: #fff;
  padding: 10px 0;
}
.section-grey-bg {
  background-color: #f4f4f4;
  padding: 10px 0;
  border-top: 1px dashed #dfdcdc;
}
.section-lightblue {
  background-color: #eef6fb;
  padding: 10px 0;
}

/* BORDES CURVOS EN IMÁGENES */
.custom-img-radius {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

/* RESPONSIVE BANNERS */
.full-width-carousel .item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 768px) {
  .full-width-carousel .item img {
    height: 120px;
  }
  .section-title {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .full-width-carousel .item img {
    height: 220px;
  }
}
@media (min-width: 992px) {
  .full-width-carousel .item img {
    height: 320px;
  }
}

/* FOOTER ICONOS SOCIALES */
.footer-icons a {
  margin-right: 10px;
  display: inline-block;
}
.footer-icons img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp-float img {
  display: block;
  width: 30px;
  height: 30px;
}
