.footer-wrapper {
    width: 100%;
    
    background-color: #bce0ff;
    background-image: 
        radial-gradient(circle at -81% -9%, #0000000e 60%, transparent 60.05%),
        radial-gradient(circle at 2% -31%, #00000028 50%, transparent 60.05%),
        radial-gradient(circle at -74% 40%, #00000014 54%, transparent 57.05%),
        linear-gradient(17deg, #00000025 58%, transparent 58.05%)
    ;
    background-attachment: fixed;

    overflow-x: hidden;
}

.footer {
    height: 100%;

    padding: 1rem;

    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;

    gap: 2rem;

    font-size: clamp(1rem, 2vw, 1.6rem);
}

.footer > * {
    width: 100%;
}

.footer-subtitle,
.footer-text {
    text-align: center;
}

.footer-subtitle {
    font-weight: bold;
    letter-spacing: 4px;
}

.footer-info {
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: .6rem;
}

.footer-info > * {
    display: flex;
    width: 100%;
    gap: .4rem;
}

.footer a {
    color: black;
}

.footer-ouvidoria {
    display: flex;
    flex-flow: column;
}
.footer-ouvidoria > * {
    width: 100%;
    text-align: center;
}

.footer-disclaimer {
    font-size: .6rem;
    text-align: justify;
    hyphens: auto;
}

@media screen and (min-width: 1279px) {
  
    .footer {
        max-width: 160rem;

        margin: auto;
    
        padding: 2rem;
    
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
    
        gap: 2rem;
    
        font-weight: 500;
    }

    .footer-title {
        font-size: clamp(1.4rem, 1.5vw, 2.4rem);
    }
    
    .footer > * {
        width: 100%;
    }
    
    .footer-subtitle,
    .footer-text {
        text-align: center;
    }
    
    .footer-endereco {
        all: unset;
    }

    .footer-info {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        gap: 2rem;
    }
    
    .footer-info > * {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .footer-telefone {
        grid-column: 1 / 2 ;
        grid-row: 1 / 2;

        justify-content: left;
    }

    .footer-email {
        grid-column: 2 / 3 ;
        grid-row: 1 / 2;

        justify-content: right;
    }

    .footer-endereco {
        grid-column: 1 / 3 ;
        grid-row: 2 / 3;
    }

    .footer-ouvidoria {
        display: flex;
        flex-flow: row;
        gap: 1rem;

        justify-content: center;
    }
    .footer-ouvidoria > * {
        width: fit-content;
        align-self: center;
        text-align: center;
        padding: .6rem;

        font-size: 1.2rem;
    }
    
    .footer-disclaimer {
        font-size: 1rem;
        text-align: justify;
        hyphens: auto;
    }

    .footer-subtitle {
        font-size: clamp(2rem, 2vw, 3rem);
    }

    .footer-text {
        font-size: clamp(1.8rem, 1.8vw, 2.8rem);
    }

    .footer-info {
        font-size: clamp(1.8rem, 1.8vw, 2.8rem);
    }
    .footer-info img {
        height: 3.6rem;
        margin-right: .6rem;
    }

    .footer-ouvidoria span {
        font-size: 1.4rem;
    }

}

@media screen and (min-height: 864px) {

    .footer-title {
        font-size: clamp(1.4rem, 3vw, 3.8rem);
    }

    .footer-subtitle {
        font-size: clamp(2rem, 2.5vw, 3.4rem);
    }

    .footer-text {
        font-size: clamp(1.8rem, 2.5vw, 3.2rem);
    }

    .footer-info {
        font-size: clamp(1.8rem, 2.5vw, 3rem);
    }
    .footer-info img {
        height: 4rem;
        margin-right: 1rem;
    }

    .footer-ouvidoria span {
        font-size: 1.8rem;
    }

    .footer-disclaimer {
        font-size: 1.2rem;
    }

}

@media screen and (min-height: 961px) {

    .footer-title {
        font-size: clamp(1.4rem, 3vw, 4.4rem);
    }

    .footer-subtitle {
        font-size: clamp(2rem, 2.5vw, 4rem);
    }

    .footer-text {
        font-size: clamp(1.8rem, 2.5vw, 3.6rem);
    }

    .footer-info {
        font-size: clamp(1.8rem, 2.5vw, 3.2rem);
    }
    .footer-info img {
        height: 4.4rem;
        margin-right: 1rem;
    }

    .footer-ouvidoria span {
        font-size: 2rem;
    }

    .footer-disclaimer {
        font-size: 1.6rem;
    }

}