.b-lazy {
    opacity:0;
    transform: scale(0.95);
    transition: all 500ms;
}

.b-loaded {
    opacity:1;
    transform: initial;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translateX(-50%) translateY(-50%) scale(.25);
    overflow: hidden;
}
.loader:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 140px;
    background-color: #0072bc;
    animation: spinnerTop 1.5s linear infinite;
}
.loader:after {
    content: "";
    position: absolute;
    top: 0;
    left: 140px;
    right: 0;
    bottom: 0;
    background-color: #0072bc;
    animation: spinnerRight 1.5s linear infinite;
}
.loader span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.loader span:before {
    content: "";
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0072bc;
    animation: spinnerBottom 1.5s linear infinite;
}
.loader span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 140px;
    bottom: 0;
    background-color: #0072bc;
    animation: spinnerLeft 1.5s linear infinite;
}
  
@keyframes spinnerTop {
    0% {
      left: 0;
      right: 0;
    }
    24.9% {
      left: 100%;
      right: 0;
    }
    25% {
      left: 0;
      right: 100%;
    }
    49.9% {
      left: 0;
      right: 0;
    }
    50% {
      left: 0;
      right: 0;
    }
    74.9% {
      left: 0;
      right: 0;
    }
    75% {
      left: 0;
      right: 0;
    }
    100% {
      left: 0;
      right: 0;
    }
}
@keyframes spinnerRight {
    0% {
      top: 0;
      bottom: 0;
    }
    24.9% {
      top: 0;
      bottom: 0;
    }
    25% {
      top: 0;
      bottom: 0;
    }
    49.9% {
      top: 100%;
      bottom: 0;
    }
    50% {
      top: 0;
      bottom: 100%;
    }
    74.9% {
      top: 0;
      bottom: 0;
    }
    75% {
      top: 0;
      bottom: 0;
    }
    100% {
      top: 0;
      bottom: 0;
    }
}
@keyframes spinnerBottom {
    0% {
      left: 0;
      right: 0;
    }
    24.9% {
      left: 0;
      right: 0;
    }
    25% {
      left: 0;
      right: 0;
    }
    49.9% {
      left: 0;
      right: 0;
    }
    50% {
      left: 0;
      right: 0;
    }
    74.9% {
      left: 0;
      right: 100%;
    }
    75% {
      left: 100%;
      right: 0;
    }
    100% {
      left: 0;
      right: 0;
    }
}
@keyframes spinnerLeft {
    0% {
      top: 100%;
      bottom: 0;
    }
    24.9% {
      top: 0;
      bottom: 0;
    }
    25% {
      top: 0;
      bottom: 0;
    }
    54.9% {
      top: 0;
      bottom: 0;
    }
    55% {
      top: 0;
      bottom: 0;
    }
    75% {
      top: 0;
      bottom: 0;
    }
    99.9% {
      top: 0;
      bottom: 100%;
    }
    100% {
      top: 100%;
      bottom: 0;
    }
}

.loader.l-white::before,
.loader.l-white:after,
.loader.l-white span::before,
.loader.l-white span:after {
    background-color: #fff;
}

.b-loaded + .loader {
    opacity: 0;
    z-index: -9999;
}

body {
    background-color: #fff;
    font-family: "Exo", sans-serif;
}




/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    box-shadow: 0 10px 30px rgba(73, 73, 72, .8);
    
    z-index: 99999;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header.scrolling {
    top: 0;
    background-color: #1f1f1f;
    box-shadow: none;
    padding: 0;
}

