

/* FOOTER */
footer {
    color: #aaa;
    text-align: center;
    padding: 40px 20px;
    font-size: 13px;
}

footer .footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

footer .footer-logo span {
    color: #f39c12;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 14px 0;
}

footer .footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

footer .footer-links a:hover {
    color: #fff;
}

footer .social {
    margin: 14px 0;
    display: flex;
    justify-content: center;
    gap: 14px;
}

footer .social a {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    line-height: 34px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

footer .social a:hover {
    background: #c0392b;
}

footer p {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}