@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');

body#page-po {
    font-family: 'Barlow', sans-serif !important;
}

body#page-po #header {
    display: flex;
    align-items: center;
    justify-content: center;
}

body#page-po #header .box-all {
    position: fixed;
    z-index: 99;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    height: auto;
    top: 20px;
    padding: 15px 30px;
    border-radius: 6px;
}

body#page-po #header .box-all .menu {
    display: flex;
    justify-content: space-between;
    width: 32%;
}

body#page-po #header .box-all .menu .item:hover a {
    color: #FFFFFF;
}

body#page-po #header .box-all .menu .item:hover .barra {
    width: 100%;
}

body#page-po #header .box-all .menu .item.active a {
    color: #FFFFFF;
}

body#page-po #header .box-all .menu .item.active .barra {
    width: 100%;
}

body#page-po #header .box-all .menu .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

body#page-po #header .box-all .menu .item a {
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    color: #a7a7a7;
    text-decoration: none;
    transition: all 0.5s;
}

body#page-po #header .box-all .menu .item .barra {
    height: 2px;
    background: #08FFAC;
    margin-top: 8px;
    margin-bottom: -8px;
    border-radius: 5px;
    transition: all 0.5s;
    width: 0;
}

body#page-po #header .box-all .botton-entrar a:hover {
    background: #000000;
    color: #08FFAC;
}

body#page-po #header .box-all .botton-entrar a {
    width: 127px;
    height: 37px;
    border: 2px solid #08FFAC;
    background: #08FFAC;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s;
}

body#page-po #header .modal-cad.show {
    z-index: 99999;
    opacity: 1;
}

body#page-po #header .modal-cad {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -15;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

body#page-po #header .modal-cad .box-cad {
    background: #000000;
    border: 1px solid #2f2f2f;
    padding: 4em 3em;
    position: relative;
    width: 866px;
    max-width: 90%;
    border-radius: 8px;
}

body#page-po #header .modal-cad .box-cad .btn-close {
    position: absolute;
    right: 18px;
    top: 13px;
}

body#page-po #header .modal-cad .box-cad .btn-close i {
    color: #dfdfdf;
    font-size: 27px;
    cursor: pointer;
}

body#page-po #header .modal-cad .box-cad #formEmail {
    gap: 2em;
    display: flex;
    align-items: center;
    flex-direction: column;
}

body#page-po #header .modal-cad .box-cad #formEmail .first {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body#page-po #header .modal-cad .box-cad #formEmail .first input,
body#page-po #header .modal-cad .box-cad #formEmail .first select,
body#page-po #header .modal-cad .box-cad #formEmail .first textarea {
    border: 1px solid #08FFAC;
    background: transparent;
    border-radius: 4px;
    width: 100%;
    outline: 0;
    color: #FFFFFF;
    padding-left: 15px;
    transition: all 0.3s;
    font-size: 15px;
}

body#page-po #header .modal-cad .box-cad #formEmail .first textarea {
    padding: 15px;
    transition: all 0.3s;
    font-size: 15px;
}

body#page-po #header .modal-cad .box-cad #formEmail .first option {
    background: #000000;
    transition: all 0.3s;
    font-size: 15px;
}

body#page-po #header .modal-cad .box-cad #formEmail .first input,
body#page-po #header .modal-cad .box-cad #formEmail .first select {
    height: 53px;
    transition: all 0.3s;
    font-size: 15px;
}

body#page-po #header .modal-cad .box-cad #formEmail .first label {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s;
}

body#page-po #header .modal-cad .box-cad #formEmail .first .box {
    width: 48%;
    display: flex;
    align-items: baseline;
    flex-direction: column;
}

body#page-po #header .modal-cad .box-cad #formEmail .second {
    max-width: 100%;
}

body#page-po #header .modal-cad .box-cad #formEmail .second button.btn-green:hover {
    background: #000000;
    color: #08FFAC;
}

body#page-po #header .modal-cad .box-cad #formEmail .second button.btn-green {
    max-width: 100%;
    width: 364px;
    height: 43px;
    background: #08FFAC;
    border-radius: 4px;
    border: 2px solid #08FFAC;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #000000;
    font-weight: 500;
    transition: all 0.3s;
    outline: 0;
    padding-bottom: 33px;
}

