@charset "utf-8";
/* CSS Document */

/*=== Variables ===*/
:root {
    /*-- Colors --*/
    --color-orange-light:  #FEEDED;
    --color-orange:        #FD2C2D;
    --color-orange-dark:   #BC2F2D;
    --color-gray-light:    #FAFAFA;
    --color-gray:          #E5E5E5;
    --color-gray-dark:     #404040;
    --color-black:         #171717;
    --color-white:         #ffffff;
}



/*=== General ===*/
html {
    overflow-x: hidden !important;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-gray-dark);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
p {
    margin-bottom: 30px;
}
strong {
    font-weight: 800;
}
a {
    color: var(--color-black);
    text-decoration: none;
    transition: all .3s ease;
}
a:hover {
    color: inherit;
}
:focus {
    outline: none;
    border: none;
}
img {
    max-width: 100%;
    height: auto;
}
img.aligncenter {
    margin: 0 auto;
    display: block;
}
img.alignleft, figure.alignleft {
    margin: 0 30px 30px 0;
    float: left;
}
img.alignright, figure.alignright {
    margin: 0  0 30px 30px;
    float: right;
}
img.position-absolute {
    max-width: none;
}
.text-right {
    text-align: right;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--color-black);
}
h1 {
    font-size: 52px;
    line-height: 56px;
    letter-spacing: -1.04px;
}
h2 {
    font-size: 52px;
    line-height: 56px;
    letter-spacing: -1.04px;
}
h3 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
}
h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4px;
}

.padding-tb {
    padding: 64px 0;
}
.padding-t {
    padding-top: 64px;
}
.padding-b {
    padding-bottom: 64px;
}

.margin-tb {
    margin: 64px 0;
}
.margin-t {
    margin-top: 64px;
}
.margin-b {
    margin-bottom: 64px;
}

.color-orange {
    color: var(--color-orange);
}

.button {
    padding: 14px 20px;
    background-color: var(--color-orange);
    color: #fff;
    display: table;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    border-radius: 8px;
    white-space: nowrap;
}
.button.medium {
    font-size: 14px;
    line-height: 16px;
}
.button.small {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 16px;
}
.button.small {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 16px;
}
.button:hover {
    color: var(--color-white);
    background-color: var(--color-orange-dark);
}
.button.bg-orange-light {
    background-color: var(--color-orange-light);
    color: var(--color-orange)
}
.button.bg-orange-light:hover {
    background-color: #FFD4D4;
    color: var(--color-orange-dark);
}
.button.border-orange {
    background-color: var(--color-white);
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
}
.button.border-orange:hover {
    background-color: var(--color-orange-light);
}
.button.border-pb {
    border: 1px solid var(--color-gray);
    color: var(--color-gray-dark);
    background-color: var(--color-white);
}
.button.border-pb:hover {
    background-color: #FAFAFA;
}
.button.arrow-right {
    display: inline-flex;
    align-items: center;
    width: auto;
    gap: 8px;
}
.button.arrow-right:after {
    content: '';
    background: url(../img/ico-arrow-button.svg) center center no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
}
.button.arrow-calendar {
    display: inline-flex;
    align-items: center;
    width: auto;
    gap: 8px;
}
.button.arrow-calendar:after {
    content: '';
    background: url(../img/ico-calendario.svg) center center no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.button.bgwhite {
    background-color: var(--color-white);
    color: var(--color-gray-dark);
}
.button.bgwhite:hover {
    background-color: #f1f1f1;
}
.button.btn-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: auto;
    gap: 8px;
}
.button.btn-whatsapp:after {
    content: '';
    background: url(../img/ico-whatsapp.svg) center center no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
}
.button-arrow-line {
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}
.button-arrow-line span {
    border-bottom: 1px solid;
}

.bg-gray {
    background-color: var(--color-gray-light);
}
.bg-degradee {
    background-color: var(--color-orange);
    background: linear-gradient(96deg, #7F00A0 0%, #FD2C2D 50%, #FF900C 99.99%);
}

.figure {
    aspect-ratio: 1;
    overflow: hidden;
    width: 100%;
}
.figure:hover figure {
    transform: scale(1.05);
}
/* figure {
    height: 100%;
    position: relative;
    transition: transform .3s ease-out;
    width: 100%;
    overflow: hidden;
}
figure img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
} */

.title span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-orange);
    text-transform:  uppercase;
    margin-bottom: 12px;
    display: block;
}
.title h2 {
    margin-bottom: 24px;
}
.title h2 strong {
    color: var(--color-orange);
}

.title-gray span {
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: #737373;
    text-transform:  uppercase;
    margin-bottom: 12px;
    display: block;
}

.title.bord span {
    padding-top: 12px;
    border-top: 1px solid var(--color-orange);
}

.owl-carousel .owl-item img {
    width: auto;
}


/*=== Header ===*/
header {
    background-color: var(--color-white);
    width: 100%;
    position: absolute;
}
header.fix {
    position: fixed;
    z-index: 10;
    transform: translateY(-100%);
    transition: transform .3s ease;
}
header.fix.active {
    transform: translateY(0);
}
header .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
    border-bottom: 1px solid var(--color-gray);
}
header .top .left {
    display: flex;
    gap: 33px;
    align-items: center;
}
header .top .left .social {
    display: flex;
    align-items: center;
    gap: 16px;
}
header .top .left .social a {
    filter: brightness(0);
    opacity: .8;
}
header .top .left .social a:hover {
    filter: none;
    opacity: 1;
}
header .navbar-expand-lg  {
    padding: 0;
    gap: 64px ;
}
header .top .right {
    display: flex;
    align-items: center;
    gap: 24px;
}
header .top .right a.button-top {
    padding: 14px 10px;
    line-height: 18px;
    font-weight: 700;
}
header .top .right a.button-top:hover {
    color: var(--color-orange-dark);

}

