#footer {
    background-color: black;
    padding: 2.5% 10%;
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: auto;
}

/* Newsletter */

.div-news {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.div-news div h3 {
    margin: 5% 0 5% 0;
    font-size: 1.5rem;
    font-weight: bold;
}
.div-news input {
    color: white;
    width: 20rem;
    background-color: black;
    border: 2px solid white;
    padding: .5rem;
}
.div-news button {
    color: white;
    width: 8rem;
    height: 2.2rem;
    border-radius: 1.5rem;
    border: transparent;
    margin: 3px;
    background-color: #0156ff;
}

/* Inicio de Footer */

.footer-start {
    display: flex;
    height: fit-content;
    padding-bottom: 5%;
    flex-wrap: wrap;
    margin-top: 3%;
    justify-content: space-between;
    gap: .5rem;
}
.footer-start div {
    font-size: .7rem;
    height: fit-content;
    width: fit-content;
}
.footer-start div ul {
    display: flex;
    flex-flow: wrap column;
    gap: .5rem;
}
.footer-start h4 {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.5)
}
.footer-start ul {
    list-style: none;
}
.footer-start a {
    text-decoration: none;
    font-weight: lighters;
    color: rgba(255, 255, 255, 0.9);   
}

/* Final do Footer */

.footer-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem;
    color:rgba(255, 255, 255, 0.5);
    font-size: .7rem;
    gap: 4rem;
}
.footer-end img {
    width: 1rem;
    height: auto;
}
.footer-end .redes-sociais {
    filter: invert();
}
.footer-end .cartoes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
}
@media screen and (max-width: 600px) {
    .div-news input{
        width: 10rem;
    }
}

@media screen and (max-width: 350px) {
    .div-news input{
        zoom: .7;
    } 
}
@media screen and (max-width: 410px) {
    .footer-end {
        flex-direction: column;
        gap: 0;
    }
    .footer-end img {
        justify-content: space-around;
    }
}