body#page-po input#email:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px black inset;
}

body#page-po input#email:-webkit-autofill {
    -webkit-text-fill-color: #FFFFFF !important;
}

@media screen and (min-width: 768px) {
    body#page-po #page .first.sect {
        background-image: url("./imagens/fundo-first-sect.png");
        background-size: 100%;
        background-repeat: no-repeat;
        height: 980px;
    }
}

body#page-po #page .first.sect .box {
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: end;
    position: relative;
}

body#page-po #page .first.sect .box .texts-btn {
    max-width: 425px;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

body#page-po #page .first.sect .box .texts-btn .texts {
    margin-bottom: 40px;
}

body#page-po #page .first.sect .box .texts-btn .texts .title {
    font-weight: 800;
    font-size: 49px;
    line-height: 50px;
    color: #08FFAC;
    margin-bottom: 30px;
}

body#page-po #page .first.sect .box .texts-btn .texts .text {
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    color: #FFFFFF;
    text-align: justify;
    max-width: 370px;
}

body#page-po #page .first.sect .box .texts-btn .button a:hover {
    background: #000000;
    color: #FFFFFF;
}

body#page-po #page .first.sect .box .texts-btn .button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #000000;
    border: 2px solid #000000;
    text-decoration: none;
    transition: all 0.3s;
}

@media screen and (max-width: 1300px) {
    /* body#page-po #page .first .texts-btn.only-desk {
        margin-top: 12% !important;
    } */
}

@media screen and (max-width: 1550px) {
    body#page-po #page .first {
        max-height: 740px;
    }
}

@media screen and (max-width: 768px) {
    body#page-po #page .first {
        max-height: inherit !important;
    }
}

@media screen and (min-width: 1950px) {
    /* body#page-po #page .tag-roll {
        top: 85vh !important;
    } */
}

@media screen and (max-width: 768px) {
    body#page-po #page .tag-roll {
        display: none !important;
    }
}

body#page-po #page .tag-roll {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 100%;
    cursor: pointer;
    bottom: 50px
}

body#page-po #page .tag-roll span {
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    color: #FFFFFF;
}

body#page-po #page .second .box {
    gap: 5em;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    margin: 2em auto;
}

body#page-po #page .second .box .texts-btn-svg .texts {
    margin: 3em 0;
}

body#page-po #page .second .box .texts-btn-svg .texts .title {
    font-weight: 700;
    font-size: 46px;
    line-height: 50px;
    text-transform: uppercase;
    color: #000000;
    max-width: 400px;
}

body#page-po #page .second .box .texts-btn-svg .texts .text {
    font-weight: 400;
    font-size: 19px;
    line-height: 30px;
    color: #000000;
    max-width: 420px;
    margin-top: 20px;
    text-align: justify;
}

body#page-po #page .second .box .texts-btn-svg .button a:hover {
    background: #FFFFFF;
    color: #000000;
}

body#page-po #page .second .box .texts-btn-svg .button a {
    width: 200px;
    height: 50px;
    background: #000000;
    border: 2px solid #000000;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    transition: all 0.3s;
}

body#page-po #page .third .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body#page-po #page .third .box .video {
    width: 42%;
    background: url("./imagens/background-videopng.png");
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-height: 100%;
    height: 550px;
    background-size: 100%;
    background-repeat: no-repeat;
}

body#page-po #page .third .box .video video {
    width: 89%;
    position: relative;
    left: 7em;
    border-radius: 8px;
}

body#page-po #page .third .box .texts-btn-svg {
    width: 40%;
}

body#page-po #page .third .box .texts-btn-svg .texts {
    margin: 3em 0;
}

body#page-po #page .third .box .texts-btn-svg .texts .title {
    font-weight: 700;
    font-size: 46px;
    line-height: 50px;
    text-transform: uppercase;
    color: #000000;
}

body#page-po #page .third .box .texts-btn-svg .texts .text {
    font-weight: 400;
    font-size: 19px;
    line-height: 30px;
    color: #000000;
    max-width: 498px;
    margin-top: 20px;
    text-align: justify;
}

body#page-po #page .third .box .texts-btn-svg .button a:hover {
    background: #FFFFFF;
    color: #000000;
}

