/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  
  .container-fluid {
    background-color: #ffff;
    position: fixed;
    top: 0;
    height: 17vh;
    border: 2px solid #0000;
    margin: 0;
    padding: 2px;
    width: 100%;
    z-index: 2;
}
.navbar-social a {
  margin-right: 10px; /* Espacio entre los iconos */
  text-align: center;
}
.search-container {
  position: relative;
  width: 280px;
  display: flex;
  align-items: center;
}

.search-container input {
  width: calc(100% - 120px); /* Ajuste para ambos botones */
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: white;
  color: #282828;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  margin-right: 10px; /* Espacio entre el campo de búsqueda y los botones */
}

.search-container button {
  width: 50px; /* Ancho del botón */
  height: 30px; /* Altura del botón */
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

#results {
  position: absolute;
  top: 40px; /* Ajusta según sea necesario para colocar los resultados debajo del campo de búsqueda */
  left: 0;
  z-index: 3;
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 300px;
  max-height: 400px; /* Altura máxima del contenedor de resultados */
  overflow-y: auto; /* Habilitar el scrollbar vertical */
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#results div {
  padding: 10px;
  margin-top: 5px;
}

#results div a {
  color: #282828;
  text-decoration: none;
}

#results div a:hover {
  text-decoration: underline;
}
  .containerVDMMMA {
    margin-top: 20px;
  }
  
  .container-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-top: 7%;
  }
  
  .cardMMA {
    margin: 20px;
    width: 100%;
    
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    
  }
  
  .card-text {
    font-size: 1.1rem;
  }
  
  .txtClass {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
  }
  
  .textfield {
    width: 100%;
    margin-bottom: 10px;
  }
  
  /* Estilos específicos para el pie de página */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    }
    
    .bg-footer {
      background-color: #333; /* Color de fondo del footer */
      width: 100%;
    }
    
    .container-fluid1 {
      display: flex;
      justify-content: space-between; /* Espacio entre los elementos, izquierda y derecha */
      align-items: center; /* Centra verticalmente los elementos */
      width: 100%; /* Utilizar el ancho completo del contenedor */
      margin-top: 50px; /* Ajusta según sea necesario */
      padding: 2%;
    }
    
    .container-fluid1 p {
      margin: 0; /* Eliminar el margen predeterminado */
    }
    
    .container-fluid1 .contact-info {
      text-align: right; /* Alinea el texto a la derecha */
    }
    
 