header nav.nav-header {
    display: flex;
    align-items: center;
    gap: 55px;
    height: 100%;
}
header .logo {
    width: auto;
    height: 60px;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header .logo svg {
    display: block;
    width: auto;
    height: 100%;    

    -o-object-fit: contain;
    object-fit: contain;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header.scrolling .logo {
    height: 50px;
}

header .navbar-desktop {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    list-style: none;
    
    width: 100%;
    height: fit-content;
    
    margin: auto 0;
    padding: 0;
}
header .navbar-desktop .nav-item {
    position: relative;
    z-index: 0;
}

header .navbar-desktop .nav-item .nav-link {
    position: relative;
    display: block;

    padding: 30px 15px;
    color: #ffffff;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 250% */
    letter-spacing: -0.16px;
    text-transform: uppercase;
    white-space: nowrap;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header.scrolling .navbar-desktop .nav-item .nav-link {
    padding: 20px 15px;
}
header .navbar-desktop .nav-item:hover .nav-link {
    color: #00b1f7;
}
header .navbar-desktop .nav-item.active .nav-link {
    display: block;
    width: fit-content;
    height: auto;
    
    padding: 5px 20px;
    background-color: #00b0f7;
    border-radius: 25px;

    color: #fff!important;
}
header .nav-item .botao {
    display: block;
    width: fit-content;
    height: auto;
    
    padding: 12.5px 30px;
    background-color: #00b0f7;
    border-radius: 25px;
    
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header .nav-item .botao:hover {
    background-color: #ff7052;
    box-shadow: 0 6px 9px rgba(255, 112, 82, .25);
}
/* header .nav-item .botao:hover .badge-orcamento::before,
header .nav-item .botao:hover .badge-orcamento::after {
    opacity: 0;
} */

@media (max-width: 992px) {
    header .navbar-desktop {
        transform: scale(.85);
        opacity: 0;
        z-index: -1;
        width: 0;
        overflow: hidden;
    }
body[data-mobile-status="open"] header .logo {
        transform: scale(.8);
        opacity: 0;
    }
}


header .open-menu-mobile,
body[data-mobile-status="open"] header .open-menu-mobile {
    display: flex;
    align-items: center;

    width: 40px;
    height: 40px;
    margin: auto 0;

    opacity: 0;
    z-index: -1;

    cursor: pointer;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
@media (max-width: 992px) {
    header .open-menu-mobile {
        opacity: 1;
        transform: scale(1);
        z-index: 0;
    }
}



header .open-menu-mobile .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin: auto;
}
header .open-menu-mobile .icon svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;
}
header .header-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    
    padding-top: 60px;    
    background-color: rgba(243, 242, 240, 1);
    
    width: 100%;
    /* width: calc(100% - 50px); */
    height: 100%;

    overflow: hidden;

    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
body[data-mobile-status="open"] header .header-mobile {
    left: 0;
    z-index: 99999;
}
body main {
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
body[data-mobile-status="open"] main {
    opacity: .3;
}
header .header-mobile .logo-mobile {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #1f1f1f;

    width: 100%;
    height: auto;
    padding: 10px 30px;
}
header .header-mobile .logo-mobile a svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 40px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header .header-mobile .close-menu-mobile {
    display: flex;
    justify-content: center;
    align-items: center;

    width: auto;
    height: 40px;

    border-radius: 100px;
}
header .header-mobile .close-menu-mobile .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;

    cursor: pointer;
    margin: auto;
}
header .header-mobile .close-menu-mobile .icon svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;
}
header .header-mobile .navbar-mobile {
    display: block;

    padding: 0;
    margin: 0;
    list-style: none;
}
header .header-mobile .navbar-mobile li.nav-item {
    display: block;
    width: 100%;
    margin: 0;
}
header .header-mobile .navbar-mobile li.nav-item a{
    display: block;
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-align: left;

    padding: 15px 30px;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header .header-mobile .navbar-mobile li.nav-item a:active,
header .header-mobile .navbar-mobile li.nav-item a:focus {
    background-color: #fff;
    color: #0072bc;
}
header .header-mobile .navbar-mobile li.nav-item:not(:last-child) a {
    border-bottom: 1px solid #D9D9D9;
}






/* Section title */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px 0;
}
.section-title.center {
    justify-content: center;
}
.section-title h1 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 125% */
    letter-spacing: -0.48px;
    text-transform: capitalize;
    margin: 0;
}
.section-title a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    text-decoration: none;
    margin: 0;
}
.section-title a:hover {
    color: #007DFA;
    text-decoration: underline;
}




/* Home > Banner */
[data-page="home"] #banner {
    position: relative;
    width: 100%;

    display: flex;
    align-items: center;
    
    overflow: hidden;
}
[data-page="home"] #banner::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 36.041666666666664%;
}
[data-page="home"] #banner .video-background {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    display: block;
    width: 100%;
}
[data-page="home"] #banner .video-background::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
}
[data-page="home"] #banner .video-foreground iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

[data-page="home"] #banner .image {
    position: relative;
    width: 100%;
}
[data-page="home"] #banner .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 36.041666666666664%;
}
[data-page="home"] #banner .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
}




/* Empresa */
[data-page="home"] #empresa {
    margin: 100px 0;
}
[data-page="home"] #empresa .section-title {
    position: relative;
}
[data-page="home"] #empresa .section-title h4 {
    position: absolute;
    
    top: -30px;
    left: -100px;
    
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);    
    
    color: #e3e3e2;
    font-size: 26px;
    font-weight: 700;
}
[data-page="home"] #empresa .section-title h4::before {
    position: absolute;
    content: '';
    
    bottom: calc(100% + 15px);
    left: 15px;
    
    width: 1px;
    height: 155px;
    
    background-color: #0072bc;
}
[data-page="home"] #empresa .section-title h4::after {
    position: absolute;
    content: '';
    
    bottom: calc(100% + 155px + 45px);
    left: 12.5px;
    
    width: 6px;
    height: 6px;
    
    background-color: #0072bc;
    border-radius: 10px;

    box-shadow: 0 15px 0 0.1px #0072bc;
    filter: drop-shadow(0 -15px 0 #0072bc);
}

[data-page="home"] #empresa .section-header h1 {
    color: #494948;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
[data-page="home"] #empresa .section-header h1 span {
    font-size: 56px;
    color: #0072bc;
}
[data-page="home"] #empresa .section-body {
    padding-right: 50px;
}
[data-page="home"] #empresa .section-body p {
    color: #494948;
    font-size: 16px;
    font-weight: 300;
    text-align: justify;
}
[data-page="home"] #empresa .section-body .selo img {
    width: 85px;
    height: 85px;
}

[data-page="home"] #empresa .image {
    position: relative;
    width: 100%;
    padding-bottom: 93.44262295081968%;

    z-index: 0;
}
[data-page="home"] #empresa .image::before {
    position: absolute;
    content: '';

    bottom: -20px;
    left: -20px;

    width: 136px;
    height: 158px;

    background-color: transparent;
    border: 10px solid #0072bc;

    z-index: -1;
}
[data-page="home"] #empresa .image::after {
    position: absolute;
    content: '';

    top: -20px;
    right: -20px;

    width: 136px;
    height: 158px;

    background-color: transparent;
    border: 10px solid #0072bc;

    z-index: -1;
}
[data-page="home"] #empresa .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;

    border-radius: 10px;
}