header .navbar-brand {
    padding-top: 0;
    padding-bottom: 8px;
}
header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 28px 10px;
    font-weight: 600;
    line-height: 18px;
    border-top: 3px solid transparent;
    border-radius: 0;
}
header .navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
    border-color: var(--color-orange);
    background-color: var(--color-orange-light);
}
header .navbar-expand-lg .navbar-nav {
    gap: 24px;
}
header .buttons {
    display: flex;
    align-items: center;
    gap: 24px;
}
header .buttons a {
    font-weight: 700;
}


/* main */
main {
    padding-top: 150px;
}

/* bannerhero */
.bannerhero {
}
.bannerhero .carousel-item {
    overflow: hidden;
    min-height: 500px;
    position: relative;
}
.bannerhero .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}
.bannerhero .carousel-item:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/bg-hero.webp) right top no-repeat;
    position: absolute;
    top: 0;
    z-index: 1;
}
.bannerhero .carousel-item .text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 60px;
}
.bannerhero .carousel-item .text p {
    max-width: 488px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
    display: block;
}
.bannerhero .carousel-item .text span {
    color: var(--color-orange);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block ;
}
.bannerhero .carousel-item .text h1 {
    margin-bottom: 24px;
}

/* map */
.map .content {
    display: flex;
    justify-content: end;
    position: relative;
    margin-top: 80px;
}
.map .content .states {
    position: relative;
}
.map .content .states #brasil {
    width: 800px;
}

.map .content .states .st0 {
    fill: none;
    stroke: #d4d4d4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8px;
}

.map .content .states .uf-hover {
    fill: #a3a3a3;
    cursor: pointer;
}
.map .content .states .uf-hover:hover {
    fill: var(--color-orange);
}