body#page-po #page .third .box .texts-btn-svg .button a {
    width: 200px;
    height: 50px;
    background: #000000;
    border: 2px solid #000000;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    transition: all 0.3s;
}

body#page-po #page .four {
    margin-top: 5em;
    margin-bottom: 3em;
}

@media screen and (min-width: 768px) {
    body#page-po #page .four {
        position: relative;
    }
}

body#page-po #page .four .title {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
}

@media screen and (min-width: 1920px) {
    body#page-po #page .four .box-trip .points {
        gap: 5em !important;
    }
}

@media screen and (min-width: 2100px) {
    body#page-po #page .four .box-trip .points {
        gap: 6em !important;
    }
}

@media screen and (max-width: 1300px) {
    body#page-po #page .four .box-trip {
        padding-top: 9% !important;
    }

    body#page-po #page .four .box-trip .points {
        gap: 4em !important;
    }

    body#page-po #page .four .box-trip .points .item svg {
        width: 18px;
        height: auto;
    }
}

body#page-po #page .four .box-trip {
    background-image: url("./imagens/background-trip.png");
    padding-top: 11.5%;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

body#page-po #page .four .box-trip .points {
    gap: 4.3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    position: relative;
    z-index: 6;
}

body#page-po #page .four .box-trip .points .first.line {
    justify-content: space-around;
    align-items: end;
    z-index: 6;
}

body#page-po #page .four .box-trip .points .second.line {
    justify-content: space-between;
    align-items: start;
}

body#page-po #page .four .box-trip .points .line {
    width: 100%;
    display: flex;
    align-items: baseline;
}

body#page-po #page .four .box-trip .points .line .item:hover .box-text {
    opacity: 1;
    z-index: 99;
}

body#page-po #page .four .box-trip .points .line .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 81px;
    cursor: pointer;
}

body#page-po #page .four .box-trip .points .line .item .box-text::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 20px;
    border: solid transparent;
    border-width: 0 0 2px 2px;
    transform: rotate(314deg);
    background: #FFFFFF;
    box-shadow: -20px 20px 25px 0px #939393;
}

body#page-po #page .four .box-trip .points .line .item .box-text {
    opacity: 0;
    z-index: -15;
    position: absolute;
    width: 360px;
    margin-bottom: 16em;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    color: #000000;
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px -2px #939393;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: end;
}

body#page-po #page .four .box-trip .points .line .item .point {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    color: #000000;
    gap: 8px;
}

body#page-po #page .four .black-dot .item:hover .box-text {
    z-index: 1;
    opacity: 1;
}

@media screen and (max-width: 1550px) {
    body#page-po #page .four .black-dot .item {
        align-items: flex-start !important;
    }

    body#page-po #page .four .black-dot .item .box-text {
        width: 300px;
        font-size: 10px;
    }

    body#page-po #page .four .black-dot .item .box-text::before {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 9px;
        width: 20px;
        height: 20px;
        border: solid transparent;
        border-width: 0 0 2px 2px;
        transform: rotate(314deg);
        background: #FFFFFF;
        box-shadow: -15px 15px 30px 0px #939393;
    }
}

body#page-po #page .four .black-dot .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 350px;
    cursor: pointer;
    position: absolute;
    bottom: 21%;
    left: 1em;
    z-index: 3;
}

body#page-po #page .four .black-dot .item .box-text::before {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 20px;
    border: solid transparent;
    border-width: 0 0 2px 2px;
    transform: rotate(314deg);
    background: #FFFFFF;
    box-shadow: -20px 20px 25px 0px #939393;
}

body#page-po #page .four .black-dot .item .box-text {
    z-index: -15;
    opacity: 0;
    position: relative;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    color: #000000;
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px -2px #939393;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: end;
    bottom: 20px;
}

body#page-po #page .four .black-dot .item .box-hover {
    height: 250px;
    width: 100%;
    cursor: pointer;
}

body#page-po #page .four .black-dot .item .point {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    color: #000000;
    gap: 8px;
    max-width: 95px;
}

body#page-po #page .four .black-dot .item .point img {
    width: 100%;
    height: auto;
}

body#page-po #page .five {
    background-image: url("./imagens/background-tecnologia.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 6em;
}

body#page-po #page .five .box h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: #FFFFFF;
    text-align: center;
    padding-top: 40px;
}