/* Produtos e serviços */
[data-page="home"] #produtos-servicos {
    margin: 0px 0 100px 0;
}
[data-page="home"] #produtos-servicos .section-title {
    position: relative;
}
[data-page="home"] #produtos-servicos .section-title h4 {
    position: absolute;
    
    top: -100px;
    left: -100px;
    
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);    
    
    color: #e3e3e2;
    font-size: 26px;
    font-weight: 700;
}
[data-page="home"] #produtos-servicos .section-title h4::before {
    position: absolute;
    content: '';
    
    bottom: calc(100% + 15px);
    left: 15px;
    
    width: 1px;
    height: 110px;
    
    background-color: #0072bc;
}
[data-page="home"] #produtos-servicos .section-title h4::after {
    position: absolute;
    content: '';
    
    bottom: calc(100% + 110px + 45px);
    left: 12.5px;
    
    width: 6px;
    height: 6px;
    
    background-color: #0072bc;
    border-radius: 10px;

    box-shadow: 0 15px 0 0.1px #0072bc;
    filter: drop-shadow(0 -15px 0 #0072bc);
}

[data-page="home"] #produtos-servicos .section-header h1 {
    color: #494948;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
[data-page="home"] #produtos-servicos .section-header h1 span {
    font-size: 56px;
    color: #0072bc;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos {
    width: calc(100% + 50px);
    left: -25px;
    padding: 0 25px 25px 25px;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .swiper-wrapper {
    height: 100%;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .swiper-slide {
    height: auto!important;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico {
    position: relative;
    display: block;
    
    width: 100%;
    height: 100%;
    padding-bottom: 76px;
    
    border: 1px solid #0072bc;
    border-radius: 10px;
    overflow: hidden;
    
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico:hover {
    box-shadow: 0 12px 18px rgba(16, 103, 160, .25);
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico .card-servico-header {
    position: relative;

    padding: 35px 25px;
    border-radius: 10px;

    z-index: 0;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico .card-servico-header::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url('../img/noise.svg') #0072bc;
    border-radius: 10px;

    opacity: 0;
    transform: translateY(-20px);

    z-index: -1;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico:hover .card-servico-header::before {
    transform: translateY(0px);
    opacity: 1;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico .card-servico-header h2.title {
    width: 100%;
    max-width: 140px;
    color: #494948;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico:hover .card-servico-header h2.title {
    color: #fff;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico .card-servico-footer {
    position: absolute;
    left: 0;
    bottom: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    width: 100%;
    height: 76px;
    padding: 0 25px;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico .card-servico-footer .botao {
    display: block;
    width: fit-content;
    
    color: #494949;
    font-size: 12px;
    font-weight: 400;
    
    padding: 3px 15px;
    border: 1px solid #0072bc;
    border-radius: 50px;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico .card-servico-footer .icon {
    display: block;
    width: 20px;
    height: 20px;
}
[data-page="home"] #produtos-servicos .section-body .swiperServicos .card-servico .card-servico-footer .icon svg {
    display: block;
    fill: #494948;
    width: 100%;
    height: 100%;
}




/* MVVN */
[data-page="home"] #mvvn {
    margin: 100px 0;
}
[data-page="home"] #mvvn .list-mvvn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;

    width: 630px;
    
    padding: 0;
    margin: 0 auto;
    list-style: none;
}
[data-page="home"] #mvvn .list-mvvn li.item-mvvn {
    width: 300px;
    
	padding: 15px;
    border: 1px solid #0072bc;
    border-radius: 10px;
}
[data-page="home"] #mvvn .list-mvvn li.item-mvvn h2 {
    color: #131331;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 20px 0;
}
[data-page="home"] #mvvn .list-mvvn li.item-mvvn p {
    color: #494948;
    font-size: 16px;
    text-align: justify;
    margin: 0;
}
[data-page="home"] #mvvn .list-mvvn li.item-mvvn ul.list {
    list-style: disc;
}
[data-page="home"] #mvvn .certificado {
    position: relative;
    width: fit-content;
    display: flex;
    justify-content: center;
    gap: 10px;
    
    margin: 20px auto 0 auto;
}
[data-page="home"] #mvvn .certificado span {
    position: absolute;
    top: 40px;
    left: -150px;
}
[data-page="home"] #mvvn img.selo {
    display: block;

    width: 350px;
    height: auto;

    margin: 0;
}




/* Qualidade */
[data-page="home"] #qualidade {
    margin: 110px 0 100px 0;
}
[data-page="home"] #qualidade .section-title {
    position: relative;
}
[data-page="home"] #qualidade .section-title h4 {
    position: absolute;
    
    top: -100px;
    left: -100px;
    
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);    
    
    color: #e3e3e2;
    font-size: 26px;
    font-weight: 700;
}
[data-page="home"] #qualidade .section-title h4::before {
    position: absolute;
    content: '';
    
    bottom: calc(100% + 15px);
    left: 15px;
    
    width: 1px;
    height: 110px;
    
    background-color: #0072bc;
}
[data-page="home"] #qualidade .section-title h4::after {
    position: absolute;
    content: '';
    
    bottom: calc(100% + 110px + 45px);
    left: 12.5px;
    
    width: 6px;
    height: 6px;
    
    background-color: #0072bc;
    border-radius: 10px;

    box-shadow: 0 15px 0 0.1px #0072bc;
    filter: drop-shadow(0 -15px 0 #0072bc);
}