.map .content .states .uf {
    fill: var(--color-gray-light);
}
.map .text {
    position: absolute;
    bottom: 140px;
    left: 0;
    max-width: 422px;
}
.map .text h3 {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray);
}
.map .text h3.f-32 {
    font-size: 32px;
}
.map .text p {
    margin-bottom: 24px;
}
.custom-tooltip {
    --bs-tooltip-bg: var(--color-white);
    --bs-tooltip-color: var(--color-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.popover {
    background-color: var(--color-orange-light);
}
.popover-arrow {
    border-color: var(--color-orange-light);
}
.custom-tooltip .tooltip-inner, .custom-tooltip .popover-body {
    text-align: left;
    padding: 6px 10px;
}
.custom-tooltip span {
    display: block;
    color: #F92C2D;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
}
.custom-tooltip .truck {
    width: 18px;
    height: 18px;
    display: block;
    background: url(../img/ico-transporte.svg) center center no-repeat;
}
.custom-tooltip .user {
    width: 18px;
    height: 18px;
    display: block;
    background: url(../img/ico-user.svg) center center no-repeat;
}
.custom-tooltip .build {
    width: 18px;
    height: 18px;
    display: block;
    background: url(../img/ico-predio.svg) center center no-repeat;
}
.custom-tooltip .icons {
    display: flex;
    gap: 8px;
    align-items: center;
}
.custom-tooltip .icons {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-orange);
    margin-top: 8px;
}
.custom-tooltip .popover-header {
    display: none;
}

/* video */
.video img {
    width: 100%;
}
.video h3 {
    margin-bottom: 45px;
}
.video h3 strong {
    color: var(--color-orange);
}

/* banner-text-image */
.banner-text-image {
    min-height: 496px;
    display: flex;
    align-items: center;
    background-color: var(--color-gray-light);
    background-position: right bottom;
    background-repeat: no-repeat;
}
.banner-text-image p {
    margin-bottom: 40px;
    display: block ;
}

/* list-icon */
.list-icon .title-gray {
    margin-bottom: 64px;
}
.list-icon .row {
    max-width: 800px;
    margin: 0 auto;
}
.list-icon .item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
.list-icon .item .icon {
    background-color: var(--color-orange-light);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list-icon .item p strong {
    color: var(--color-black);
}

/* solutions-block */
.solutions-block .box {
    padding: 80px;
    border-radius: 6px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--color-gray-light);
    display: block;
}
.solutions-block .title {
    margin-bottom: 48px;
}
.solutions-block .box .icon {
    width: 120px;
    height: 120px;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.solutions-block .box h4, .solutions-block .box p {
    margin-bottom: 20px;
}
.solutions-block .box p:last-child {
    margin-bottom: 0;
}
.solutions-block .swiper {
    margin-top: 48px;
    padding: 32px 0px;
    overflow: unset;
}
.solutions-block .swiper .swiper-slide a {
    display: flex;
    width: 100%;
    color: #262626;
    /* min-width: 207px; */
    height: 68px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #F5F5F5;
    border: 1px solid #f5f5f5;
}
.solutions-block .swiper .swiper-slide a:hover {
    background-color: var(--color-orange-light);
    border-color: var(--color-orange);
    color: var(--color-orange);
}
.solutions-block .swiper-wrapper {
    transition-timing-function: linear !important;
}

.solutions-block .box.box1 {
    background-color: #FFFBEB;
}
.solutions-block .box.box1:hover {
    border-color: #FF8428;
    background-color: #FEF3C7;
}
.solutions-block .box.box1 .icon {
    background-color: #FEF3C7;
    transition: all .3s ease;
}
.solutions-block .box.box1:hover .icon {
    background-color: #FDE68A;
}
.solutions-block .box.box1 h4 {
    color: #FF8428;
}
.solutions-block .box.box2 {
    background-color: #FFFFD3;
}
.solutions-block .box.box2:hover {
    border-color: #B3A431;
    background-color: #FFF7BC;
}
.solutions-block .box.box2:hover .icon {
    background-color: #FDE68A;
}
.solutions-block .box.box2 .icon {
    background-color: #FFF7BC;
    transition: all .3s ease;
}
.solutions-block .box.box2 h4 {
    color: #B3A431;
}
.solutions-block .box.box3 {
    background-color: rgb(253, 242, 248);
}
.solutions-block .box.box3:hover {
    border-color: #9D174D;
    background-color: #FCE7F3;
}
.solutions-block .box.box3:hover .icon {
    background-color: #FBCFE8;
}
.solutions-block .box.box3 .icon {
    background-color: #FCE7F3;
    transition: all .3s ease;
}
.solutions-block .box.box3 h4 {
    color: #9D174D;
}
.solutions-block .box.box4 {
    background-color: rgb(245, 243, 255);
}
.solutions-block .box.box4:hover {
    border-color: #7F00A0;
    background-color: #EDE9FE;
}
.solutions-block .box.box4:hover .icon {
    background-color: #DDD6FE;
}
.solutions-block .box.box4 .icon {
    background-color: #EDE9FE;
    transition: all .3s ease;
}
.solutions-block .box.box4 h4 {
    color: #7F00A0;
}

/* tag */
.tag {
    padding: 2px 15px;
    border-radius: 32px;
    display: table;
    font-size: 12px;
}
.tag.institucional {
    background-color: #FEEDED;
    color: var(--color-orange);
}
.tag.institucional:hover {
    background-color: #FFD4D4;
}
.tag.datacenter {
    background-color: #ECFEFF;
    color: #0891B2;
}
.tag.datacenter:hover {
    background-color: #CFFAFE;
}
.tag.seguranca {
    background-color: #F0FDF4;
    color: #16A34A;
}
.tag.seguranca:hover {
    background-color: #DCFCE7;
}
.tag.energia  {
    background-color: #FDF4FF;
    color: #7A0A93;
}
.tag.energia:hover  {
    background-color: #FAE8FF;
}
.tag.fab  {
    background-color: #FAFAFA;
    color: #737373;
}
.tag.fab:hover  {
    background-color: #F5F5F5;
}
.tag.infra  {
    background-color: #FFFBEB;
    color: #FF8428;
}
.tag.infra:hover {
    background-color: #FEF3C7;
}
.img-hover {
    overflow: hidden;
}
.img-hover img {
    transition: all .3s ease;
}
.img-hover:hover img {
    transform: scale(1.1);
}

/* events-featured*/
.events-featured .title {
    margin-bottom: 64px;
}
.events-featured .box {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0px 6px 15px -2px rgba(16, 24, 40, 0.08);
    max-width: 280px;
    margin: 0 auto;
    height: 100%;
}
.events-featured .box .img-hover {
    height: 217px;
    display: block;
}
.events-featured .box .text {
    padding: 32px 24px 24px 24px;
    position: relative;
}
.events-featured .box .tag {
    position: absolute;
    top: -15px;
    left: 24px;
}
.events-featured .box h4 {
    margin-bottom: 9px;
}
.events-featured .box .local {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 17px;
}
.events-featured .box .local:before {
    content: '';
    background: url(../img/ico-local.svg) center center no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
}
.events-featured .box p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 20px;
}
.events-featured .box p strong {
    display: block;
}
.events-featured .box .button {
    white-space: nowrap;
}
.events-featured .button-full {
    width: 100%;
    margin: 64px auto 0;
}

/* numbers-bg */
.numbers-bg .left {
    max-width: 696px;
}
.numbers-bg h3 {
    color: var(--color-white);
    margin-bottom: 16px;
    margin-top: 18px ;
}
.numbers-bg p {
    font-size: 18px;
    line-height: 28px;
    color: var(--color-white);
    margin-bottom: 0;
}

/* numbers-box */
.numbers-box {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: space-between;
    margin-top: 64px;
}

.numbers-box .box {
    background-color: var(--color-white);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    border-radius: 8px;
}
.numbers-box.text-only .box {
    border-radius: 6px;
    border: 1px solid var(--color-gray);
}
.numbers-box .box .icon {
    background-color: var(--color-orange-light);
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.numbers-box .box .counter {
    color: var(--color-black);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 4px;
}
.numbers-box.text-only .box .counter {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-orange)
}
.numbers-box .box p {
    margin-bottom: 0;
    color: #737373;
    font-size: 14px;
    line-height: 20px;
}
.numbers-box.numbers-box.text-only .box p {
    color: var(--color-black);
}

/* numbers-box-icon */
.numbers-box-icon {
    margin-top: 48px;
}
.numbers-box-icon .box {
    padding: 32px;
    border-radius: 6px;
    border: 1px solid var(--color-gray);
}
.numbers-box-icon .box .num-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.numbers-box-icon .box .counter {
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    color: var(--color-orange);
}
.numbers-box-icon .box h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
}
.numbers-box-icon.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

/* cases-featured */
.cases-featured {
    position: relative;
    z-index: 1;
}
.cases-featured .title {
    margin-bottom: 64px;
}
.case-big {
    overflow: hidden;
}
.case-big .img-hover {
    height: 478px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: block;
}
.case-big img {
}
.case-big h4 {
    margin-bottom: 8px;
}
.case-big p {
    margin-bottom: 20px;
}
.case-horizontal {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
}
.case-horizontal:first-child {
    margin-top: 0px;
    padding-top: 0px;
    border: none;
}
.case-horizontal h4 {
    margin-bottom: 18px;
}
.case-horizontal img {
}
.case-horizontal .img-hover {
    border-radius: 8px;
    display: block;
    max-width: 176px;
}

