/* Personalización para sección elegir */
.fila-elegir {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin: 24px 0 0 0;
}
.pelegir {
  flex: 1 1 180px;
  max-width: 220px;
  min-width: 160px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(7,98,189,0.08);
  padding: 18px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  margin: 0 8px;
  transition: transform 0.2s;
}
.pelegir:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 18px rgba(7,98,189,0.13);
}
.pelegir img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pelegir h4 {
  font-size: 1.08rem;
  color: #0762bd;
  margin-bottom: 8px;
  min-height: 44px;
  display: block;
  align-items: unset;
  justify-content: unset;
  font-weight: 700;
}
.pelegir p {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 900px) {
  .fila-elegir {
    gap: 18px;
  }
  .pelegir {
    max-width: 48%;
    min-width: 140px;
    margin-bottom: 18px;
  }
}
@media (max-width: 600px) {
  .fila-elegir {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .pelegir {
    max-width: 95%;
    min-width: 120px;
    margin-bottom: 12px;
  }
  .pelegir img {
    width: 56px;
    height: 56px;
  }
}
