body {
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #eee;
}
.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.hero-menu {
  z-index: 1000;
}

.hero-menu .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hero-menu .nav-link:hover {
  color: #ffc107;
  text-decoration: underline;
}

section h2 {
  font-weight: bold;
  color: #222;
}

.card-title {
  font-weight: 600;
}

.top-bar {
  font-size: 0.9rem;
  position: relative;
  z-index: 1055;
}

@media (max-width: 576px) {
  .top-bar {
    text-align: center;
  }
  .top-bar .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .top-bar .text-end {
    text-align: left !important;
  }
}

  .hero-menu-link:hover {
    color: #d63384; /* Cambia a tu color deseado */
    text-decoration: underline;
    transition: all 0.2s ease-in-out;
  }


/* Fondo oscuro difuminado */
.custom-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  justify-content: center;
  align-items: center;
}

/* Contenedor del modal */
.custom-modal-content {
  width: 400px;
  height: 400px;
 
  border-radius: 20px;
  position: relative;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}

/* Mostrar con animación */
.custom-modal.mostrar .custom-modal-content {
  transform: scale(1);
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.card:hover .card-title {
  color: #007bff; /* azul profesional */
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  font-weig

.modal .btn-close {
  z-index: 1056 !important;
}

#testimonialCarousel::-webkit-scrollbar {
    display: none;
  }
  #testimonialCarousel {
    -ms-overflow-style: none;  /* IE y Edge */
    scrollbar-width: none;     /* Firefox */
  }