.why{
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a1f44, #081733);
  text-align: center;
}

/* 🔥 TÍTULO EN BLANCO (ARREGLADO) */
.why h2.section-title{
  font-size: 32px;
  margin-bottom: 50px;
  color: #ffffff !important;
}

/* CONTENEDOR */
.why-pro{
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.why-item{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  width: 260px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;
  transition: 0.4s;
}

/* HOVER */
.why-item:hover{
  transform: translateY(-10px);
  border-color: #8b0000;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* TEXTO */
.why-text{
  padding: 20px;
}

.why-item h3{
  color: #ffffff;
  margin-bottom: 10px;
}

.why-item p{
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
}

/* IMAGEN */
.why-item img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.why-item:hover img{
  transform: scale(1.05);
}