/* styles.css */

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
   opacity: 1;
  transition: opacity 0.5s ease;
}

main {
  flex: 1;
}

/* Puedes personalizar más el footer si quieres */
footer {
  flex-shrink: 0;
}

.carousel-item img {
  height: 600px;
  object-fit: cover;
}

.top-bar {
  background-color: #0b71c3;
  color: white;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

/* Mostrar submenu al pasar el mouse */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.blue-content {
  background-color: #0b71c3;
  color: white;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

/* Efecto Fade */
body.fade-out {
  opacity: 0;
}






