* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


 /* Hero Section */

  .navbar{
    z-index: 1000;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
    background:#004200;
  }

  /* Estilos para alinear el logo con los elementos de navegación */
  .navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .logo {
    max-height: 90px;
    object-fit: contain;
  }

  .navbar-nav {
    align-items: center;
    height: 100%;
  }

  .nav-item {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    color: rgb(255, 255, 255);
    transition: color 0.5s ease-in-out;
  }
  .nav-link:hover {
    color:#85bb85;
    
  }

    .navbar-nav>li{
    font-size: 24px;

  }
  
  .nav-item:hover{
    text-decoration: 3px underline #33cc66 ;
  }

  /* Toggler blanco y hover */
    .navbar-toggler {
      background: transparent;
      border: none;
      box-shadow: none;
      transition: ease-in-out 0.2s;
      
    }
    .navbar-toggler .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
      height:4rem;
      width:4rem;
      
    }
    .navbar-toggler:hover, .navbar-toggler:focus {
      border:3px solid #fff !important;
      border-radius: 8px;
      transition: ease-in-out 0.2s;
    }
    .navbar-toggler:hover .navbar-toggler-icon, .navbar-toggler:focus .navbar-toggler-icon {
      filter: brightness(0) invert(1);
    }

  
  /* Cambiar el color del subrayado cuando el navbar está cubierto */
  .navbar.filled .nav-item:hover{
    text-decoration: 3px underline white ;
  }


   .footer {
      background-color: #0B2447;
      padding: 40px 0;
  }

  .footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.subscribe-input {
    max-width: 400px;
    margin: auto;
}
.social-icons a {
    margin: 0 5px;
    font-size: 24px;
    color: white;
}
.social-icons a:hover {
    color: #00A8E8;
}
.footer img {
    max-width: 100%;
    border-radius: 10px;
}

.imagen-foot:hover{
    transform: scale(1.05);
      transition: ease-in-out 100ms;
}



  @media (max-width: 490px) {

    .nuevofoot {
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  }

  .nuevofoot .col-md-3 {
   text-align: center;
   margin: 0 auto;
  }

  }
    
/* 🔹 RESPONSIVE DESIGN */