.servicios .section-title {
  text-align: center;
  font-weight: 700;
}

.servicios .descripcion-servicios {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(20deg, rgba(15, 37, 232), rgb(2, 16, 120), rgb(0, 58, 105));
  border-radius: 10px;
  backdrop-filter: blur(3px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden; /* Para que el holograma no sobresalga */
  color: rgb(249, 249, 249);
}

.servicios .descripcion-servicios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Que se ajuste al contenedor */
  height: 100%; /* Que cubra toda el área */
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  animation: hologram 3s infinite linear;
  pointer-events: none;
  border-radius: 10px;
}

/* Ajustes para compatibilidad con Bootstrap */
.servicios {
  padding: 20px 0;
  background-color: rgb(255, 255, 255);
  border-radius: 30px;
}

.descripcion-servicios {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.descripcion-servicios:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 40px rgba(159, 158, 158, 0.751), 0 8px 30px rgb(6, 119, 164);
}

.btn-ver-mas {
  padding: 10px 15px;
  text-decoration: none;
  background-color: #ffc400;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 50%;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-ver-mas:hover {
  background-color: #000e7b;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 10px 2px rgba(255, 194, 0, 0.8);
}

@keyframes hologram {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.servicios .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-text{
  text-align: center;
}

.card-title{
  font-weight: 700;
  text-shadow:
      0 0 6px rgba(255, 255, 255, 0.8),
      2px 2px 6px rgba(0, 0, 0, 0.3);
}
.card-text:hover {
  color: #fbff00;
  transition: color 0.3s ease-in-out;
}

.container p{
  font-size: 18px;
}

/* Ajustes para vista responsive */
@media (max-width: 768px) {
  .servicios .row .col {
    flex: 1 1 100%; /* Una columna por fila */
    max-width: 100%;
  }
}

/* ============================= */
/* Igualar tamaño de las imágenes en la sección Servicios */
/* ============================= */
.servicios .descripcion-servicios .card-img-top {
  width: 100%;          /* Ocupa todo el ancho del contenedor */
  height: 500px;        /* Ajusta a la altura que prefieras */
  object-fit: cover;    /* Recorta/escala manteniendo proporciones */
  object-position: center; /* Centra el foco de la imagen */
  background-repeat: no-repeat;
  background-size: cover;
}
