html,
body {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Futura PT", sans-serif;
}

main {
    position: relative;
    width: 100%;
}

:root {
    --h1: 3.75rem;
    --h2: 3.5rem;
    --h3: 2.75rem;
    --h4: 1.95rem;
    --h5: 1.5rem;
    --h6: 1.25rem;
    --p: 1.35rem;
    --a: 1.25rem;
    --background: #121313;
    --black: #616154;
    --blue: #70a2bb;
    --orange: #eb6625;
    --light: #f7f4e0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: .85;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0.5em;
    letter-spacing: -.05em;
}

h1 {
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}

h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

h5 {
    font-size: var(--h5);
}

h6 {
    font-size: var(--h6);
}

p {
    font-size: var(--p);
    font-weight: 400;
    margin-bottom: 0.5em;
    letter-spacing: -.015em;
    line-height: 1;
}

strong {
    font-weight: 800;
}

a {
    font-size: var(--a);
    font-weight: 400;
    letter-spacing: -.015em;
    line-height: 1;
    text-decoration: none;
    color: inherit;
}

.btn {
    font-size: var(--a);
    padding: 0.5em 2em;
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    border-radius: 50px;
    gap: 0.5em;
    border: none !important;
    transition: all 0.3s ease;
}

.btn-orange {
    background: var(--orange);
    color: white;
}

.btn-orange:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(235, 102, 37, 0.4);
}

.btn-blue {
    background: var(--blue);
    color: white;
}

.btn-blue:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(112, 162, 187, 0.4);
}

.text-orange,
.strong-orange strong {
    color: var(--orange);
}


.py-50 {
    padding-top: 3.125em;
    padding-bottom: 3.125em;
}

.pt-50 {
    padding-top: 3.125em;
}

.pb-50 {
    padding-bottom: 3.125em;
}

.py-100 {
    padding-top: 6.25em;
    padding-bottom: 6.25em;
}

.pt-100 {
    padding-top: 6.25em;
}

.pb-100 {
    padding-bottom: 6.25em;
}

.pt-150 {
    padding-top: 9.375em;
}

.pb-150 {
    padding-bottom: 9.375em;
}

.py-150 {
    padding-top: 9.375em;
    padding-bottom: 9.375em;
}

.pt-200 {
    padding-top: 12.5em;
}

.pb-200 {
    padding-bottom: 12.5em;
}

.pt-250 {
    padding-top: 15.625em;
}

.pb-250 {
    padding-bottom: 15.625em;
}

.pt-300 {
    padding-top: 18.75em;
}

.pb-300 {
    padding-bottom: 18.75em;
}

.pt-350 {
    padding-top: 21.875em;
}

.pt-400 {
    padding-top: 25em;
}