[data-page="home"] #qualidade h1.section-header {
    color: #494948;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
[data-page="home"] #qualidade .image {
    position: relative;
    display: flex;
    justify-content: center;
    
    width: calc(100% - 100px);
    /* max-width: 353px; */
    margin-left: 50px;
    
    z-index: 0;
}
[data-page="home"] #qualidade .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 42.42492917847026%;
}
[data-page="home"] #qualidade .image::before {
    position: absolute;
    content: '';

    top: 0;
    bottom: 0;
    left: -50px;

    width: calc(100% + 100px);
    height: 115px;

    margin: auto;
    background-color: transparent;
    border: 10px solid #0072bc;

    z-index: -1;
}
[data-page="home"] #qualidade .image img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
    object-fit: contain;

    margin: auto;
}
[data-page="home"] #qualidade .botoes {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 30px;
}
[data-page="home"] #qualidade .botoes .botao-galeria {
    display: block;
    width: fit-content;
    height: auto;
    
    padding: 12.5px 30px;
    background-color: #ff7052;
    border-radius: 0 0 20px 20px;
    
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #qualidade .botoes .botao-galeria:hover {
    background-color: #0072bc;
    box-shadow: 0 6px 9px rgba(16, 103, 160, .25);
}
[data-page="home"] #qualidade .botoes .botao-orcamento {
    display: block;
    width: fit-content;
    height: auto;
    
    padding: 12.5px 30px;
    background-color: #0072bc;
    border-radius: 0 0 20px 20px;
    
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #qualidade .botoes .botao-orcamento:hover {
    background-color: #ff7052;
    box-shadow: 0 6px 9px rgba(255, 112, 82, .25);
}
[data-page="home"] #qualidade .sustentabilidade {
    position: relative;
    width: calc(100% - 30px);
    margin-left: auto;
}
[data-page="home"] #qualidade .sustentabilidade::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 72.25950782997764%;
}
[data-page="home"] #qualidade .sustentabilidade img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: contain;
    object-fit: contain;
}




/* Componentes */
[data-page="home"] #componentes {
    padding: 75px 0;
    
    background-color: #fcfcfc;
}
[data-page="home"] #componentes .card-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    
    padding: 50px 60px;
    background: url('../img/noise.svg') #0072bc;
    border-radius: 50px 0 112px 0;
}

[data-page="home"] #componentes .card-section .content h1.title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 15px 0;
}
[data-page="home"] #componentes .card-section .content p.desc {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

[data-page="home"] #componentes .card-section .image {
    position: absolute;
    top: -30px;
    right: 60px;
    
    width: 30%;
    height: calc(100% + 100px);

    z-index: 0;
}
[data-page="home"] #componentes .card-section .image::before {
    position: absolute;
    content: '';

    top: -10px;
    right: 5px;

    width: 136px;
    height: 158px;

    background-color: transparent;
    border: 10px solid #0072bc;

    z-index: -1;
}
/* [data-page="home"] #componentes .card-section .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
} */
[data-page="home"] #componentes .card-section .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
    object-fit: contain;

    -o-object-position: top center;
    object-position: top center;
}
[data-page="home"] #componentes .botoes {
    display: flex;
    align-items: center;
    gap: 15px;
}
[data-page="home"] #componentes .botoes .botao-saibamais {
    display: block;
    width: fit-content;
    height: auto;
    
    padding: 12.5px 50px;
    background-color: #ff7052;
    border-radius: 0 0 20px 20px;
    
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #componentes .botoes .botao-saibamais:hover {
    background-color: #0072bc;
    box-shadow: 0 6px 9px rgba(16, 103, 160, .25);
}
[data-page="home"] #componentes .botoes .botao-orcamento {
    display: block;
    width: fit-content;
    height: auto;
    
    padding: 12.5px 30px;
    background-color: #0072bc;
    border-radius: 0 0 20px 20px;
    
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #componentes .botoes .botao-orcamento:hover {
    background-color: #ff7052;
    box-shadow: 0 6px 9px rgba(255, 112, 82, .25);
}




/* Contato */
[data-page="home"] #contato {
    padding: 75px 0;
    
    background-color: #fcfcfc;
}
[data-page="home"] #contato .section-title {
    position: relative;
}
[data-page="home"] #contato .section-title h4 {
    position: absolute;
    
    top: -30px;
    left: -100px;
    
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);    
    
    color: #e3e3e2;
    font-size: 26px;
    font-weight: 700;
}
[data-page="home"] #contato .section-title h4::before {
    position: absolute;
    content: '';
    
    bottom: calc(100% + 15px);
    left: 15px;
    
    width: 1px;
    height: 155px;
    
    background-color: #0072bc;
}
[data-page="home"] #contato .section-title h4::after {
    position: absolute;
    content: '';
    
    bottom: calc(100% + 155px + 45px);
    left: 12.5px;
    
    width: 6px;
    height: 6px;
    
    background-color: #0072bc;
    border-radius: 10px;
    
    box-shadow: 0 15px 0 0.1px #0072bc;
    filter: drop-shadow(0 -15px 0 #0072bc);
}

[data-page="home"] #contato .contato {
    margin: 0 0 20px 0;
}
[data-page="home"] #contato .contato.tel {
    display: flex;
    gap: 10px;
}
[data-page="home"] #contato .contato span {
    color: #0072bc;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
