/* FOOTER */

.footer {
    background: linear-gradient(135deg, #0b132b, #1c2541);
    color: #ccc;
    padding: 25px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ESQUERDA */
.footer-left h3 {
    color: #fff;
    margin-bottom: 5px;
}

.footer-left p {
    font-size: 14px;
    opacity: 0.7;
}

/* CENTRO */
.footer-center {
    display: flex;
    gap: 20px;
}

.footer-center a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.footer-center a:hover {
    color: #4ea8de;
}

/* DIREITA */
.footer-right {
    text-align: right;
    font-size: 14px;
}

.footer-right span {
    opacity: 0.6;
    font-size: 12px;
}