
/* color del navbar */
.bg-orange {
  background-color: rgb(246, 125, 26) !important;
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  color: white;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: rgb(255, 220, 150);
  transform: scale(1.05);
}
/* .navbar a:hover {
  color: rgb(255, 220, 150);
  transform: scale(1.05);
} */

.logo-navbar {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.logo-navbar img {
  max-width: 150px;
  height: auto;
}

@media (max-width: 991px) {
  .logo-navbar {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
}

/* fin navbar */

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Comienzo del footer */
.footer-icon {
    font-size: 1.50rem; /* 2rem = aprox 32px */
    transition: transform 0.3s ease; /* para hover */
    display: inline-block;
}

.footer-icon:hover {
    transform: scale(1.2);
}
/* fin footer */