[data-page="home"] #contato .map a {
    color: #0072bc;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
}
[data-page="home"] #contato .contato a {
    color: #494948;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
}
[data-page="home"] #contato .map a:hover,
[data-page="home"] #contato .contato a:hover,
[data-page="home"] #contato .contato a:hover span {
    color: #ff7052;
    text-decoration: underline;
}
[data-page="home"] #contato .contato.tel .numeros a {
    display: block;
    width: fit-content;
}

[data-page="home"] #contato .map .image {
    position: relative;
    width: 100%;

    margin: 25px 0;
}
[data-page="home"] #contato .map .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 45.48022598870056%;
}
[data-page="home"] #contato .map .image img {
    position: absolute;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
}

[data-page="home"] #contato form .radio-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

[data-page="home"] #contato form .radio-group input {
    display: none;
}

[data-page="home"] #contato form .radio-group label {
    width: fit-content;
    height: fit-content;

    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 7.5px;
    cursor: pointer;

    color: #494948;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 12px;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #contato form .radio-group input:not(:checked) + label:hover {
    border-color: #494948;
}

[data-page="home"] #contato form .radio-group input:checked + label {
    border-color: #0072bc;
    color: #0072bc;
}
[data-page="home"] #contato form .input-group,
[data-page="home"] #contato form .textarea-group {
    position: relative;
    display: flex;
    /* align-items: center; */
    flex-wrap: nowrap;
    gap: 0px;
    
    background-color: rgba(191, 191, 191, .1);
    border: none;
    border-radius: 10px;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #contato form .input-group {
    margin-bottom: 20px;
}
[data-page="home"] #contato form .input-group:active,
[data-page="home"] #contato form .input-group:hover,
[data-page="home"] #contato form .textarea-group:active,
[data-page="home"] #contato form .textarea-group:hover {
    box-shadow: 0 0 0 2px #0072bc;
}
[data-page="home"] #contato form .input-group label,
[data-page="home"] #contato form .textarea-group label {
    width: fit-content;
    height: 100%;
    padding: 0 10px;
    margin: 0;

    color: #494948;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 40px;
}
[data-page="home"] #contato form .input-group input {
    display: block;
    
    width: 100%;
    height: 40px;
    
    background-color: transparent;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    outline: none;
}
[data-page="home"] #contato form .textarea-group textarea {
    display: block;
    
    width: 100%;
    height: 100px;
    
    background-color: transparent;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    outline: none;

    padding: 7.5px 0;
}
[data-page="home"] #contato .botoes {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
[data-page="home"] #contato .botoes .file-input {
    display: none;
}

[data-page="home"] #contato .botoes .file-label {
    display: block;
    width: calc(50% - 5px);
    height: auto;

    cursor: pointer;
    
    padding: 12.5px;
    background-color: #ff7052;
    border: none;
    border-radius: 20px;
    outline: none;
    
    margin-top: 20px;

    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;

    overflow: hidden;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

[data-page="home"] #contato .botoes .file-label:hover {
    background-color: #0072bc;
    box-shadow: 0 6px 9px rgba(0, 144, 188, .25);
}

[data-page="home"] #contato .botoes .botao-enviar {
    display: block;
    width: calc(50% - 5px);
    height: auto;
    
    padding: 12.5px 30px;
    background-color: #0072bc;
    border: none;
    border-radius: 20px;
    outline: none;
    
    margin-left: auto;
    margin-top: 20px;

    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] #contato .botoes .botao-enviar:hover {
    background-color: #ff7052;
    box-shadow: 0 6px 9px rgba(255, 112, 82, .25);
}





/* Produto Breadcrumb */
[data-page="produto"] #breadcrumb {
    margin: 80px 0 0 0;
}
[data-page="produto"] #breadcrumb .breadcrumb-item {
    color: #131331;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}
[data-page="produto"] #breadcrumb .breadcrumb-item.active {
    color: #00b0f7;
}
[data-page="produto"] #breadcrumb .breadcrumb-item:not(.active):hover {
    color: #ff7052;
}
[data-page="produto"] #breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '>';
}
/* Produto Detalhes */
[data-page="produto"] #detalhes {
    padding: 20px 0 50px 0;
    background-color: #fcfcfc;
}
[data-page="produto"] #detalhes .image {
    position: relative;
    width: 100%;
}
[data-page="produto"] #detalhes .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
[data-page="produto"] #detalhes .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
    
    border-radius: 25px;
}
[data-page="produto"] #detalhes h1.section-title {
    color: #494948;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
[data-page="produto"] #detalhes .desc * {
    color: #494948;
    font-size: 16px;
    font-weight: 300;
    text-align: justify;
}
[data-page="produto"] #detalhes .botao {
    display: block;
    width: fit-content;
    height: auto;
    
    padding: 15px 30px;
    background-color: #00b0f7;
    border-radius: 100px;
    
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="produto"] #detalhes .botao:hover {
    background-color: #ff7052;
    box-shadow: 0 6px 9px rgba(255, 112, 82, .25);
}




/* Produto Galeria */
[data-page="produto"] #galeria {
    padding: 50px 0;
    background-color: #fcfcfc;
}
[data-page="produto"] #galeria .section-header h1 {
    position: relative;
    display: block;
    width: fit-content;
    
    
    border-bottom: 5px solid #00b0f7;
    margin: 0 0 20px 0;
    
    color: #494948;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}