body#page-po #page .five .box .box {
    display: flex;
    padding: 0px 135px;
    padding-top: 5em;
    justify-content: space-between;
}

body#page-po #page .five .box .box .box-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body#page-po #page .five .box .box .box-left,
body#page-po #page .five .box .box .box-right {
    width: 48%;
}

body#page-po #page .five .box .box .box-left .check-list ul,
body#page-po #page .five .box .box .box-right .check-list ul {
    list-style: none;
    padding: 0;
}

body#page-po #page .five .box .box .box-left .check-list ul li,
body#page-po #page .five .box .box .box-right .check-list ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #FFFFFF;
    list-style: none;
}

body#page-po #page .five .box .box .box-left .check-list ul li svg,
body#page-po #page .five .box .box .box-right .check-list ul li svg {
    margin-right: 15px;
}

body#page-po #page .five .box .box .box-left .tec-seg,
body#page-po #page .five .box .box .box-right .tec-seg {
    gap: 1em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-direction: column;
}

body#page-po #page .five .box .box .box-left .tec-seg .item,
body#page-po #page .five .box .box .box-right .tec-seg .item {
    gap: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
}

body#page-po #page .five .box .box .box-left .tec-seg .item .svg-box,
body#page-po #page .five .box .box .box-right .tec-seg .item .svg-box {
    width: 70px;
    height: 70px;
    background: #08FFAC;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

body#page-po #page .five .box .box .box-left .tec-seg .item span,
body#page-po #page .five .box .box .box-right .tec-seg .item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

body#page-po #page .six .box .title {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    padding-top: 1.3em;
    padding-bottom: 1em;
}

body#page-po #page .six .box .box-clientes {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body#page-po #page .six .box .box-clientes .selection {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

body#page-po #page .six .box .box-clientes .selection .item.active .barra {
    display: none !important;
    width: 60%;
}

body#page-po #page .six .box .box-clientes .selection .item {
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4em;
    flex-direction: column;
}

body#page-po #page .six .box .box-clientes .selection .item img {
    transition: all 0.5s;
}

body#page-po #page .six .box .box-clientes .selection .item .barra {
    width: 0;
    height: 3px;
    background: #08FFAC;
    margin-top: 8px;
    margin-bottom: -8px;
    border-radius: 100px;
    transition: all 0.5s;
}

body#page-po #page .six .box .box-clientes .box-slick {
    width: 48%;
}

body#page-po #page .six .box .box-clientes .box-slick .slick {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

body#page-po #page .six .box .box-clientes .box-slick .slick #arrow-back:hover {
    left: -8px;
}

body#page-po #page .six .box .box-clientes .box-slick .slick #arrow-next:hover {
    left: 8px;
}

body#page-po #page .six .box .box-clientes .box-slick .slick #arrow-back,
body#page-po #page .six .box .box-clientes .box-slick .slick #arrow-next {
    cursor: pointer;
    position: relative;
    left: 0;
    right: 0;
    transition: all 0.5s;
}

body#page-po #page .six .box .box-clientes .box-slick .slick .box-itens {
    display: flex;
    justify-content: center;
    align-items: center;
}

body#page-po #page .six .box .box-clientes .box-slick .slick .box-itens .item.shadow {
    position: inherit;
    z-index: -15;
    opacity: 0;
}

body#page-po #page .six .box .box-clientes .box-slick .slick .box-itens .item.active {
    z-index: 9;
    opacity: 1;
}

body#page-po #page .six .box .box-clientes .box-slick .slick .box-itens .item {
    width: 525px;
    height: 400px;
    background: #FFFFFF;
    box-shadow: 0px 0px 13px 1px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    position: absolute;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    z-index: -15;
    opacity: 0;
    transition: all 0.5s;
}

body#page-po #page .six .box .box-clientes .box-slick .slick .box-itens .item .text h3 {
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    color: #000000;
    max-width: 73%;
    margin: auto;
    font-style: italic;
}

body#page-po #page .six .box .box-clientes .box-slick .dots {
    margin-top: 3em;
}

body#page-po #page .six .box .box-clientes .box-slick .dots ul {
    gap: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

body#page-po #page .six .box .box-clientes .box-slick .dots ul li.dot.active {
    background: #08FFAC;
}