/* partners */
.partners {
    position: relative;
    margin-top: 20px;
}
.partners .bg {
    position: absolute;
    right: 0;
    top: -220px;
    width: auto;
    max-width: 72%;
}
.partners .swiper {
    margin-top: 150px;
}
.partners .swiper .swiper-slide {
    height: 134px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners .swiper-wrapper {
    transition-timing-function: linear !important;
}
hr {
    border:1px solid #E5E5E5;
    opacity: 1;
    height: 0;
}

/* events-featured*/
.blog-featured .title {
    margin-bottom: 64px;
}
.box-post {
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0px 6px 15px -2px rgba(16, 24, 40, 0.08);
    margin: 0 auto;
    height: 100%;
}
.box-post .text {
    padding: 32px 24px 24px 24px;
    position: relative;
}
.box-post .pos-a {
    position: absolute;
    top: -12px;
    left: 24px;
}
.box-post h4 {
    margin-bottom: 8px;
}
.box-post .data {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}
.box-post p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 20px;
}
.box-post .img-hover {
    max-height: 215px;
    display: block;
}

.box-post.box-case .button {
    width: 100%;
    margin-top: 24px;
}

.box-post.post-h {
    display: grid;
    grid-template-columns: 392px 1fr;
    border-radius: 0;
    gap: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--color-gray);
    padding-top: 32px;
    box-shadow: none;
}
.col-lg-12:first-child .box-post.post-h {
    padding-top: 0;
}
.box-post.post-h .pos-a {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 24px;
}
.box-post.post-h .text {
    padding: 0;
}
.box-post.post-h img {
    border-radius: 5px;
}
.box-post.post-h .data {
    justify-content: flex-end !important;
    flex-direction: row-reverse;
}

/* instagram */
.instagram .title {
    margin-bottom: 64px;
}

/* units */
.units .text-center {
    max-width: 798px;
    margin: 0 auto;
}
.units .box {
    width: 384px;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0px 2px 6px 0px rgba(16, 24, 40, 0.06);
    display: block;
}
.units .box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}
.units .box h4 strong {
    color: var(--color-orange);
}
.units .box p {
    margin-bottom: 20px;
    color: #737373;
}
.units .box p:last-child {
    margin-bottom: 0;
}
html.modal-active .modal {
    background: rgba(0, 0, 0, 0.8);
}
.units .swiper {
    overflow: unset;
}
.units .swiper-slide {
    width: 384px;
}

.modal-units .modal-dialog {
    max-width: 1000px;
}
.modal-units .modal-header {
    position: absolute;
    right: -37px;
    top: 8px;
    border: none;
    padding: 0;
}
.modal-units .modal-header .btn-close {
    background-color: var(--color-white);
    opacity: 1;
    width: 16px;
    height: 16px;
    padding: 10px;
}
.modal-units .modal-footer {
    border: none;
}
.units .carousel-control-next, .units .carousel-control-prev {
    width: 10%;
}
.modal-units .modal .carousel-item img {
    border-radius: 5px;
}
.units .unit-slider .carousel-item:before {
    display: none;
}
.modal-units .infos {
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0px 20px 40px -8px rgba(16, 24, 40, 0.10);
    max-width: 630px;
    margin: -100px auto 0;
    position: relative;
    background-color: var(--color-white);
}
.modal-units .infos span {
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.modal-units .infos h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 36px;
}
.modal-units .infos p {
    color: #737373;
}
.modal-units .infos .contacts {
    display: flex;
    align-self: flex-end;
    justify-content: space-between;
}
.modal-units .infos .contacts p {
    margin-bottom: 0;
}
.modal-units .infos .contacts .button {
    align-self: flex-end;
}
html.modal-active {
    overflow: hidden;

}
.units .buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    justify-content: flex-end;
}
.units .swiper-button-next, .units .swiper-button-prev {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
}
.units .swiper-button-next:after {
    content: '';
    background: url(../img/arrow-slider.svg) center center no-repeat;
    width: 48px;
    height: 48px;

}
.units .swiper-button-prev:after {
    background: url(../img/arrow-slider.svg) center center no-repeat;
    content: '';
    width: 48px;
    height: 48px;
    transform: rotate(180deg);
}

/* unit-list-icons */
.unit-list-icons {
    background-color: var(--color-gray-light);
}
.unit-list-icons .title h3 {
    margin-bottom: 16px;
}
.unit-list-icons p {
    color: #737373;
}
.unit-list-icons .photo {
    border-radius: 5px;
}

/* list-icons*/
.list-icons li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 20px;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 32px;
}
.list-icons li .icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* footer */

