.btn,
button[class*="btn-"],
input[type="button"],
input[type="submit"],
input[type="reset"] {
  text-transform: none !important;
}





.header .container {
  max-width: 1200px;
}

.header .menu {
  color: #fff;
  font-size: 1.3rem;
}

.header .menu a {
  color: #fff;
  text-decoration: none;
}


.menu-movil {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 0.7s cubic-bezier(0.4, 0.0, 0.2, 1),
    opacity 0.4s ease;
}

.menu-movil.abierto {
  max-height: 500px;
  /* ajusta si necesitas más */
  opacity: 1;
  pointer-events: auto;
}



/* Enlaces del menú móvil */
.navbar-nav .nav-link {
  color: #fff !important;
}

.navbar-nav .nav-link:hover {
  color: #ddd !important;
}

/* Eliminar foco del botón hamburguesa */
.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Eliminar bordes/sombras del icono de hamburguesa */
.navbar-toggler i.fa-bars {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  background: transparent !important;
  color: #fff !important;
}



/* Incluir el icono del triángulo en los <select> */
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 20 20"><path fill="black" d="M10 12l-5-5h10l-5 5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 25px;
}




.header {
  background-color: #2b2b2b;
  padding: 20px 0;
  position: relative;
  z-index: 1000;
}

.content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;

}

.main-content {
  flex-grow: 1;
}

.footer {
  background-color: #333;
  color: white;
  padding: 50px 0;
  margin-top: auto;
  border-top: 3px solid #2b8216;
  width: 100%;
}

.footer .footer-content {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}