:root {
    /* Variáveis */
    --titulo: 24px;
    --sub-titulo: 18px;
    --texto: 14px;
    --texto-centralizado: center;
    --text-color: #000;

    --mg-0: 0rem;
    --mg-05: 0.5rem;
    --mg-1: 1rem;
    --mg-2: 2rem;
    --mg-3: 3rem;

    --grey: #F9F9F9;
    --laranja: #F68C51;
}

/* Templates */
.mg-bt-0 {
    margin-bottom: var(--mg-0) !important;
}

.mg-bt-05 {
    margin-bottom: var(--mg-05) !important;
}

.mg-bt-1 {
    margin-bottom: var(--mg-1) !important;
}

.mg-bt-2 {
    margin-bottom: var(--mg-2) !important;
}

.mg-bt-3 {
    margin-bottom: var(--mg-3) !important;
}

.mg-tp-05 {
    margin-top: var(--mg-05) !important;
}

.mg-tp-1 {
    margin-top: var(--mg-1) !important;
}

.mg-tp-2 {
    margin-top: var(--mg-2) !important;
}

.mg-tp-3 {
    margin-top: var(--mg-3) !important;
}

.d-flex {
    display: flex;
}

.ct-center {
    justify-content: center;
}

.al-items {
    align-items: center;
}

/* Page */
.container {
    min-height: auto !important;
    padding: 0 20px;
}

section {
    min-height: calc(100vh - 230px);
    overflow: hidden;
}

.banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 10px;
}

.banner .img-banner {
    width: 100%;
}

.banner .img-banner img {
    width: 100%;
    transition: ease-in-out 1s;
}

.banner .img-banner[data-scroll="in"] img {
    filter: brightness(0.7);
    transform: scale(1.06);
}

.mobile {
    display: none;
}

.banner .text-block {
    z-index: 2;
    position: absolute;
}

.banner .text-block h2 {
    font-size: 45px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    transition: ease-in-out 0.8s;
    transform: translateX(100px);
    opacity: 0;
}

.banner .text-block h3 {
    font-size: 35px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    transition: ease-in-out 1.2s;
    transform: translateX(100px);
    opacity: 0;
}

.banner .text-block h2[data-scroll="in"] {
    transform: translateX(0px);
    opacity: 1;
}

.banner .text-block h3[data-scroll="in"] {
    transform: translateX(0px);
    opacity: 1;
}

.container {
    max-width: 900px;
    margin-bottom: var(--mg-3);
    transform: translateY(100px);
    transition: ease-in-out 1.2s;
    opacity: 0;
}

.container[data-scroll="in"] {
    transform: translateY(-0px);
    opacity: 1;
}

.container .titulo {
    color: var(--text-color);
    margin-bottom: var(--mg-2);
}

p {
    color: var(--text-color);
    margin-bottom: var(--mg-1);
}

.sub-titulo {
    margin-bottom: var(--mg-05);
    font-size: var(--sub-titulo) !important;
    color: #000;
    font-weight: 500;
}

.text-center {
    text-align: var(--texto-centralizado);
}

.ultimo-texto {
    margin-bottom: var(--mg-2);
}

.video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 340px;
    margin: auto;
}

.bg-grey {
    background-color: var(--grey);
    padding: var(--mg-2);
    margin-bottom: var(--mg-2);
}

.div-btn {
    display: flex;
    justify-content: center;
    margin-bottom: var(--mg-2);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primario {
    background-color: #fff;
    border: 1px solid #000;
    font-size: var(--sub-titulo);
    font-weight: 500;
    color: var(--text-color);
    width: 240px;
    height: 40px;
    transition: ease-in-out 0.3s;
}

.btn-primario:hover {
    background-color: var(--laranja);
    color: #fff;
    border: 1px solid #fff;
    transform: scale(1.05);
}

.beneficio {
    display: flex !important;
    height: 400px !important;
}

.beneficio .texto {
    margin-right: var(--mg-1);
    width: 400px;
}

.beneficio .texto h3 {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: var(--mg-1);
}

.beneficio .texto p {
    font-size: 13px !important;
}

.beneficio .img {
    width: 615px;
    height: 100%;
}

.beneficio .img img {
    width: 100%;
}

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logos img {
    width: 160px;
}

/* @MEDIA QUERY SECTION */
@media only screen and (max-width: 800px) {
    .banner .text-block h2 {
        font-size: 25px;
    }

    .banner .text-block h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .banner {
        display: none;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: unset;
        width: 151px;
        margin: auto;
    }

    .caminho {
        display: none;
    }

    .video {
        height: 200px;
        width: 100%;
    }

    .beneficio {
        display: flex !important;
        height: auto !important;
        flex-direction: column;
    }

    .beneficio .texto {
        width: 300px;
        margin: auto;
    }

    .beneficio .img {
        width: 100%;
        height: 100%;
    }

    .bg-grey {
        background-color: var(--grey);
        padding: var(--mg-1) !important;
        margin-bottom: var(--mg-1) !important;
    }

    .ultimo-texto {
        margin-bottom: var(--mg-2);
    }

    .container {
        margin-bottom: var(--mg-2);
        margin-top: 30px;
    }

    .div-btn {
        margin-bottom: var(--mg-2) !important;
    }

    .logos {
        flex-direction: column;
        margin-bottom: var(--mg-0) !important;
    }

    .logos .around-logo {
        margin-bottom: var(--mg-2);
    }

    .logos img {
        width: 90px;
    }
}