.icon {
    position: relative;
    width: 2em;
    height: 2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-blue {
    background: var(--blue);
    color: white;
}

.icon::after {
    content: "";
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 1em;
}

.ic-chat::after {
    background: url(assets/img/ic/ic-conversation.svg) no-repeat center center;
    background-size: contain;
}

.ic-location::after {
    background: url(assets/img/ic/ic-location.svg) no-repeat center center;
    background-size: contain;
}

.ic-warehouse::after {
    background: url(assets/img/ic/ic-warehouse.svg) no-repeat center center;
    background-size: contain;
}

.ic-satellite::after {
    background: url(assets/img/ic/ic-satellite.svg) no-repeat center center;
    background-size: contain;
}

.ic-doc::after {
    background: url(assets/img/ic/ic-document.svg) no-repeat center center;
    background-size: contain;
}

.ic-relatorio::after {
    background: url(assets/img/ic/ic-docs.svg) no-repeat center center;
    background-size: contain;
}

.ic-system::after {
    background: url(assets/img/ic/ic-manage.svg) no-repeat center center;
    background-size: contain;
}

.ic-hand::after {
    background: url(assets/img/ic/ic-hand.svg) no-repeat center center;
    background-size: contain;
}

.ic-loc::after {
    background: url(assets/img/ic/ic-pin.svg) no-repeat center center;
    background-size: contain;
}

.ic-brazil::after {
    background: url(assets/img/ic/ic-brazil.svg) no-repeat center center;
    background-size: contain;
}

.ic-people::after {
    background: url(assets/img/ic/ic-people.svg) no-repeat center center;
    background-size: contain;
}

.ic-target::after {
    background: url(assets/img/ic/ic-target.svg) no-repeat center center;
    background-size: contain;
}

.ic-graph::after {
    background: url(assets/img/ic/ic-graph.svg) no-repeat center center;
    background-size: contain;
}

.ic-connect::after {
    background: url(assets/img/ic/ic-connect.svg) no-repeat center center;
    background-size: contain;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.p-banner p,
.p-banner ul li {
    font-size: calc(var(--p) * 1.25);
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    font-size: var(--p);
}

ul li::before {
    content: '>';
    font-size: inherit;
    color: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/** Header **/

.header-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    color: white;
}

.header-container nav {
    display: flex;
    gap: 2em;
    width: 100%;
    justify-content: right;
    padding: 3em 2.5em;
}

.header-container nav .nav-logo {
    width: 12.5em;
    margin-right: auto;
    max-width: 250px;
}

.header-container nav ul {
    display: flex;
    gap: 2em;
    list-style: none;
    align-items: center;
}

.header-container nav ul li::before {
    content: none;
}

/** Banner **/

.section-banner {
    position: relative;
    z-index: 1;
    background: var(--background);
    color: var(--light);
    width: 100%;
    max-width: 100vw;
    height: calc(100% + 1px);
    min-height: 100vh;
    margin-bottom: -1px;
    display: flex;
    align-items: end;

}

.section-banner h1 {
    font-size: calc(var(--h1) * 1.45);
}

.section-banner p {
    font-size: calc(var(--p) * 1.25);
}

.section-banner .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    mask-image: linear-gradient(to top, transparent 0%, black 50%);
}

.section-banner .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

/**** SEÇÃO TRABALHADOR ****/

.section-worker {
    background: var(--background);
    color: var(--light);
    position: relative;
}

.grad-bg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: calc(100% + 1px);
    z-index: 0;
    pointer-events: none;
}

.olive-grad {
    background: radial-gradient(closest-side, #616154, transparent);
}

.el-worker-container .grad-bg {
    width: 40em;
    height: 40em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
}

.section-worker .el-worker-img {
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-bottom: -60px;
}

.years-experience span {
    font-size: calc(var(--h2) * 2.95);
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -.05em;
    line-height: .75;
    position: relative;
    margin-left: -.15em;
}

.years-experience p {
    font-size: calc(var(--p) * 1.45);
    margin-bottom: 0;
}

.experience-txt {
    font-size: calc(var(--p) * 1.25);
    margin-right: 30%;
}

.border-box-container {
    position: relative;
    background: linear-gradient(180deg, #5a5a4e, #3c3c35);
    padding: 2em;
    border-radius: 20px;
    z-index: 1;
}

.border-box-container::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #5a5a4e;
    border-radius: 25px;
    z-index: -1;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    z-index: 0;
    pointer-events: none;
}

.border-box-container span {
    font-size: calc(var(--h2) * 1.5);
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -.05em;
    line-height: .75;
}

.border-box-container h5 {
    margin-bottom: 0;
}

.truck-sticky-container {
    display: block;
    z-index: 2;
}

.el-truck {
    width: 130%;
    margin-left: -20%;
    pointer-events: none;
}

.services-list h2 {
    margin-right: 35%;
    margin-bottom: 1.5em;
}

.services-list h2 strong {
    color: var(--orange);
}

.services-list .btn {
    margin-top: 1em;
}

.services-list p {
    font-size: calc(var(--p) * 1.05);
    padding-right: 15%;
}

.section-map {
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.el-pins {
    position: absolute;
    top: 5%;
    left: 8%;
    width: 93%;
    height: 100%;
    object-fit: contain;
    object-position: top left;
    z-index: 1;
}

.pin-detail-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5em 1em;
    align-items: center;
    margin: 1em 0;
    padding-right: 2em;
}

.section-map p {
    font-size: calc(var(--p) * 1.25);
}

.pin-detail-container .border-container {
    border: 1px solid var(--black);
    padding: 1em 2em;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1em;
}

.pin-detail-container .border-container h4 {
    margin-bottom: 0;
}

.quote-container {
    position: relative;
    z-index: 1;
    width: 75%;
    margin: 0 auto;
    margin-top: 2em;
    padding: 1em 2em;
}

.quote-container::before {
    content: '“';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5em;
    color: var(--orange);
    line-height: 0.75;
}

.quote-container::after {
    content: '”';
    position: absolute;
    bottom: -.5em;
    right: 0;
    font-size: 5em;
    color: var(--orange);
    line-height: 0.75;
}

.quote-container p {
    font-size: calc(var(--p) * 1.2);
    color: var(--black);
    margin-bottom: 0;
}

.pin {
    position: relative;
    z-index: 1;
    width: 4em;
    height: 4em;
}

.pin::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 100%;
    height: 100%;
    opacity: .7;
    z-index: 0;
}