footer > .container {
    border-top: 1px solid var(--color-gray);
    padding-top: 64px;
}
footer p {
    font-size: 14px;
}
footer .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    justify-content: space-between ;
    padding-bottom: 64px ;
}
footer h4 {
    color: var(--color-black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    border-top:1px solid var(--color-orange);
    display: table;
    padding-top: 2px;
}
footer ul li {
    margin-bottom: 12px;
}
footer ul li a {
    font-size: 14px;
    line-height: 20px;
}
footer .newsletter .container {
    padding: 32px 0 32px;
    border-top: 1px solid var(--color-gray);
}
footer .newsletter p {
    margin-bottom: 0;
}
footer .newsletter p strong {
    text-transform: uppercase;
    color: var(--color-orange);
}
footer .newsletter form {
    display: grid;
    grid-template-columns: 1fr 73px;
    gap: 8px;
    align-items: center;
    width: 100%;
}
footer .newsletter form input[type="text"] {
    height: 36px;
    padding: 0 12px;
    border:1px solid  var(--color-gray);
    border-radius: 4px;
}
footer .newsletter form button {
    border: none;
    height: 36px;
    width: 72px;
    padding: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .bottom {
    background-color: var(--color-gray-light);
    padding-top: 46px;
}
footer .bottom .links {
    margin-top: 32px;
    display: flex;
    gap: 24px;
}
footer .bottom .links a {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #737373;
}
footer .bottom .links a:hover {
    color: var(--color-orange);
}
footer .bottom .links a.button {
    color: var(--color-orange);
}
footer .bottom .text {
    text-align: right;
}
footer .bottom .button.button.btn-whatsapp  {
    margin: 0 0 10px auto;
}
footer .bottom p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}
footer .copy {
    background-color: var(--color-gray-light);
}
footer .copy .container {
    padding: 32px 0;
    border-top: 1px solid var(--color-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% ;
}
footer .copy .social {
    display: flex;
    align-items: center;
    gap: 16px;
}
footer .copy .social a {
    opacity: .5;
    filter: brightness(0);
}
footer .copy .social a:hover {
    opacity: 1;
    filter: none;
}
footer .copy .links {
    display: flex;
    gap: 32px;
    align-items: center;
}
footer .copy .links a {
    font-size: 14px;
}
footer .copy .links a:hover {
    color: var(--color-orange);
}

/* About Us */
.banner-about-us {
    background: url(../img/rectangle.png) right 20px no-repeat;
}

.solutions-end {
    color: var(--color-white);
    background-color: var(--color-orange);
}
.solutions-end h3 {
    font-size: 36px;
    line-height: 44px;
    color: var(--color-white);
}
.solutions-end .icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.solutions-end .icons .box {
    border: 1px solid var(--color-gray);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-radius: 6px;
    color: var(--color-white);
}
.solutions-end .icons .box:hover {
    background-color: var(--color-white);
    color: var(--color-orange);
}
.solutions-end .icons .box p {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;
}
.solutions-end .text-center {
    margin: 48px auto 0;
    max-width: 800px;
}
.solutions-end .text p:last-child, .solutions-end .text-center p:last-child {
    margin-bottom: 0;
}

.truck-anima {
    position: relative;
    padding-top: 150px;
    height: 500px;
    background: url(../img/linha-truck.svg) center -50px/cover no-repeat;
}
.truck-anima h3 {
    max-width: 654px;
    margin: 0 auto;
}
.truck-anima .truck {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 340px;
}
/* unit-slider */
.unit-slider .carousel-item {
    position: relative;
}
.unit-slider .carousel-item:before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
}
.unit-slider .carousel-item img {
    width: 100%;
}
.unit-slider .carousel-item .text {
    position: absolute;
    bottom: 40px;
    z-index: 1;
    color: var(--color-white);
    text-align: center;
    width: 100%;
}
.unit-slider .carousel-item .text h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    color: var(--color-white);
}
.unit-slider .carousel-indicators button {
    height: 10px;
    width: 32px;
    border-radius: 14px;
    border: none;
}
.carousel-control-next-icon {
    background: url(../img/arrow-slider.svg) center center no-repeat;
    background-color: var(--color-white);
    opacity: 1;
    width: 48px;
    height: 48px;
    border-radius: 100px;
}
.carousel-control-prev-icon {
    background: url(../img/arrow-slider.svg) center center no-repeat;
    background-color: var(--color-white);
    opacity: 1;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    transform: rotate(180deg);
}
.carousel-control-next, .carousel-control-prev {
    opacity: 1;
}

/* timeline */
.timeline .bullets {
    position: relative;
    height: 78px;
    margin-top: 40px;
}
.timeline .bullets:before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--color-gray);
    position: absolute;
    top: 43px;
}
.timeline .bullets .swiper-slide {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-black);
}
.timeline .bullets .swiper-slide.swiper-slide-thumb-active span, .timeline .bullets .swiper-slide span:hover {
    border-color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.timeline .bullets .swiper-slide span:before {
    content: '';
    width: 14px;
    height: 14px;
    background-color: var(--color-white);
    transition: all .3s ease;
    border-radius: 100px;

}
.timeline .bullets .swiper-slide.swiper-slide-thumb-active span:before {
    background-color: var(--color-orange);
}
.timeline .bullets .swiper-slide span {
    width: 24px;
    height: 24px;
    border-radius: 100px;
    border: 2px solid var(--color-gray);
    display: block;
    margin: 8px auto 0;
    background-color: var(--color-white);
    position: relative;
    cursor: pointer;
}
.timeline  .swiper-button-next:after, .timeline  .swiper-button-prev:after {
    font-size: 16px;
}
.timeline  .swiper-button-next, .timeline  .swiper-button-prev {
    width: 36px;
    height: 36px;
    background-color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    opacity: 1;
    top: 48px;
}
.timeline  .swiper-button-next {
    right: 0;
}
.timeline  .swiper-button-prev {
    left: 0;
}
.timeline .swiper-button-next.swiper-button-disabled, .timeline .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

.timeline .photos {
    margin-top: 70px;
}
.timeline .photos .box {
    max-width: 800px;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-gray);
    margin: 0 auto;
}
.timeline .photos .box img {
    border-radius: 8px;
}
.timeline .photos .box .date {
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 16px 0;
    display: block;
}
.timeline .photos .box h3 {
    font-size: 28px;
    font-weight: 800;
    line-height: 36px;
    margin-bottom: 16px;
}
.timeline .photos .box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #737373;
}
.timeline .photos .box p:last-child {
    margin-bottom: 0;
}

/* mission */
.mission .title {
    margin-bottom: 48px;
}
.mission .box {
    padding: 32px;
    border-radius: 6px;
    border: 1px solid var(--color-gray);
    margin-top: 35px;
}
.mission .box h3 {
    margin-bottom: 20px;
}
.mission .box p {
    margin-bottom: 0;
}
.mission .img {
    max-width: none;
}
.mission .box h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

