body {
  padding-top: 0px;
  /* Altura de la navbar */
}

.navbar {
  background-color: transparent;
  min-height: 100px;
}

.navbar-brand,
.nav-link {
  color: rgb(80, 85, 91) !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #53a4b8 !important;
}

.navbar-toggler {
  border-color: #53a4b8; /* Cambia el color del borde del botón */
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2883, 164, 184, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  /* Cambia el color del ícono del menú hamburguesa a blanco */
}
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none; /* Elimina el borde negro */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Añade una sombra */
}

.jumbotron {
  position: relative;
  overflow: hidden;
  color: #454647;
  text-align: center;
  padding: 100px 25px;
}
.jumbotron video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.jumbotron .container {
  position: relative;
  z-index: 1;
}
.jumbotron::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* Overlay para mejorar la legibilidad */
  z-index: 0;
}

.footer {
  background-color: #96c2db;
  /* Azul claro */
  color: white;
  padding: 20px 20px;
  min-height: 200px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.proyecto {
  background: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.proyecto h5 {
  color: #53a4b8;
  text-align: center;
}

.ver-mas {
  background-color: #96c2db;
  color: rgb(80, 85, 91);
  min-height: 70px;
  border: 0px;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 70px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.float:hover {
  text-decoration: none;
  color: #25d366;
  background-color: #fff;
}

.my-float {
  margin-top: 16px;
}

.card {
  border: 0;
  border-radius: 0;
  color: #fff;
  box-shadow: 5px 5px 10px #e1e1e1;
  padding: 3em 0;
  border-bottom-right-radius: 4em;
  border-top-left-radius: 4em;
  background: linear-gradient(to left, teal 50%, #26282b 50%);
  background-size: 200%;
  background-position: right;
  transition: background-position 0.5s ease-out;
}
.card-icon {
  margin: 0 1em;
}
.card-icon i {
  font-size: 3em;
}
.card:hover {
  background-position: left;
}

.novedades2024 {
  background-color: rgba(0, 0, 0, 0.507);
  min-height: 300px;
}
