.elementor-805 .elementor-element.elementor-element-4665be0{--display:flex;}.elementor-805 .elementor-element.elementor-element-a9a2c66{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c7fecd7 */.ugp-ventajas {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  font-family: 'Raleway', sans-serif;
}

.ugp-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #0b3c6f;
  margin-bottom: 60px;
}

/* GRID */

.ugp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

/* CARD */

.ugp-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* ANIMACIÓN ACTIVADA */

.ugp-card.visible {
  transform: translateY(0);
  opacity: 1;
}

/* IMAGEN FONDO */

.ugp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
}

/* ZOOM HOVER */

.ugp-card:hover .ugp-bg {
  transform: scale(1.08);
}

/* OVERLAY */

.ugp-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.25)
  );
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ICONO */

.ugp-icon {
  font-size: 34px;
  margin-bottom: 8px;
}

/* TEXTO */

.ugp-content h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.ugp-content p {
  font-size: 15px;
  line-height: 1.5;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .ugp-title {
    font-size: 30px;
  }

  .ugp-card {
    height: 260px;
  }

}/* End custom CSS */