/* mosaic */
.mosaic {
    padding-bottom: 10px;
}
.mosaic .grid {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr 1fr 1fr;
    gap: 10px;
    max-width: 1360px;
    margin: 0 auto;
}
.mosaic .grid .item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}
.mosaic .grid .item img {
    display: block;
    border-radius: 8px;
}

/* testimonial */
.testimonial {
    background: linear-gradient(135deg, #7F00A0 0%, #FD2C2D 50%, #FF900C 100%);
}
.testimonial .title {
    margin-bottom: 32px;
}
.testimonial .title span, .testimonial .title h3 {
    color: var(--color-white);
}
.testimonial .carousel-item {
    background-color: var(--color-white);
    padding: 32px 24px;
    border-radius: 6px;
    text-align: center;
}
.testimonial .carousel-item img {
    margin-bottom: 32px;
}
.testimonial .carousel-item p {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    color: var(--color-black);
    line-height: 28px;
}
.testimonial .carousel-item .name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 20px;
}
.testimonial .carousel-item .company {
    font-size: 14px;
    font-weight: 400;
    color: #737373;
    line-height: 20px;
}
.testimonial .carousel {
    max-width: 900px;
    margin: 0 auto;
}
.testimonial .carousel-control-next {
    right: -110px;
}
.testimonial .carousel-control-prev {
    left: -110px;
}

/* time */
.time {
    background-color: var(--color-gray-light);
}
.time  .box {
    padding: 32px 16px 16px 16px;
    border-radius: 12px;
    border: 1px solid var(--color-gray);
    background-color: var(--color-white);
}
.time .box .title {
    margin-bottom: 24px;
    padding-left: 16px;
}
.time .accordion {
    border: none;
}
.time .accordion-item {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--color-gray);
}
.time .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0;
}
.time .accordion-button:not(.collapsed) {
    background: none;
    color: var(--color-black);
    font-weight: 700;
    box-shadow: none;
}
.time .accordion-button {
    font-weight: 500;
    color: var(--color-black)
}
.time .accordion-button:focus {
    box-shadow: none;
}
.time .accordion-body {
    padding-top: 0;
}
.time .accordion-body p {
    color: #737373;
}
.time .accordion-body p a {
    color: var(--color-orange)
}
.time .swiper-slide img.photo {
    border-radius: 5px;
    margin-bottom: 16px;
}
.time .swiper-slide p.name {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-black);
    margin-bottom: 0;
    font-weight: 500;
}
.time .swiper-slide p.cargo {
    font-size: 14px;
    font-weight: 400;
    color: #737373;
    margin-bottom: 16px;
}
.time .swiper-slide a {
    font-size: 14px;
    font-weight: 400;
    color: #737373;
}
.time .swiper-slide .social {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.time .swiper-slide .social a img {
    opacity: .5;
    filter: brightness(0);
}
.time .swiper-button-next, .time .swiper-button-prev {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-color: #FAFAFA;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
}
.time .buttons {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
}
.time .swiper-button-next:after {
    content: '';
    background: url(../img/arrow-slider.svg) center center no-repeat;
    width: 48px;
    height: 48px;

}
.time .swiper-button-prev:after {
    background: url(../img/arrow-slider.svg) center center no-repeat;
    content: '';
    width: 48px;
    height: 48px;
    transform: rotate(180deg);
}

/* default-padrao */
.default-padrao .content {
    padding-top: 18px;
    max-width: 1008px;
    margin: 0 auto;
}
.default-padrao .content img {
    margin-bottom: 30px;
}
.default-padrao .content h2, .default-padrao .content h3, .default-padrao .content h4, .default-padrao .content h5, .default-padrao .content h6 {
    margin-bottom: 30px;
}
.default-padrao .content ul, .default-padrao .content ol {
    padding-left: 30px;
    list-style: outside;
    margin-bottom: 30px;
}
.default-padrao .content ul li, .default-padrao .content ol li {
    margin-bottom: 20px;
}
.default-padrao .content h4 {
    font-size: 24px;
    line-height: 32px;
}
.default-padrao .content h5 {
    font-size: 20px;
    line-height: 28px;
}
.default-padrao .content blockquote {
    margin-bottom: 30px;
    padding-left: 16px;
    border-left: 4px solid var(--color-orange);
    display: table;
}
.default-padrao .content blockquote p {
    margin-bottom: 16px;
}
.default-padrao .content blockquote cite {
    color: #737373;
}
.default-padrao .content .wp-block-pullquote {
    padding: 0;
}
.default-padrao .content mark {
    width: 100%;
    display: block;
    background-color: #FAFAFA;
    padding: 16px;
    margin-bottom: 30px;
}
.default-padrao .content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.default-padrao .content .wp-block-embed__wrapper {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.default-padrao .accordion {
    border: none;
}
.default-padrao .accordion-item {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--color-gray);
}
.default-padrao .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0;
}
.default-padrao .accordion-button:not(.collapsed) {
    background: none;
    color: var(--color-black);
    box-shadow: none;
}
.default-padrao .accordion-button {
    font-weight: 500;
    color: var(--color-black);
}
.default-padrao .accordion-button.check {
    position: relative;
}
.default-padrao .accordion-button span {
    font-size: 12px;
    color: var(--color-orange);
    background-color: var(--color-orange-light);
    padding: 0 10px;
    border-radius: 20px;
    margin-left: 12px;
}
.default-padrao .accordion-button.check:before {
    content: '';
    background: url(../img/ico-check.svg) center center no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 12px;
}
.default-padrao .accordion-button:focus {
    box-shadow: none;
}
.default-padrao .accordion-body {
    padding-top: 0;
}
.default-padrao .accordion-body p {
    color: #737373;
    margin-bottom: 20px;
}
.default-padrao .title h3 {
    margin-bottom: 24px;
}
.default-padrao .img-post {
    width: 100%;
    margin-top: 64px;
    margin-bottom: 48px;
}
.default-padrao .gallery {
    margin-bottom: 30px;
}
.default-padrao .gallery img {
    margin-bottom: 8px;
}
.default-padrao caption {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #737373;
}
.default-padrao .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.default-padrao .gallery-grid img {
    margin-bottom: 0;
}
.default-padrao figure {
    margin-bottom: 30px;
}
.default-padrao .content figure img {
    margin-bottom: 4px;
}
.default-padrao figcaption {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #737373;
}
.default-padrao img {
    border-radius: 5px;
}
.default-padrao .photo-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* breadcrumbs*/
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 4px;
}
.default-padrao .breadcrumbs {
    margin-bottom: 48px;
}
.breadcrumbs a {
    font-size: 14px;
    color: var(--color-gray-dark);
    line-height: 16px;
    display: flex;
    align-items: center;
}
.breadcrumbs span {
    color: var(--color-orange);
    font-size: 14px;
    line-height: 16px;
}
.breadcrumbs a:after {
    content: '';
    background: url(../img/arrow-breadcrumbs.svg) center center no-repeat;
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
}
.breadcrumbs a:first-child:before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(../img/home.svg);
    display: inline-block;
}

