.footer-main {
    background-color: var(--footer-bg);
    
    padding: 1.25rem;
}

.content-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.content-footer > div {
    width: 100%;
    max-width: 280px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.logo-footer {
    width: 4.6875rem;
    height: 4.6875rem;
}

.logo-footer img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: cover;
    object-position: center;
}

/* NAV FOOTER */
.list-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.list-nav-footer a {
    font-size: 1rem;
    font-weight: 600;

    color: var(--footer-link);
   
    text-transform: uppercase;

    transition: color .3s ease;
}

.list-nav-footer a:hover {
    color: var(--footer-link-hover);
}

/* SOCIAL MEDIA */
.social-media-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
  
.social-media-footer a {
    font-size: 1.5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    background-color: var(--social-icon-bg);
    color: var(--social-icon-color);
    text-shadow: 0 0 3px var(--social-icon-shadow);
    
    border-radius: 0.625rem;

    transition: background-color 0.3s ease, color 0.3s ease, box-shadow .2s ease;
}
  
.social-media-footer a:hover {
    color: var(--social-icon-hover);
}

/* DIVISOR */
.footer-divisor {
    height: 1px;
    width: 100%;
    max-width: 1440px;

    background-color: var(--footer-border-top);
    border: none;
    border-radius: 5px;

    margin: 1.25rem auto;
}
  
.final-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;

    text-align: center;
}
  
.final-page p {
    max-width: 300px;

    font-size: 1rem;
    font-weight: 400;

    color: var(--footer-text);
}
  
.final-page a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--footer-link-hover);
}

@media screen and (min-width: 425px) {
}

@media screen and (min-width: 600px) {
    .content-footer > div {
        max-width: 250px;
    }

    .footer-item-1 {
        order: 1;
    }

    .footer-item-2 {
        order: 3;
    }

    .footer-item-3 {
        order: 2;
    }
}

@media screen and (min-width: 768px) {
    .content-footer {
        justify-content: space-between;
    }

    .content-footer > div {
        max-width: 210px;
    }

    .footer-item-1 {
        order: 1;
    }

    .footer-item-2 {
        order: 2;
    }

    .footer-item-3 {
        order: 3;
    }
}