/* ******************************************** */
/** COMPONENTS: FOOTER
/* ******************************************** */

/* FOOTER */

.c-footer{
    padding-bottom: 30px;
    text-align: center;
}

.c-footer__group:not(:first-child){
    margin-top: 50px;
}

.c-footer__text{
    display: inline-block;
    color: var(--color-darkgreen);
    opacity: .7;
    font-size: 1.5rem;
}

.c-footer__logo{
    width: 200px;
    margin-bottom: 20px;
}

/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 768px) {

    .c-footer{
        padding-top: 30px;
        position: relative;
        text-align: justify;
        line-height: 0;
    }

    .c-footer:after{
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 100%;
    }

    .c-footer__group{
        display: inline-block;
        vertical-align: middle;
    }

    .c-footer__group:not(:first-child){
        margin-top: 0;
    }

    .c-footer__logo{
        display: inline-block;
        width: 160px;
        vertical-align: middle;
        margin-right: 10px;
        margin-bottom: 0;
        margin-top: -1px;
    }

}


/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {

    .c-footer__logo{
        width: clamp(200px, 17vw,240px);
        margin-right: 16px;
    }
    
    .c-footer__link:hover,
    .c-footer__link:focus{
        color: var(--color-hover);
    }
}


/* ********************** de Desktop 2 a HD ********************** */

@media (min-width: 1400px) {

    .c-footer__text{
        font-size: 1.6rem;
    }
}