/* call-to-action */
.call-to-action {
    background-color: var(--color-gray-light);
    border-bottom: 1px solid var(--color-gray);
    border-top: 1px solid var(--color-gray);

}
.call-to-action .buttons {
    gap: 12px;
    display: flex;
    justify-content: center;
}

/* banner-post */
.banner-post {
    background-color: var(--color-gray-light);
    padding: 64px;
    display: grid;
    grid-template-columns: 364px 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 30px;
}

/* blog-page */
.blog-page .col-lg-4 {
    margin-bottom: 30px;
}
.blog-page .title {
    margin-bottom: 64px;
}
.blog-page .sub-title {
    margin-bottom: 32px;
}
.blog-page .sub-title h5 {
    margin: 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 800;
}
.blog-page .pagination {
    margin-top: 34px;
}

/* cases-page */
.cases-page .col-lg-6 {
    margin-bottom: 30px;
}
.cases-page .sub-title {
    margin-bottom: 32px;
}
.cases-page .sub-title h5 {
    margin: 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 800;
}
.cases-page .pagination {
    margin-top: 34px;
}

/* case-box-page */
.case-box-page {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-gray);
    background-color: #fff;
}
.case-box-page .img-hover {
    border-radius: 5px;
    height: 448px;
    display: block;
}
.case-box-page .company {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--color-orange);
    margin-top: 32px;
    display: block;
}
.case-box-page h3 {
    font-size: 28px;
    font-weight: 800;
    line-height: 36px;
    margin-bottom: 8px;
}
.case-box-page p {
    color: #737373;
    font-weight: 400;
}
.case-box-page .date {
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: 24px;
}

/* Pagination */
.pagination {
    gap: 8px;
}
.pagination .page-link {
    font-size: 14px;
    line-height: 20px;
    color: #262626;
    border-radius: 4px;
    border: 1px solid var(--color-gray);
    min-width: 36px;
    height: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.pagination .active .page-link, .pagination .page-link:hover {
    background-color: var(--color-orange);
    color: #fff;
}
.pagination li:first-child a:before {
    content: '';
    width: 16px;
    height: 16px;
    background: url(../img/ico-arrow.svg) no-repeat;
    display: inline-block;
    transform: rotate(-180deg);
}
.pagination li:first-child a:hover:before, .pagination li:last-child a:hover:after {
    filter: invert(1);
}
.pagination li:last-child a:after {
    content: '';
    width: 16px;
    height: 16px;
    background: url(../img/ico-arrow.svg) no-repeat;
    display: inline-block;
}

/* blog-featured-carousel */
.blog-featured-carousel {
    margin-bottom: 64px;
    position: relative;
}
.blog-featured-carousel .box {
    width: 100%;
    max-width: 598px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 12px 24px -6px rgba(24, 26, 42, 0.12);
    position: absolute;
    bottom: 25px;
    left: 64px;
    background-color: #fff;
    z-index: 1;
}
.blog-featured-carousel .carousel-item {
    padding-bottom: 100px;
    position: relative;
}
.blog-featured-carousel .carousel-item .img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.blog-featured-carousel .carousel-item .img:before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(20, 22, 36, 0.40) 0%, rgba(20, 22, 36, 0.40) 100%);
    position: absolute;
}
.blog-featured-carousel .box h3 {
    line-height: 44px;
    margin: 16px 0 24px;
}
.blog-featured-carousel .box p {
    margin-bottom: 0;
}
.blog-featured-carousel .carousel-control-next, .blog-featured-carousel .carousel-control-prev {
    bottom: 106px;
}

/* cases-related */
.cases-related .title {
    margin-bottom: 64px;
}
.cases-related .swiper {
    padding: 0 15px 30px;
}

/* cases-featured-carousel */
.cases-featured-carousel {
    position: relative;
}
.cases-featured-carousel .box {
    width: 100%;
    max-width: 800px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0px 20px 40px -8px rgba(16, 24, 40, 0.10);
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    z-index: 1;
}
.cases-featured-carousel .box span {
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.cases-featured-carousel .carousel-item {
    padding-bottom: 150px;
    position: relative;
}
.cases-featured-carousel .carousel-item .img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
/* .cases-featured-carousel .carousel-item .img:before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(20, 22, 36, 0.40) 0%, rgba(20, 22, 36, 0.40) 100%);
    position: absolute;
} */
.cases-featured-carousel .box h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 36px;
    margin-bottom: 8px;
}
.cases-featured-carousel .box p {
    margin-bottom: 24px;
}
.cases-featured-carousel .carousel-control-next, .blog-featured-carousel .carousel-control-prev {
    bottom: 106px;
}
.cases-featured-carousel .carousel-control-next, .cases-featured-carousel .carousel-control-prev {
    height: auto;
    bottom: unset;
    top: 35%;
}

