.site-footer {
    background-color: #808080; /* Color de fondo gris oscuro */
    padding: 30px 0; /* Espacio superior e inferior */
    text-align: center; /* Centrar el contenido */
    color: #ffffff; /* Color de texto general */
}

.site-footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-footer .footer-content p {
    margin: 0;
    font-size: 14px;
    color: black; /* Color del texto del párrafo */
}

.site-footer .footer-content .legal-link {
    color: black; /* Color de los enlaces */
    text-decoration: none; /* Quitar subrayado */
    font-size: 14px; /* Tamaño de fuente más pequeño */
    outline: none; /* Quitar el contorno al hacer clic */
    -webkit-appearance: none; /* Para Safari/Chrome */
}

.site-footer .footer-content .legal-link:hover {
    text-decoration: underline; /* Subrayado al pasar el ratón */
}


/* Media Queries para responsividad */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 0;
    }

    .site-footer .footer-content img {
        height: 30px;
        margin-bottom: 10px;
    }

    .site-footer .footer-content p,
    .site-footer .footer-content .legal-link {
        font-size: 12px;
    }
} 