.footer {
    padding-top: 4rem;
}

.footer-principal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    padding-right: 10vw;
    padding-left: 10vw;
    gap: 2rem;
}

.footer-title {
    color: #f2f2f2;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-navigation-links {
    padding-left: 1rem;
}

.footer-navigation-links li {
    margin-bottom: 0.25rem;
    list-style: none;
}

.footer-link {
    text-decoration: none;
    color: #f2f2f2;
}

.footer-link:hover {
    color: rgba(235, 235, 235, 0.75);
}

.copyright {
    color: rgba(235, 235, 235, 0.64);
    text-align: center;
    margin: 0;
}

.footer-secondary-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-text {
    margin: 0.5rem;
    color: #f2f2f2;
}

.footer-secondary {
    background-color: #060606;
    padding-top: 1rem;
    font-size: 1rem;
    padding-bottom: 1rem;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    width: 80vw;
    padding-bottom: 2rem;
    border-bottom: solid 2px var(--background-shadow-lighter);
}

.contact-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

.contact-item-icon {
    height: calc(1rem + 1vw);
}

.contact-item-title {
    font-size: calc(.7rem + .55vw) !important;
    margin: 0;
    line-height: calc(.7rem + .55vw) !important;
}

.contact-item-information {
    font-size: calc(.5rem + .5vw) !important;
    margin: 0;
    opacity: .8;
}

.softmos-resume {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.softmos-resume-content, .footer-social-medias {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.softmos-resume-text {
    font-size: calc(.4rem + .5vw) !important;
    line-height: calc(.75rem + .75vw);
    margin: 0;
    opacity: .8;
}

.softmos-resume-logo {
    max-width: 50%;
}

.footer-social-medias {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-media-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1rem;
}

.footer-principal-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.useful-links-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.useful-links-section > h4,
.contact-us-section > h4 {
    position: relative;
}

.useful-links-section > h4::after,
.contact-us-section > h4::after {
    content: "";
    display: block;
    width: 4rem;
    height: 2.5px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -.75rem;
}

.useful-links-container {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.useful-link {
    font-size: calc(.55rem + .5vw);
    opacity: .8;
}

.useful-link:hover {
    color: var(--primary-color) !important;
    opacity: 1;
}

.contact-us {
    margin-top: 3rem;
}

.contact-button {
    font-size: calc(0.5rem + .5vw);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: calc(.8rem + .5vw + 1rem);
    transition: all 0.1s;
    border: 2px solid var(--primary-color);
}

.contact-button:hover {
    background-color: rgba(235, 90, 35, .05);
}

@media screen and (max-width: 800px) {
    .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-item {
        width: 200px;
    }

    .footer-principal-content {
        grid-template-columns: 1fr;
    }

    .footer-principal {
        padding-left: 15vw;
        padding-right: 15vw;
    }

    .softmos-resume-text {
        font-size: calc(.55rem + .5vw) !important;
    }
}