.pin-red::after {
    background: url(assets/img/ic/ic-pin-red.svg) no-repeat center center;
    background-size: contain;
}

.pin-red::before {
    background: radial-gradient(closest-side, #eb6725a0 0%, transparent 100%);
}

.pin-blue::after {
    background: url(assets/img/ic/ic-pin-blue.svg) no-repeat center center;
    background-size: contain;
}

.pin-blue::before {
    background: radial-gradient(closest-side, #70a2bb 0%, transparent 100%);
}

.pin-yellow::after {
    background: url(assets/img/ic/ic-pin-yellow.svg) no-repeat center center;
    background-size: contain;
}

.pin-yellow::before {
    background: radial-gradient(closest-side, #ea5a2574 0%, transparent 100%);
}

.light-bg {
    background: var(--light);
    color: var(--black);
}

.solutions-bg.light-bg {
    width: 100%;
    height: 65%;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 0;
}

lite-youtube {
    --lite-youtube-aspect-ratio: 16 / 9;
    --lite-youtube-frame-shadow-visible: no;
    border-radius: 30px;
    margin-bottom: 2em;
}

lite-youtube::part(playButton) {
    display: none;
}

lite-youtube img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.video-container p {
    font-size: calc(var(--p) * 1.25);
    color: var(--black);
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.path-bg {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 50%;
    background: url(assets/img/el/el-orange-path.svg) no-repeat center center;
    background-size: cover;
    z-index: 0;
}

/**** SEÇÃO WHY ****/

.bg-dark-no-grad {
    background: var(--background);
    color: var(--light);
}

.bg-dark {
    background: linear-gradient(90deg, #616154, #121313);
    color: var(--light);
}

.section-why h2 {
    font-size: calc(var(--h2) * 1.5);
}

.section-why .img-container {
    position: relative;
    width: 100%;
    height: calc(44em + 20%);
    margin-top: -15%;
    margin-bottom: -20%;
    overflow: hidden;
}

.section-why .img-container img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-position: top right;
    z-index: 1;
}

.orange-line {
    position: relative;
    width: 100%;
    height: 38em;
    overflow: hidden;
    margin-top: 15%;
}

.orange-line:after {
    content: '';
    position: absolute;
    left: 15%;
    bottom: 0;
    width: 100em;
    height: 100em;
    border: solid 15em var(--orange);
    border-radius: 50%;
}

.section-why .icon {
    width: 5em;
    height: 5em;
    background: var(--blue);
    border-radius: 50%;
}

.section-why .icon::after {
    margin: 1.2em;
}

.section-why .icon:hover {
    box-shadow: 0 5px 15px rgba(112, 162, 187, 0.4);
}

.section-why .icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: .7;
    z-index: 0;
    background: radial-gradient(closest-side, #70a2bb 0%, transparent 100%);
    transition: all 0.3s ease;
}

.section-why .icon:hover::before {
    width: 8em;
    height: 8em;
}

.pe-lg-50 {
    padding-right: 8em;
}

/**** SEÇÃO TECNOLOGIA ****/

.section-technology {
    background: linear-gradient(180deg, #70a2bb, #547889);
    color: white;
}

.section-technology::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0px 180px 100vw;
    border-color: transparent transparent #70a2bb transparent;
    transform: rotate(0deg);
    position: absolute;
    top: -180px;
    left: 0;
}

.angle-bg::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0px 80px 100vw;
    position: absolute;
    transform: scaleX(-1);
    top: -80px;
    left: 0;
}

.angle-bg.light-bg::before {
    border-color: transparent transparent var(--light) transparent;
}


.angle-bg.inverted {
    transform: none;
}

.angle-bg.section-technology {
    border-color: transparent transparent var(--blue) transparent;
}


.section-technology .icon {
    width: 4em;
    height: 4em;
    background: var(--background);
    border-radius: 50%;
}

.section-technology p {
    font-size: calc(var(--p) * 1.25);
}

.el-laptop {
    position: relative;
    z-index: 1;
    margin-top: -18em;
    margin-left: -5em;
}

.fixed-btns-container {
    position: fixed;
    bottom: 1em;
    right: 1em;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    gap: .5em;
    z-index: 1000;
}

.fixed-btns-container .icon {
    width: fit-content;
    height: 50px;
    background: #616154;
    border-radius: 100px;
    overflow: hidden;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: start;
}

.fixed-btns-container .ic-whatsapp {
    background: #31dd31;
}

.fixed-btns-container .icon::after {
    content: none;
}

.fixed-btns-container .icon::before {
    content: '';
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin: 10px;
}

.fixed-btns-container .ic-boleto::before {
    background: url(assets/img/ic/ic-bar.svg) no-repeat center center;
    background-size: contain;
}

.fixed-btns-container .ic-rastreio::before {
    background: url(assets/img/ic/ic-rastreio.svg) no-repeat center center;
    background-size: contain;
}

.fixed-btns-container .ic-cotacao::before {
    background: url(assets/img/ic/ic-pay.svg) no-repeat center center;
    background-size: contain;
}

.fixed-btns-container .ic-coleta::before {
    background: url(assets/img/ic/ic-truck.svg) no-repeat center center;
    background-size: contain;
}

.fixed-btns-container .ic-whatsapp::before {
    background: url(assets/img/ic/ic-whatsapp.svg) no-repeat center center;
    background-size: contain;
}

.fixed-btns-container .ic-whatsapp.active {
    width: fit-content;
}

.fixed-btns-container .icon p {
    opacity: 0;
    margin-bottom: 0;
    color: white;
    padding: .5em 0;
    padding-right: 1em;
    font-size: var(--a);
    display: block;
}

/* Responsive 

.fixed-btns-container .icon:hover p {
    opacity: 1;
    font-size: var(--a);
}

*/

.steps-list span {
    font-size: calc(var(--h2) * 1.5);
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -.05em;
    line-height: .75;
}

.steps-list h3 {
    margin-bottom: 0;
}

.w-fit {
    width: fit-content;
}

.gallery-container {
    display: flex;
    gap: 5em;
    justify-content: center;
    padding: 5em 0;
    align-items: center;
    justify-items: center;
}

.gallery-container img {
    max-width: 35em;
    width: 100%;
    height: auto;
}

.gallery-container img:nth-child(1) {
    transform: rotate(4deg);
}

.gallery-container img:nth-child(2) {
    max-width: 40em;
    transform: rotate(-4deg);
}

.gallery-container img:nth-child(3) {
    transform: rotate(4deg);
}

.intern-banner {
    min-height: 100%;
    max-height: 100%;
}

.grad-light {
    background: radial-gradient(circle, #616154 0%, #61615400 50%);
}

.intern-banner .grad-light {
    top: -20em;
    height: calc(100% + 20em + 1px);
}

.truck-2 {
    position: relative;
    z-index: 1;
    margin-bottom: -10em;
}

.scroll-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5em;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.el-sobre-bg-container {
    mask-image: linear-gradient(to top, transparent 0%, black 50%);
}

.el-sobre-bg {
    mask-image: linear-gradient(to right, transparent 0%, black 50%);
}

.el-grid-sobre {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
}

.el-grid-sobre img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

.about-section .icon {
    width: 5em;
    height: 5em;
    padding: .5em;
}

.about-section strong {
    font-weight: inherit;
    color: var(--orange);
}

.el-circle-wrapper {
    position: absolute;
    z-index: -1;
    width: 55vw;
    height: 40em;
    overflow: hidden;
    top: -40em;
    right: 0;

}

.el-logo-bg {
    content: '';
    position: absolute;
    left: 0;
    top: -0;
    width: 100em;
    height: 100em;
    border: solid 15em var(--orange);
    border-radius: 50%;
}

.tab-item {
    padding: 1em 0;
    border-bottom: 1px solid var(--black);
}

.tab-item :last-child {
    border-bottom: none;
}

.tab-item p:last-child {
    margin-bottom: 0;
}

.tab-header {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.tab-header::after {
    content: '';
    display: block;
    position: relative;
    width: 1.5em;
    height: 1.5em;
    background: url(assets/img/ic/ic-arrow.svg) no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.tab-item.active .tab-header::after {
    transform: rotate(180deg);
}

.tab-header h5 {
    margin-bottom: 0;
}

.tab-item .tab-content {
    display: none;
    margin-top: 1em;
}

.tab-item.active .tab-content {
    display: block;
}

.pin-detail-container.intern {
    grid-template-columns: repeat(3, 1fr);
    padding-right: 0;
}

.pin-detail-container.intern .pin {
    width: 2em;
    height: 2em;
}

.pin-detail-container.intern h4 {
    font-size: var(--h5);
}

.pin-detail-container.intern .border-container {
    padding: .75em .5em;
    align-items: center;
}

.pin-detail-container.intern p {
    padding: 0 .5em;
}

.licences-section {
    margin-top: -15em;
}

.work-list {
    list-style: none;
    padding-left: 0;
}

.work-list li:before {
    content: none;
}

.work-list .icon {
    width: 3.5em;
    height: 3.5em;
}

.work-list .icon::after {
    margin: .35em;
}

.el-logo-simbol {
    position: absolute;
    bottom: -1.5em;
    left: -14.5em;
    width: 70%;
    height: 90%;
    background: url(assets/img/el/el-logo-simbol.svg) no-repeat bottom left;
    background-size: cover;
    z-index: 0;
}

.el-work-img img {
    max-width: 600px;
    height: 100%;
    object-position: bottom center;
}

.work-banner-title h1 {
    font-size: calc(var(--h1) * 1.05);
}

form {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    flex-wrap: wrap;
}

form .form-control {
    padding: .5em 1em;
    border: 1px solid var(--orange);
    border-radius: 12px;
    font-size: var(--p);
    background: transparent;
}

form input.form-control {
    flex: 40%;
}

input[type="file"] {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
    font-size: var(--p);
    padding-right: 0;
    color: var(--black);
}

input::placeholder {
    color: var(--black);
    opacity: 1;
}

.form-control:focus {
    background: transparent;
    outline: none;
    border-color: var(--blue);
}



input[type=file]::file-selector-button {
    direction: ltr;
    background-color: var(--orange);
    color: white;
    border: 0px;
    border-radius: 50px;
    padding: .25em .75em;
    transition: .5s;
    margin-left: 25.5vw;
}

.form-white ::placeholder {
    color: var(--light);

}