[data-page="produto"] #galeria .section-header h1::before {
    position: absolute;
    content: '';
    
    top: 0;
    left: -30px;
    
    width: 1px;
    height: 110px;
    
    background-color: #0072bc;
}
[data-page="produto"] #galeria .section-header h1::after {
    position: absolute;
    content: '';
    
    top: calc(100px + 100% + 15px);
    left: -32.5px;
    
    width: 6px;
    height: 6px;
    
    background-color: #0072bc;
    border-radius: 10px;

    box-shadow: 0 15px 0 0.1px #0072bc;
    filter: drop-shadow(0 -15px 0 #0072bc);
}

[data-page="produto"] #galeria .mosaic-gallery {
    display: grid;
    grid: repeat(1, 1fr) / repeat(3, 1fr);
}

[data-page="produto"] #galeria .mosaic-gallery .image {
    position: relative;
    padding: 10px 5px;
}
[data-page="produto"] #galeria .mosaic-gallery .mosaic-column:first-child .image {
    padding-left: 0;
    padding-right: 10px;
}
[data-page="produto"] #galeria .mosaic-gallery .mosaic-column:last-child .image {
    padding-left: 10px;
    padding-right: 0;
}
[data-page="produto"] #galeria .mosaic-gallery img {
    width: 100%;
    /* max-width: 300px; */
    height: auto;
    display: block;

    border-radius: 20px;
}




/* Sistema de Gestão Integrada */
[data-page="gestao-integrada"] #detalhes {
    margin: 100px 0;
}
[data-page="gestao-integrada"] #detalhes h1.section-title {
    color: #494948;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
[data-page="gestao-integrada"] #detalhes .descricao * {
    color: #494948;
    font-size: 16px;
    font-weight: 300;
    text-align: justify;
}
[data-page="gestao-integrada"] #detalhes .list-selos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    
    width: 100%;

    padding: 0;
    margin: 30px 0 50px 0;
    list-style: none;
}
[data-page="gestao-integrada"] #detalhes .item-selo {
    position: relative;
}
[data-page="gestao-integrada"] #detalhes .item-selo img {
    width: auto;
    height: 125px;
}
[data-page="gestao-integrada"] .swiperGaleriaGestao {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
[data-page="gestao-integrada"] .swiperGaleriaGestao-navigation-prev,
[data-page="gestao-integrada"] .swiperGaleriaGestao-navigation-next {
    position: absolute;
    top: calc(50% - 20px);
    left: 10px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 40px;
    height: 40px;
    
    background: #007DFA;
    border-radius: 20px;
    cursor: pointer;
    
    z-index: 2;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
[data-page="gestao-integrada"] .swiperGaleriaGestao-navigation-prev.swiper-button-disabled,
[data-page="gestao-integrada"] .swiperGaleriaGestao-navigation-next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}
[data-page="gestao-integrada"] .swiperGaleriaGestao-navigation-prev:hover,
[data-page="gestao-integrada"] .swiperGaleriaGestao-navigation-next:hover {
    background: #00b0f7;
}
[data-page="gestao-integrada"] .swiperGaleriaGestao-navigation-next {
    left: unset;
    right: 10px;
}
[data-page="gestao-integrada"] .swiperGaleriaGestao-navigation-prev svg,
[data-page="gestao-integrada"] .swiperGaleriaGestao-navigation-next svg {
    display: block;
    width: 25px;
    height: 25px;
    stroke: #fff;
}
[data-page="gestao-integrada"] .image {
    position: relative;
    display: block;
    width: 100%;
}
[data-page="gestao-integrada"] .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 75%;
}
[data-page="gestao-integrada"] .image img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;
    
    -o-object-fit: contain;
    object-fit: contain;
}




/* Sistema de Gestão Integrada */
[data-page="politica-privacidade"] #politicas {
    margin: 100px 0;
}
[data-page="politica-privacidade"] #politicas h1.section-title {
    color: #494948;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
[data-page="politica-privacidade"] #politicas h2 {
    font-size: 22px;
}
[data-page="politica-privacidade"] #politicas .descricao * {
    color: #494948;
    font-size: 16px;
    font-weight: 300;
    text-align: justify;
}




/* Vagas */

/* Nossas Vagas */
section#nossas-vagas {
    padding: 75px 0;
}
section#nossas-vagas h1.title {
    color: #494948;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 75px;
}
section#nossas-vagas #accordionVagas .accordion-item {
    border: none;
}
section#nossas-vagas #accordionVagas .accordion-item:not(:last-child) {
    margin: 0 0 15px 0;
}
section#nossas-vagas #accordionVagas .accordion-header {
    position: relative;
}
section#nossas-vagas #accordionVagas .accordion-header .accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    height: 50px;
    background-color: rgba(191, 191, 191, .1);
    border: none;
    border-radius: 2px;
    
    color: #494949;
    font-size: 24px;    
    font-weight: 600;

    outline: none;
    box-shadow: none;
}
section#nossas-vagas #accordionVagas .accordion-header .accordion-button:hover {
    background-color: #e3e3e2;
}
section#nossas-vagas #accordionVagas .accordion-header .accordion-button span {
    color: #494949;
    font-size: 16px;    
}
section#nossas-vagas #accordionVagas .accordion-header .accordion-button span::before {
    content: '+';
    margin-right: 5px;
}
section#nossas-vagas #accordionVagas .accordion-header .accordion-button::after {
    content: unset;
}
section#nossas-vagas #accordionVagas .accordion-header .accordion-button:not(.collapsed) {
    background-color: #0072bc;
    color: #fff;
}
section#nossas-vagas #accordionVagas .accordion-header .accordion-button:not(.collapsed) span {
    color: #fff;
}
section#nossas-vagas #accordionVagas .accordion-header .accordion-button:not(.collapsed):hover {
    background-color: #007DFA;
}
section#nossas-vagas #accordionVagas .accordion-header .accordion-button:not(.collapsed) span::before {
    content: '-';
}
section#nossas-vagas #accordionVagas .accordion-body {
    color: #494949;
    background-color: rgba(191, 191, 191, .1);
    border-radius: 2px;
    padding: 30px;
    margin-top: 5px;
}
section#nossas-vagas #accordionVagas .accordion-body .btn {
    display: block;
    width: fit-content;
    height: auto;
    
    padding: 12.5px 30px;
    background-color: #0072bc;
    border: none;
    border-radius: 20px;
    outline: none;
    
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;

    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
