body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Texto con degradado */
/*
.gradient-text {
  background: linear-gradient(90deg, #00ffff, #adff2f, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
*/

/*
.gradient-text {
  background: linear-gradient(90deg, #00ffff, #adff2f, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; /* ✅ evita subrayado o “guion” 
}
*/

.gradient-text {
  background: linear-gradient(90deg, #00ffff, #adff2f, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
}

.banner-estatico {
  transition: none !important;
}

.banner-estatico:hover {
  transform: none !important;
}

/* Bordes con degradado */
.border-gradient {
  border: 1px solid transparent;
  border-image: linear-gradient(45deg, #00ffff, #adff2f, #ffff00) 1;
}

/* Botones con degradado */
.btn-gradient {
  background: linear-gradient(90deg, #00ffff, #adff2f, #ffff00);
  border: none;
  color: #000;
  font-weight: bold;
  transition: 0.3s;
}

.btn-gradient:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

/* Navbar */
.navbar {
  background-color: #000 !important;
}

.nav-link {
  color: #fff !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #adff2f !important;
}


/* Estilo para las imágenes del carrusel */
/*
.carousel-item img {
  border-radius: 15px; /* Esquinas redondeadas */
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra suave */
  /*
}
*/

/* Estilo para las imágenes de los servicios */
.img-fluid {
  border-radius: 15px; /* Esquinas redondeadas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
  transition: transform 0.3s ease-in-out;
}

.img-fluid:hover {
  transform: scale(1.05); /* Efecto de zoom al pasar el ratón */
}

/* Carrusel pantalla completa */
#hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh; /* Altura total de la pantalla */
  overflow: hidden;
}

.carousel-item {
  height: 100vh; /* Cada slide ocupa toda la pantalla */
}

.carousel-image {
  object-fit: cover; /* Cubre toda el área sin deformarse */
  width: 100%;
  height: 100vh;
  filter: brightness(70%); /* oscurece ligeramente para que el texto destaque */
}

/* Texto del carrusel */
.carousel-caption {
  bottom: 20%;
}

.carousel-caption h2 {
  font-size: 3rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

/* Ajustes responsive */
@media (max-width: 768px) {
  .carousel-caption h2 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}



/* Otras reglas de estilo pueden ir aquí */




/* Footer */
footer {
  border-top: 1px solid #333;
}

footer a {
  text-decoration: none !important;
}

.social-icons a {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.social-icons i {
  vertical-align: middle;
}
/* Cards */
.card {
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Responsividad */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 6rem;
  }
}
