/* body {
    margin: 0;
    font-family: Arial, sans-serif; 
}

.navbar-nav .nav-item .nav-link {
    color: #004d00; 
    font-weight: bold;
}

.navbar-nav .nav-item .nav-link:hover {
    text-decoration: underline; 
}

.form-inline {
    flex-grow: 1; 
}

@media (max-width: 992px) { 
    .form-inline {
        margin-top: 10px; 
        margin-bottom: 10px;
        width: 100%;
    }
}
 */
/*  .header{
  position: sticky;
} */

/* Eliminar estilos generales de html, body */

html,body{    
  scroll-behavior: smooth;
}

#navbar {
  transition: opacity 0.9s ease-in-out;
  opacity: 0;
  /* background-color: rgba(255, 255, 255, 0.2); */

  background: linear-gradient(to right, white 0%, white 100%);
  backdrop-filter: blur(30px); /* Aplica un desenfoque de 5px al fondo */
}

.navbar-transparent{
    background: transparent!important;
    backdrop-filter: unset!important;
}

#navbar.visible {
  opacity: 1;
}

.header-hover-zone {
  position: fixed;
  margin-top: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: auto; /* Adjust the height as needed */
  z-index: 20;
}

 .navbar-toggler {
    /* background-color: rgba(255, 0, 0, 0.386); */
    border: 2px solid rgb(7, 84, 7);
    /* border-color: lightgreen; */
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 128, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");    border-color: lightgreen;
    background-position: center;
    background-size: cover;
    /* cursor: pointer; */
    /* Otros estilos personalizados */
    transition: transform 0.3s;
    backdrop-filter: blur(30px); /* Aplica un desenfoque de 5px al fondo */
  }
  .navbar-toggler:hover {
    transform: scale(1.1); /* Aumenta el tamaño al pasar el mouse */
  }
  .navbar-toggler:active {
    transform: scale(0.9); /* Reduce el tamaño al hacer clic */
  }
  .navbar-toggler.clicked {
    animation: rotateButton 1s; /* Duración de la animación */
  }
  @keyframes rotateButton {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(360deg);
    }
  }

  .nav-link {
    font-weight: 500;
    color: #054005 !important; /* Verde neón */
    /*text-shadow: 0 0 10px #054005;  Resplandor neón */
    /* mix-blend-mode: difference; */
  }
  
  .nav-link-ext {
    font-weight: 500;
    color: #fff !important; /* Verde neón */
    /*text-shadow: 0 0 10px #054005;  Resplandor neón */
    /* mix-blend-mode: difference; */
  }
  
  
  .navbar-brand{
    transition: transform 0.3s;
  }
  .navbar-brand:hover {
    transform: scale(1.1); /* Aumenta el tamaño al pasar el mouse */
  }
  .navbar-brand:active {
    transform: scale(0.9); /* Reduce el tamaño al hacer clic */
  }

  #navbarNav .nav-link:hover {
    transform: scale(1.02); /* Aumenta el tamaño al pasar el mouse */
  }
  
  /* Estilo al hacer clic en el enlace */
  #navbarNav .nav-link:active {
    transform: scale(0.9); /* Disminuye el tamaño al hacer clic */
    /* Agrega otros estilos según tus preferencias */
  }
  
  .form-control:hover {
    transform: scale(1.02); /* Aumenta el tamaño al pasar el mouse */
  }
  .form-control:active {
    transform: scale(0.9); /* Reduce el tamaño al hacer clic */
  }

  .fixed-top.scrolled {
    background-color: #fff !important;
    transition: background-color 1500ms linear;
    
  }

  @media (max-width: 360px) {
    .navbar-toggler {
      transform: scale(0.7); /* Reduce el tamaño del navbar-toggler */
    }
  }
  