footer {
    padding: 2em 0;
}
.footer-wrapper { 
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1em;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    

}

.social-area {
    width: 50%;
    margin: .5em 0;
    display: flex;
    flex-direction: row;
    gap: .5em;
    margin: 0 auto;
    justify-content: space-evenly;
}

.social-area i {
    color: white;
    font-size: 1.75em;
}

.social-area i:hover {
    color: var(--highlight);
    cursor: pointer;
}
.footer-logo {
    width: 100%;
    max-width: 200px;
    margin: 1em auto;
    
}

footer .section-paragraph {
    font-size: 1em;
    font-weight: 500;
    padding: none;
    margin: .25em 0;
}


.section-paragraph#link {
    text-decoration: underline;
    font-weight: 200;
}

.section-paragraph#whats {
    color: black;
    text-decoration: none!important;

}

.whats-link {
    display: flex;
    align-items: center;
    color: black;
    gap: .25em;
    background-color: white;
    padding: .5em 0;
    width: 60%;
    border-radius: 1em;
    text-decoration: none!important;
    justify-content: center;
    margin-top: .25em;

}

.whats-link i {
    font-size: 2em;
}

.footer-wrapper a {
    color: #ffffff;
    text-decoration: none;
    text-align: left;
    padding: 0;
}
.footer-wrapper {
    align-items: flex-start;
    justify-content: space-between;
    color: #ffffff;
}
@media (min-width: 800px) {

footer {
    padding: 5em 0;
}


.footer-col {
    width: calc(33% - 1em);
    align-items: center;
}
.whats-link {
    width: 100%;
    max-width: 200px;
}

}