section#nossas-vagas #accordionVagas .accordion-body .btn:hover {
    background-color: #ff7052;
    box-shadow: 0 6px 9px rgba(255, 112, 82, .25);
}




/* Formulário Currículo */
section#formulario {
    padding: 100px 0;
    background-color: rgba(191, 191, 191, .1);
}
section#formulario form h2.subtitle {
    color: var(--black);
    font-family: var(--font-bebas-neue);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 10px;    
}
section#formulario form h1.title {
    color: var(--black);
    font-family: var(--font-bebas-neue);
    font-size: 45px;
    font-weight: 400;
    margin: 0;
}
section#formulario form .form-group {
    position: relative;
    padding: 30px 0;
}
section#formulario form label {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
section#formulario form .col-input {
    margin-bottom: 20px;
}

section#formulario form select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 50%;    
}

section#formulario form .input-curriculo {
    position: relative;
    display: inline-block;

    width: 100%;
}
  
section#formulario form .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}  
section#formulario form #filename {
    display: none;
}
  
section#formulario form .input-curriculo label {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background-color: #ffffff;
    cursor: pointer;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
section#formulario form .input-curriculo #placeholder,
section#formulario form .input-curriculo #filename {
    color: #CBCBCB;
    font-size: 12px;
    font-weight: 400;
}
section#formulario form .input-curriculo #filename {
    color: var(--black);
}
section#formulario form .input-curriculo #placeholder.error-placeholder {
    color: var(--secondary);
}

section#formulario form .input-curriculo label,
section#formulario form select,
section#formulario form input {
    width: 100%;
    height: 40px;
    
    background-color: #ffffff;
    border: 1px solid #CBCBCB;
    border-radius: 2px;
    
    box-shadow: none;
}
section#formulario form .input-curriculo label:hover,
section#formulario form select:hover,
section#formulario form input:hover {
    border-color: var(--black);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}
section#formulario form .input-curriculo label:active,
section#formulario form select:focus,
section#formulario form input:focus{
    border-color: var(--primary);
}
section#formulario form button {
    display: block;
    width: 100%;
    height: auto;
    
    padding: 20px 30px;
    background-color: #0072bc;
    border: none;
    border-radius: 50px;
    outline: none;
    
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;

    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
section#formulario form button:hover {
    background-color: #ff7052;
    box-shadow: 0 6px 9px rgba(255, 112, 82, .25);
}