/* banner-contact */
.banner-contact {
    position: relative;
}
.banner-contact img {
    width: 100%;
}
.banner-contact .box {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 12px;
    display: table;
    margin: -300px auto 0;
    width: 100%;
    max-width: 800px;
    height: 700px;
    position: relative;
    box-shadow: 0px 8px 24px -3px rgba(16, 24, 40, 0.10);
}
.banner-contact h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 44px;
    margin-bottom: 12px;
}
.banner-contact p > a {
    color: var(--color-orange);
    font-weight: 800;
}

/* call-red */
.call-red {
    background-color: var(--color-orange);
    padding: 106px 0 72px;
    margin-top: -50px;
}
.call-red h2 {
    color: var(--color-white);
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* filiais */
.filiais {
    background-color: var(--color-black);
    padding-bottom: 120px;
}
/* .filiais .title {
    margin-bottom: 100px;
} */
.filiais .title span {
    color: #A3A3A3;
}
.filiais .title h2 {
    color: var(--color-white);
}
.filiais .item {
    margin-bottom: 24px;
}
.filiais .item h5 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--color-white);
}
.filiais .item p {
    color: #A3A3A3;
    margin-bottom: 8px;
}

/* map-contact */
.map-contact {
    margin-top: -100px;
}
.map-contact img {
    border-radius: 10px;
    box-shadow: 0px 8px 24px -3px rgba(16, 24, 40, 0.10);
}

/* form-work */
.form-work .text {
    max-width: 400px;
}
.form-work .call {
    position: relative;
}
.form-work .call p {
    position: absolute;
    right: 0;
    top: 20px;
}
.form-work .call p span {
    display: block;
    color: var(--color-orange);
    font-weight: 700;
}

/* testimonial-carousel */
.testimonial-carousel {
    background-color: var(--color-gray-light);
}
.testimonial-carousel .swiper-slide {
    width: 458px;
}
.testimonial-carousel .box {
    width: 100%;
    padding: 16px;
    background-color: var(--color-white);
    border-radius: 6px;
    box-shadow: 0px 2px 6px 0px rgba(16, 24, 40, 0.06);
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
}

.testimonial-carousel .box img {
    border-radius: 100px;
}
.testimonial-carousel .box p.desc {
    font-style: italic;
    line-height: 24px;
}
.testimonial-carousel .box p.name {
    font-size: 14px;
    line-height: 20px;
}
.testimonial-carousel .box p.name strong {
    display: block;
}

/* Responsive  */

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1216px;
    }
}

@media (min-width: 992px) {
    .dropdown-toggle::after {
        display: none;
    }
    header .navbar-expand-lg .navbar-nav {
        position: relative;
    }
    header .navbar-expand-lg .navbar-nav .nav-item:hover .dropdown-menu {
        display: flex;
    }
    header .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu {
        padding: 12px 24px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        background: var(--color-gray-light);
        box-shadow: 0px 20px 40px -8px rgba(16, 24, 40, 0.10);
        border: none;
    }
    header .navbar-expand-lg .navbar-nav .nav-item.factory .dropdown-menu {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        left: 0;
        width: 100%;
    }
    header .navbar-expand-lg .navbar-nav .nav-item.factory:hover .dropdown-menu {
        display: grid;
    }
    header .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu a {
        padding: 12px 0px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px; /* 114.286% */
        border-bottom: 1px solid #D4D4D4;
        text-align: left;
    }
    header .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li {
        width: 100%;
    }
    header .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu a:hover {
        font-weight: 700;
        color: #262626;
        border-color: var(--color-orange);
    }
    /* header .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li:last-child a {
        border: none;
    } */
    /* header .navbar-expand-lg .navbar-nav .nav-item.factory .dropdown-menu li:nth-last-child(-n+5) a {
        border: none;
    } */
    header .navbar-expand-lg .navbar-nav .nav-item.factory .dropdown-menu li:last-child {
        grid-column: span 4;
    }
    header .navbar-expand-lg .navbar-nav .nav-item.factory .dropdown-menu li:last-child a {
        width: 100%;
        text-align: center;
        font-weight: 600;
    }
    header .navbar-expand-lg .navbar-nav .nav-item.factory .dropdown-menu li:last-child a:hover {
        color: var(--color-orange-dark);
    }
}

@media (max-width: 1500px) {
    h2 {
        font-size: 48px;
    }
    .events-featured .box p {
        font-size: 13px;
        line-height: 20px;
    }
    .events-featured .box h4 {
        font-size: 18px;
    }
    .numbers-box .box {
        padding: 24px 16px;
    }
    .partners .bg {
        top: -203px;
    }
    .events-featured .box .img-hover {
        height: 200px;
    }
    .events-featured .box .text {
        padding: 32px 16px 24px 16px;
    }
    .case-big .img-hover {
        height: 446px;
    }
    .box-post .img-hover {
        max-height: 201px;
    }
    .case-box-page .img-hover {
        height: 415px;
    }
    .map .content .states #brasil {
        width: 528px;
    }
}
@media (max-width: 1360px) {
    .banner-about-us h2 {
        font-size: 44px;
        max-width: 580px;
    }
}
@media (max-width: 1199px) {

}

@media (max-width: 991px) {

}

@media (max-width: 767px) {

}