/* --- Estilos del Footer Feraltime --- */
.site-footer {
    background-color: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #eeeeee;
    font-family: var(--font-main);
}

.site-footer .container {
    padding: 0 20px;
    text-align: center;
}

/* Enlaces del menú */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* Espacio entre enlaces */
}

.footer-links li a {
    text-decoration: none;
    color: #666666;
    font-size: var(--font-size-normal);
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #000000;
}

/* Línea de Copyright */
.footer-bottom {
    margin-top: 20px;
}

.copyright {
    color: #999999;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-links {
        gap: var(--gap-special);
        flex-direction: column;
    }
}