/* Footer */

.footer {
    width: 100%;
    height: 180px;
    background-color: #000;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.footer-text {
    color: #fff;
    font-family: 'League Spartan', sans-serif;
    font-weight: 100;
    font-size: 1.1rem;
    text-align: left;
    align-self: flex-end;
    margin-left: 18px;
    margin-bottom: 12px;
    z-index: 2;
    letter-spacing: 0.02em;
}

.footer-pattern {
    position: absolute;
    top: 0;
    right: -54px;
    height: 100%;
}

.footer-pattern img,
.footer-pattern svg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 20px 0;
    }

    .footer-text {
        font-size: 1rem;
        text-align: center;
        margin: 0;
        padding: 10px 20px;
        align-self: center;
    }

    .footer-pattern {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0.1;
        /* opcional: suaviza o visual no mobile */
        z-index: 1;
    }

    .footer-pattern img,
    .footer-pattern svg {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}