body#page-po #page .six .box .box-clientes .box-slick .dots ul li.dot:hover {
    background: #08FFAC;
}

body#page-po #page .six .box .box-clientes .box-slick .dots ul li.dot {
    width: 9px;
    height: 9px;
    background: #000000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s;
}

body#page-po #footer {
    margin-top: 8em;
    background: #000000;
}

body#page-po #footer .box .text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

body#page-po #footer .box .text h2.title {
    font-weight: 700;
    font-size: 34px;
    line-height: 41px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 2em;
}

body#page-po #footer .box .text .widget_block::marker {
    font-size: 0;
    color: transparent;
    width: 0;
    height: 0;
    background: transparent;
}

body#page-po #footer .box .text .widget_block .wp-block-tnp-minimal {
    padding: 0 !important;
}

body#page-po #footer .box .text .widget_block .wp-block-tnp-minimal form {
    display: flex;
}

body#page-po #footer .box .text .widget_block .wp-block-tnp-minimal form .tnp-email {
    width: 392px;
    border: none;
    border-bottom: 2px solid #626262;
    background: transparent;
    padding-bottom: 18px;
    outline: none;
    color: white;
}

body#page-po #footer .box .text .widget_block .wp-block-tnp-minimal form .tnp-submit {
    width: 116px;
    height: 43px;
    background: #08FFAC;
    border-radius: 4px;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #000000;
    font-weight: 500;
    border: 2px solid #08FFAC;
    margin-left: 17px;
}

body#page-po #footer .box .text .form #contato {
    margin-top: 2em;
    display: flex;
}

body#page-po #footer .box .text .form #contato #email {
    width: 392px;
    border: none;
    border-bottom: 2px solid #626262;
    background: transparent;
    padding-bottom: 18px;
    outline: none;
}

body#page-po #footer .box .text .form #contato button {
    padding: 4px 40px;
    height: 43px;
    background: #08FFAC;
    border-radius: 4px;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #000000;
    font-weight: 500;
    border: 2px solid #08FFAC;
    margin-left: 17px;
    outline: 0;
}

body#page-po #footer .box .text .direitos-politica {
    gap: 22px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-top: 1px solid #383838;
    padding-top: 30px;
    margin-bottom: 40px;
}

body#page-po #footer .box .text .direitos-politica .direito span {
	color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 39px;
}
body#page-po #footer .box .text .direitos-politica .politica a {
	color: #08FFAC;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 39px;
    text-decoration-line: underline;
}

@media (max-width: 768px){
	body#page-po #footer .box .text .info-contato {
		margin-bottom: 2em !important;
	}
}

body#page-po #footer .box .text .info-contato {
    gap: 3em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5em;
    margin-bottom: 6em;
}

body#page-po #footer .box .text .info-contato .logo {
    margin-bottom: auto;
}

body#page-po #footer .box .text .info-contato .texts {
    max-width: 430px;
}

body#page-po #footer .box .text .info-contato .texts .direitos p {
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #FFFFFF;
}

body#page-po #footer .box .text .info-contato .texts .email a {
    font-weight: 400;
    font-size: 16px;
    line-height: 39px;
    text-decoration-line: underline;
    color: #FFFFFF;
    margin-bottom: 6px;
    display: block;
}

body#page-po #footer .box .text .info-contato .texts .reservados p {
    font-weight: 400;
    font-size: 16px;
    line-height: 39px;
    color: #FFFFFF;
}

.page {
    margin-top: 5em !important;
}

.page .entry-header {
    padding-bottom: 10px !important;
    border-bottom: 2px solid #08FFAC !important;
}
.page-template-default .page .entry-content{
	display: block !important;
}

.page .entry-content,
.page .entry-footer {
    display: none;
}

