/*? Sessão Home ?*/
section.section.section-home .background-op-image{
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    pointer-events: none;

    background: linear-gradient(-90deg, transparent 0%, var(--color-white-one) 85%), url('../../images/img_05.jpg');
    background-repeat: no-repeat;
    background-position: 80% bottom;
    background-size: cover;

    filter: grayscale(.7);
}
section.section.section-home .background-op-image .gradient{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 150px;

    background: linear-gradient(to bottom, var(--color-white-one) 30%, transparent 100%);
}

section.section.section-home .contain-section{
    min-height: 55%;
}

/*** Chamada ***/
section.section.section-home .contain-section .calling{
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.section.section-home .contain-section .calling .img-logo img{
    width: 100%;
    max-width: 550px;
}

section.section.section-home .contain-section .calling .effect-call{
    position: absolute;
    bottom: 100px;
}
section.section.section-home .contain-section .calling .effect-call h4{
    font-size: 1.7rem;
    line-height: 1.7rem;
    font-weight: 500;
    color: var(--color-black-three);
}


/*** Links Uteis ***/
section.section.section-home .contain-section .links-util{
    width: 100%;
    height: auto;

    margin: 30px 0;

    display: flex;
    justify-content: center;
    align-items: center;
}
section.section.section-home .contain-section .links-util .social{
    display: block;

    font-size: 1.1rem;
    line-height: 1.1rem;
    font-weight: 500;
    color: var(--color-blue);

    margin: 0 15px;

    position: relative;
}
section.section.section-home .contain-section .links-util .social:first-child{
    margin-left: 0;
}
section.section.section-home .contain-section .links-util .social:last-child{
    margin-right: 0;
}
section.section.section-home .contain-section .links-util .social::before{
    content: '';

    width: 0;
    height: 1px;

    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: -1;

    background-color: var(--color-green);

    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
section.section.section-home .contain-section .links-util .social:hover::before{
    width: 100%;
}

section.section.section-home .contain-section .btn-plus-pages{
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}
section.section.section-home .contain-section .btn-plus-pages a{
    font-size: 3rem;
    color: var(--color-blue);

    animation: infinite 2s levitate-y linear;
}