/* =========================
   FOOTER - ESTILO PRINCIPAL
========================= */
footer {
    background: linear-gradient(135deg, #6A11CB, #2575FC);
    color: #EAEAEA;
    text-align: center;
    padding: 35px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(234, 234, 234, 0.1);
}

/* =========================
   PARÁGRAFOS
========================= */
footer p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(234, 234, 234, 0.85);
    line-height: 1.6;
}

footer p:nth-of-type(2) {
    margin-top: 5px;
}

/* =========================
   LINKS
========================= */
footer p a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

footer p a:hover {
    color: #FF4C4C;
}

/* =========================
   LINKS CONTAINER
========================= */
footer .footer-links {
    text-align: center;
}

/* =========================
   RESPONSIVO - MOBILE
========================= */
@media (max-width: 575.98px) {
    footer {
        padding: 25px 10px;
    }

    footer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    footer .footer-links {
        display: flex;
        flex-wrap: wrap;          /* permite quebra de linha */
        justify-content: center;
        gap: 4px;
        font-size: 0.75rem;
    }

    footer .footer-links a {
        margin: 2px 4px;
        text-decoration: underline;
        text-decoration-color: rgba(255, 255, 255, 0.3);
    }
}