.page h1 {
    font-weight: 800 !important;
    line-height: 60px !important;
    font-size: 3.6em !important;
    color: #000000 !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

@media screen and (min-width: 768px) {
    body#page-po .mobile-only {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    body#page-po .only-desk {
        display: none !important;
    }

    body#page-po #header .header-mobile {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    body#page-po #header .header-mobile .box {
        background: #000000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 25px;
    }

    body#page-po #header .header-mobile .box .logo {
        margin-right: auto;
        margin-left: 2em;
    }

    body#page-po #header .header-mobile .box .botton-entrar a:hover {
        background: #000000;
        color: #08FFAC;
    }

    body#page-po #header .header-mobile .box .botton-entrar a {
        width: 127px;
        height: 37px;
        border: 2px solid #08FFAC;
        background: #08FFAC;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        font-size: 12px;
        line-height: 14px;
        color: #000000;
        text-decoration: none;
        transition: all 0.3s;
    }

    body#page-po #header .header-mobile .box .menu-itens-mob.show-menu {
        left: 0 !important;
    }

    body#page-po #header .header-mobile .box .menu-itens-mob {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        background: rgba(0, 0, 0, 0.5);
        left: -50em;
        transition: 0.5s all;
    }

    body#page-po #header .header-mobile .box .menu-itens-mob .close-btn-mob-menu {
        position: absolute;
        right: 18%;
        top: 10px;
    }

    body#page-po #header .header-mobile .box .menu-itens-mob .close-btn-mob-menu i {
        color: #08FFAC;
        font-size: 20px;
    }

    body#page-po #header .header-mobile .box .menu-itens-mob .box-all-menu {
        height: 100%;
        background: #000000;
        width: 85%;
        padding-top: 25px;
        padding-left: 25px;
        border-right: 1px solid #5c5c5c;
        border-top-right-radius: 8px;
    }

    body#page-po #header .header-mobile .box .menu-itens-mob .box-all-menu .itens a {
        font-weight: 400;
        font-size: 20px;
        line-height: 52px;
        color: #08FFAC;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #08FFAC;
        margin-right: 45px;
        padding-right: 9px;
    }

    body#page-po #header .header-mobile .box .menu-itens-mob .box-all-menu .itens i {
        font-size: 10px;
    }

    body#page-po #header .modal-cad .box-cad {
        padding: 1em 2em !important;
    }

    body#page-po #header .modal-cad .box-cad #formEmail {
        max-height: 500px;
        overflow: auto;
    }

    body#page-po #header .modal-cad .box-cad #formEmail .first {
        flex-direction: column;
    }

    body#page-po #header .modal-cad .box-cad #formEmail .first .box {
        width: 97% !important;
    }

    body#page-po #header .modal-cad .box-cad #formEmail .first .box label {
        font-size: 11px !important;
        margin-top: 7px !important;
    }

    body#page-po #header .modal-cad .box-cad #formEmail .first .box input,
    body#page-po #header .modal-cad .box-cad #formEmail .first .box select {
        font-size: 10px !important;
        height: 38px !important;
    }

    body#page-po #header .modal-cad .box-cad #formEmail .first .box textarea {
        font-size: 10px !important;
    }

    body#page-po .first .box-img-texts-btn .img img {
        width: 100%;
        height: auto;
    }

    body#page-po .first .box-img-texts-btn .texts-btn-mobile {
        padding: 40px 30px;
    }

    body#page-po .first .box-img-texts-btn .texts-btn-mobile .texts .title {
        font-weight: 800;
        font-size: 30px;
        line-height: 36px;
        color: #000000;
    }

    body#page-po .first .box-img-texts-btn .texts-btn-mobile .texts .text {
        font-weight: 400;
        font-size: 14px;
        line-height: 27px;
        color: #000000;
        text-align: justify;
    }

    body#page-po .first .box-img-texts-btn .texts-btn-mobile .button a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 50px;
        background: #000000;
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        text-align: center;
        color: #FFFFFF;
        text-decoration: none;
        transition: all 0.3s;
        border-radius: 6px;
        margin-top: 1.5em;
    }

    body#page-po .second .box {
        gap: 2em !important;
        flex-direction: column-reverse;
        margin: 1em auto !important;
    }

    body#page-po .second .box .texts-btn-svg .texts .title {
        font-size: 30px !important;
        line-height: 36px !important;
        max-width: 200px !important;
    }

    body#page-po .second .box .texts-btn-svg .texts .text {
        font-size: 14px !important;
        line-height: 25px !important;
        text-align: justify;
    }

    body#page-po .third .box {
        flex-direction: column;
    }

    body#page-po .third .box .video {
        background-image: url("./imagens/background-video-mobile.png") !important;
        height: auto !important;
    }

    body#page-po .third .box .video video {
        position: inherit !important;
        margin: auto !important;
        width: 85% !important;
        margin-top: 3em !important;
    }

    body#page-po .third .box .texts-btn-svg {
        margin-top: 2em;
        padding: 0px 30px;
    }

    body#page-po .third .box .texts-btn-svg .texts {
        margin-top: 1em;
    }

    body#page-po .third .box .texts-btn-svg .texts .title {
        font-size: 30px !important;
        line-height: 36px !important;
        max-width: 325px;
    }

    body#page-po .third .box .texts-btn-svg .texts .text {
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 25px !important;
        text-align: justify;
    }

    body#page-po .third .box .texts-btn-svg .button a {
        width: 100% !important;
    }

    body#page-po .third .box .video,
    body#page-po .third .box .texts-btn-svg {
        width: 100% !important;
    }

    body#page-po .four {
        margin-top: 0px !important;
    }

    body#page-po .four h2.title {
        font-size: 32px !important;
        line-height: 35px !important;
        max-width: 85% !important;
        margin: auto !important;
        margin-bottom: 30px !important;
    }

    body#page-po .four .box-trip-mobile .img img {
        width: 100%;
        height: auto;
    }

    body#page-po .four .box-trip-mobile .slick-points {
        padding: 60px 35px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 10em;
    }

    body#page-po .four .box-trip-mobile .slick-points #slick .item.item.active {
        opacity: 1 !important;
    }

    body#page-po .four .box-trip-mobile .slick-points #slick .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        cursor: pointer;
        position: absolute;
        z-index: 1;
        opacity: 0;
        transition: all 0.5s;
        width: 100%;
        left: 0;
        margin-top: -5.5em;
    }

    body#page-po .four .box-trip-mobile .slick-points #slick .item .box-text::after {
        content: "";
        position: absolute;
        top: -10px;
        width: 20px;
        height: 20px;
        border: solid transparent;
        border-width: 0 0 2px 2px;
        transform: rotate(314deg);
        background: #FFFFFF;
        border-top: 2px solid #ebebeb;
        border-right: 2px solid #ebebeb;
    }

    body#page-po .four .box-trip-mobile .slick-points #slick .item .box-text {
        position: absolute;
        max-width: 85%;
        bottom: -10em;
        font-weight: 400;
        font-size: 13px;
        line-height: 15px;
        text-align: center;
        color: #000000;
        background: #FFFFFF;
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 0px 0px 8px -2px #939393;
        transition: all 0.5s;
        display: flex;
        justify-content: center;
        align-items: end;
    }

    body#page-po .four .box-trip-mobile .slick-points #slick .item .point {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 21px;
        line-height: 25px;
        max-width: 45%;
        text-transform: uppercase;
        color: #000000;
        gap: 8px;
    }

    body#page-po .four .box-trip-mobile .slick-points #slick .item .point svg {
        width: 55px;
        height: auto;
    }

    body#page-po .four .box-trip-mobile .slick-points #arrow-back,
    body#page-po .four .box-trip-mobile .slick-points #arrow-next {
        position: relative;
        z-index: 10;
    }

    body#page-po .five {
        background: #000000 !important;
        padding-bottom: 1em !important;
    }

    body#page-po .five .box .box {
        padding: 0px 30px !important;
        padding-top: 2em !important;
        padding-right: 0px !important;
        flex-direction: column;
    }

    body#page-po #page .five .box h2 {
        font-size: 35px;
        line-height: 37px;
    }

    body#page-po .five .box .box .box-left {
        width: 100% !important;
    }

    body#page-po .five .box .box .box-tec-seg {
        margin-top: 1em;
    }

    body#page-po .five .box .box .box-tec-seg .slick-initialized .slick-slide {
        margin: 10px 20px;
    }

    body#page-po .five .box .box .box-tec-seg .slick-box {
        display: flex;
        align-items: baseline;
        justify-content: center;
        flex-direction: column;
    }

    body#page-po .five .box .box .box-tec-seg .slick-box .item {
        gap: 1em;
        display: flex !important;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        margin-left: -40px;
    }

    body#page-po .five .box .box .box-tec-seg .slick-box .item .svg-box {
        width: 70px;
        height: 70px;
        background: #08FFAC;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

    body#page-po .five .box .box .box-tec-seg .slick-box .item span {
        font-weight: 400;
        font-size: 13px;
        line-height: 18px;
        color: #FFFFFF;
    }

    body#page-po .five .box .box .box-tec-seg .slick-list {
        max-width: 100%;
    }

    body#page-po .five .box .box .box-tec-seg .slick-dots {
        list-style: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 1em;
    }

    body#page-po .five .box .box .box-tec-seg .slick-dots li.slick-active button {
        width: 30px;
        border-radius: 8px;
    }

    body#page-po .five .box .box .box-tec-seg .slick-dots li button {
        font-size: 0;
        border: 0;
        width: 8px;
        height: 8px;
        background: #08FFAC;
        border-radius: 50%;
        padding: 0;
        transition: all 0.5s;
        outline: 0;
    }

    body#page-po .six h2.title {
        font-size: 32px !important;
        line-height: 35px !important;
        max-width: 85% !important;
        margin: auto !important;
    }

    body#page-po .six .box .box-clintes-mobile {
        margin-top: 3em;
    }

    body#page-po .six .box .box-clintes-mobile .selection {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 3em;
        padding: 0px 20px;
    }

    body#page-po .six .box .box-clintes-mobile .selection .sino img {
        width: 80% !important;
    }

    body#page-po .six .box .box-clintes-mobile .selection .item {
        width: 33.33%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        flex-direction: column;
    }

    body#page-po .six .box .box-clintes-mobile .selection .item img {
        width: 60%;
        height: auto;
    }

    body#page-po .six .box .box-clintes-mobile .selection .item .barra {
        display: none !important;
    }

    body#page-po .six .box .box-clintes-mobile .slick-list {
        max-width: 100%;
    }

    body#page-po .six .box .box-clintes-mobile .box-itens .item {
        display: flex !important;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1em;
        background: #FFFFFF;
        border-radius: 16px;
        box-shadow: 0px 0px 7px 0px #e9e9e9;
        padding: 55px 30px;
        margin-left: -20px;
    }

    body#page-po .six .box .box-clintes-mobile .box-itens .item h3 {
        font-size: 14px;
        line-height: 16px;
        text-align: center;
        color: #000000;
    }

    body#page-po .six .box .box-clintes-mobile .slick-initialized .slick-slide {
        margin: 10px 20px;
    }

    body#page-po .six .box .box-clintes-mobile .slick-dots {
        list-style: none;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 1em;
        padding: 0px 40px;
    }

    body#page-po .six .box .box-clintes-mobile .slick-dots li.slick-active button {
        width: 30px;
        border-radius: 8px;
        background: #000000;
    }

    body#page-po .six .box .box-clintes-mobile .slick-dots li button {
        font-size: 0;
        border: 0;
        width: 8px;
        height: 8px;
        background: #acacac;
        border-radius: 50%;
        padding: 0;
        transition: all 0.5s;
        outline: 0;
    }

    body#page-po .sect {
        max-width: 100%;
        overflow: hidden;
    }

    body#page-po #footer h2.title {
        font-size: 32px !important;
        line-height: 35px !important;
        max-width: 85% !important;
        margin: auto !important;
    }

    body#page-po #footer .widget_block {
        width: 70% !important;
    }

    body#page-po #footer .widget_block .wp-block-tnp-minimal {
        width: 100%;
    }

    body#page-po #footer .widget_block .wp-block-tnp-minimal form {
        gap: 2em !important;
        flex-direction: column !important;
        padding: 0px !important;
    }

    body#page-po #footer .widget_block .wp-block-tnp-minimal form .tnp-email,
    body#page-po #footer .widget_block .wp-block-tnp-minimal form .tnp-submit {
        width: 100% !important;
        margin: 0 !important;
    }

    body#page-po #footer .form {
        width: 100%;
    }

    body#page-po #footer .form #contato {
        gap: 2em;
        flex-direction: column;
        padding: 0px 35px;
    }

    body#page-po #footer .form #contato input,
    body#page-po #footer .form #contato button {
        width: 100% !important;
        margin: 0 !important;
    }

    body#page-po #footer .info-contato {
        flex-direction: column;
        text-align: center;
        gap: 2em !important;
    }
}