/* Reducir la altura del footer al mínimo necesario */
.site-footer {
    background-image: linear-gradient(to bottom, #ffffff, #e8e6fffc);
    color: rgb(0, 0, 0);
    padding: 10px 0; /* Mantener la altura compacta */
    text-align: center;
    width: 100%;
    position: relative; /* Permite que el footer aparezca solo al final */
    bottom: 0;
    font-size: 14px; /* Tamaño de texto similar al nav */
}

/* Contenedor del footer centrado */
.footer-container {
    display: flex;
    flex-direction: column; /* Organizar elementos en columna */
    align-items: center; /* Centrar todos los elementos */
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
}

/* Ajustar el tamaño del logo en el footer */
.footer-logo {
    max-height: 50px; /* Aumentar el tamaño del logo */
    margin-bottom: 10px;
}

/* Restaurar el estilo del botón "Contacto" */
.footer-links {
    margin-bottom: 10px; /* Separar el botón del resto */
}

.footer-links a {
    display: inline-block;
    color: white !important;
    background-color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Cambiar color al hacer hover o clic */
.footer-links a:hover,
.footer-links a:active,
.footer-links a:focus {
    background-color: #515050;
    color: rgb(255, 255, 255) !important; 
    border: 1px solid #515050; 
}

.footer-links a:hover {
    background-color: #515050;
    color: black;
    border: 1px solid #515050;
}

.site-footer p {
    color: black;
}


/* Hacer que "Versión Beta 1.0" sea más pequeño */
.footer-version {
    font-size: 10px;
    color: #666;
    margin-top: 2px;
}

/* Ajustes en móviles */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

    .footer-links {
        margin-top: 5px;
    }
}