/* Modal */
.modal-content {
    border: none;
    border-radius: 20px;
}
.modal-content button.botao {
    display: block;
    width: fit-content;
    height: auto;
    
    padding: 10px 30px;
    background-color: #0072bc;
    border: none;
    border-radius: 50px;
    outline: none;
    
    margin-left: auto;

    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.modal-content button.botao:hover {
    background-color: #ff7052;
    box-shadow: 0 6px 9px rgba(255, 112, 82, .25);
}




/* Footer */
footer {
    padding: 70px 0;
    background: url('../img/bg-footer.webp');
    background-size: cover;
}
footer .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}
footer .logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 0 24px 0;
}
footer .logo svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: auto;
}
footer .content span {
    display: block;
    color: #D9D9D9;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 21px */
    letter-spacing: -0.3px;
    margin: 0 0 12px 0;
}
footer .content a {
    display: block;
    color: #D9D9D9;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 16.8px */
    letter-spacing: -0.24px;
    text-decoration: none;
    margin: 0;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
footer .content a:hover {
    color: #007DFA;
    text-decoration: underline;
}

footer .footer-list {
    display: flex;
    justify-content: space-around;
    /* flex-wrap: wrap; */
    gap: 70px;
    
    width: 100%;
}
footer .footer-list .footer-menu h2 {
    color: #D9D9D9;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 21px */
    letter-spacing: -0.3px;
    margin: 0 0 12px 0;
}
footer .footer-list .footer-menu .footer-links {
    width: min-content;
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .footer-list .footer-menu .footer-links.grid {
    width: max-content;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
}
footer .footer-list .footer-menu .footer-links li:not(:last-child) {
    margin: 0 0 12px 0;
}
footer .footer-list .footer-menu .footer-links span {
    color: #D9D9D9;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 16.8px */
    letter-spacing: -0.24px;
    margin: 0 0 6px 0;
}
footer .footer-list .footer-menu .footer-links a {
    display: block;
    color: #D9D9D9;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 16.8px */
    letter-spacing: -0.24px;
    text-decoration: none;

    white-space: nowrap;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
footer .footer-list .footer-menu .footer-links a:hover {
    color: #007DFA;
    text-decoration: underline;
}
footer .footer-list .footer-menu .footer-links p {
    display: block;
    color: #D9D9D9;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.24px;
    margin: 0;
}

footer .footer-list .footer-menu .footer-redes {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 0;
    padding: 0;
    list-style: none;
}
footer .footer-list .footer-menu .footer-redes li a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 40px;
    height: 40px;

    transform: translateY(-10px);
    
    background-color: transparent;
    border-radius: 10px;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
footer .footer-list .footer-menu .footer-redes li a:hover {
    background-color: #007DFA;
}
footer .footer-list .footer-menu .footer-redes li a .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
}
footer .footer-list .footer-menu .footer-redes li a .icon svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
footer .footer-list .footer-menu .footer-redes li a:hover .icon svg {
    fill: #fff;
}

.base-footer {
    padding: 20px 0;

    background: url('../img/base-footer.webp');
    background-size: cover;
}
.base-footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0;   
    margin: 0;
    list-style: none;
}
.base-footer a {
    color: #F0F2F4;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 28.152px;
    text-decoration: none;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.base-footer a:hover {
    color: #007DFA;
    text-decoration: underline;
}
.base-footer p {
    color: #F0F2F4;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.152px;
    margin: 0;
}
.base-footer .wtek {
    display: flex;
    align-items: center;
    gap: 10px;
}
.base-footer .wtek p {
    text-align: end;
}

.base-footer .wtek svg {
    fill: #fff;
    width: 100px;
    height: 100%;
}

.base-footer .wtek svg .w {
    fill: #fff;

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.base-footer .wtek:hover svg .w{
    fill: #fedf00;
}


.base-footer .seguranca {
    display: flex;
    align-items: center;
    gap: 10px;
}
.base-footer .seguranca img {
    width: 50px;
    height: auto;
}
.base-footer .seguranca a {
    font-size: 14px;
    text-transform: uppercase;
    max-width: 190px;
}





/* Botões */




/* Responsivo */
@media (max-width: 992px) {
    /* Heder */
    header,
    header.scrolling {
        padding: 10px 0;
    }
    header nav.nav-header {
        gap: 20px;
    }
    header .logo {
        height: 40px;
    }



    /* Sobre */
    [data-page="home"] #empresa {
        margin: 50px 0;
    }
    [data-page="home"] #empresa .section-header h1 span {
        font-size: 34px;
    }
    [data-page="home"] #empresa .section-header h1 {
        font-size: 26px;
    }
    [data-page="home"] #empresa .section-body {
        padding: 0;
    }
    [data-page="home"] #empresa .image {
        margin-top: 40px;
    }




    /* Produtos e Serviços */
    [data-page="home"] #produtos-servicos {
        margin: 50px 0;
        overflow: hidden;
    }
    [data-page="home"] #produtos-servicos .section-header h1 span {
        font-size: 34px;
    }
    [data-page="home"] #produtos-servicos .section-header h1 {
        font-size: 26px;
    }



    /* Qualidade */
    [data-page="home"] #qualidade {
        margin: 50px 0;
    }
    [data-page="home"] #qualidade h1.section-header {
        margin: 0 0 10px 0;
    }
    [data-page="home"] #qualidade .botoes {
        margin: 15px 0 0 0;
    }
    [data-page="home"] #qualidade .botoes .botao-galeria,
    [data-page="home"] #qualidade .botoes .botao-orcamento {
        width: 100%;
    }
    [data-page="home"] #qualidade .sustentabilidade {
        width: calc(100% - 50px);
        margin: 20px auto 0 auto;
    }



    /* Componentes */
    [data-page="home"] #componentes {
        padding: 75px 0 0 0;
    }
    [data-page="home"] #componentes .card-section {
        padding: 30px 20px;
        border-radius: 30px 30px 0 0;
    }
    [data-page="home"] #componentes .card-section .content h1.title {
        font-size: 18px;
    }
    [data-page="home"] #componentes .card-section .content p.desc {
        font-size: 14px;
    }
    [data-page="home"] #componentes .card-section .image {
        top: -60px;
        right: 25px;
        width: 30%;
        height: 150px;
    }
    [data-page="home"] #componentes .card-section .image::before {
        top: -15px;
        right: 40px;

        width: 115px;
        height: 100px;
    }
    [data-page="home"] #componentes .botoes {
        gap: 10px;
    }
    [data-page="home"] #componentes .botoes .botao-saibamais,
    [data-page="home"] #componentes .botoes .botao-orcamento {
        width: 100%;
        white-space: nowrap;
        text-align: center;
    }



    /* Contato */
    [data-page="home"] #contato form {
        margin-top: 30px;
    }
    [data-page="home"] #contato form .radio-group {
        justify-content: space-between;
        flex-wrap: wrap;
    }



    /* Footer */
    footer .footer-content {
        display: block;
    }
    footer .logo {
        margin: 0 auto 24px auto;
    }
    footer .footer-list {
        display: block;
    }
    footer .footer-list .footer-menu {
        text-align: center;
        margin: 0 0 30px 0;
    }
    footer .footer-list .footer-menu .footer-links,
    footer .footer-list .footer-menu .footer-links.grid {
        display: block;
        margin: 0 auto;
    }
    footer .footer-list .footer-menu .footer-redes {
        width: fit-content;
        margin: 0 auto;
    }
}
