/* Botones de idioma */
.language-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center; /* Centra los botones horizontalmente */
    gap: 10px; /* Espaciado entre botones */
  }
  
  .btn-language {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px; /* Ajusta el tamaño del texto */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 15px; /* Ajusta el padding interno */
    border-radius: 30px; /* Bordes redondeados */
    color: #fff;
    background-color: #565252; /* Fondo negro */
    text-decoration: none; /* Quita el subrayado */
    transition: 0.3s; /* Transición suave */
  }
  
  .btn-language img {
    width: 20px; /* Tamaño de la bandera */
    height: auto;
    margin-right: 8px; /* Espacio entre bandera y texto */
  }
  
  .btn-language:hover {
    background-color: #393b5d; /* Fondo dorado al pasar el mouse */
    color: #fff;
  }
  
  @media (min-width: 992px) {
    .language-buttons {
      justify-content: flex-start; /* Alinear botones a la izquierda en pantallas grandes */
    }
  }
  