﻿@charset "UTF-8";
.efeitoRetangulo::before {
  content: "";
  width: 50px;
  background: #f1f1f1;
  position: absolute;
  top: 0;
  right: 120px;
  animation: crescerEsquerdo 1.2s linear infinite alternate;
  height: 25px;
}
@keyframes crescerEsquerdo {
  from {
    height: 25px;
  }
  to {
    height: 50px;
  }
}
@keyframes diminuirDireito {
  from {
    height: 50px;
  }
  to {
    height: 25px;
  }
}
@media (max-width: 991px) {
  .efeitoRetangulo::before {
    content: none;
  }
}
.efeitoRetangulo::after {
  content: "";
  width: 50px;
  background: #f1f1f1;
  position: absolute;
  top: 0;
  right: 60px;
  animation: diminuirDireito 1.2s linear infinite alternate;
  height: 50px;
}
@keyframes crescerEsquerdo {
  from {
    height: 25px;
  }
  to {
    height: 50px;
  }
}
@keyframes diminuirDireito {
  from {
    height: 50px;
  }
  to {
    height: 25px;
  }
}
@media (max-width: 991px) {
  .efeitoRetangulo::after {
    content: none;
  }
}

.efeitoCarrossel {
  overflow: hidden;
  animation: scroll-columns infinite linear 15s;
}
.efeitoCarrossel .itemCarrossel {
  display: inline-block;
  width: calc(100% + 50px);
  margin-right: -50px;
}
@keyframes scroll-columns {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@media (max-width: 575.98px) {
  .efeitoCarrossel {
    animation: none;
  }
}

/*#region background-color*/
.bgCorPrimaria {
  background-color: #FFFFFF;
}

.bgCorSecundaria {
  background-color: #FAFAFA;
}

.bgCorTerciaria {
  background-color: #FAFAFA;
}

.bgCorBeige {
  background-color: #f5f5dc;
}

/*#endregion*/
/*#region  Html, Body */
html {
  font-size: 1rem;
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
}
html body {
  margin-bottom: 610px;
  background-color: #FFFFFF;
  background-attachment: scroll !important;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 575.98px) {
  html body {
    margin-bottom: 460px;
  }
}

/*#endregion*/
/*#region Texto */
@font-face {
  font-family: "PlusJakartaSans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf") format("woff2"), url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf") format("woff");
  font-style: normal;
}
@font-face {
  font-family: "PlusJakartaSans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-Italic-VariableFont_wght.ttf") format("woff2"), url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-Italic-VariableFont_wght.ttf") format("woff");
  font-style: italic;
}
@font-face {
  font-family: "PlusJakartaSans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-Bold.ttf") format("woff2"), url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-Bold.ttf") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PlusJakartaSans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-SemiBold.ttf") format("woff2"), url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-SemiBold.ttf") format("woff");
  font-weight: 600;
  font-style: normal;
}
.text-corPrimaria {
  color: #ED931F !important;
}

.text-branco {
  color: white;
}

.text-titulo {
  font-family: "PlusJakartaSans", var(--bs-body-font-family);
  color: #2B2A2A;
  font-size: 2rem;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
  font-weight: bold;
}
@media (min-width: 1440px) {
  .text-titulo {
    font-size: calc(2rem + 10%);
  }
}
@media (max-width: 768px) {
  .text-titulo {
    font-size: calc(2rem - 10%);
  }
}
@media (max-width: 575.98px) {
  .text-titulo {
    font-size: calc(2rem - 20%);
  }
}
@media (max-width: 320px) {
  .text-titulo {
    font-size: calc(2rem - 30%);
  }
}

.text-subTitulo {
  font-family: "PlusJakartaSans", var(--bs-body-font-family);
  color: #2B2A2A;
  font-size: 1.4rem;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
  font-weight: 500;
}
@media (min-width: 1440px) {
  .text-subTitulo {
    font-size: calc(1.4rem + 10%);
  }
}
@media (max-width: 768px) {
  .text-subTitulo {
    font-size: calc(1.4rem - 10%);
  }
}
@media (max-width: 575.98px) {
  .text-subTitulo {
    font-size: calc(1.4rem - 20%);
  }
}
@media (max-width: 320px) {
  .text-subTitulo {
    font-size: calc(1.4rem - 30%);
  }
}

.text-conteudo, .form-control::placeholder {
  font-family: "PlusJakartaSans", var(--bs-body-font-family);
  color: #2B2A2A;
  font-size: 1rem;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
  font-weight: 400;
}
@media (min-width: 1440px) {
  .text-conteudo, .form-control::placeholder {
    font-size: calc(1rem + 10%);
  }
}
@media (max-width: 768px) {
  .text-conteudo, .form-control::placeholder {
    font-size: calc(1rem - 10%);
  }
}
@media (max-width: 575.98px) {
  .text-conteudo, .form-control::placeholder {
    font-size: calc(1rem - 20%);
  }
}
@media (max-width: 320px) {
  .text-conteudo, .form-control::placeholder {
    font-size: calc(1rem - 30%);
  }
}

.text-subConteudo {
  font-family: "PlusJakartaSans", var(--bs-body-font-family);
  color: #2B2A2A;
  font-size: 1rem;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
  font-weight: 300;
}
@media (min-width: 1440px) {
  .text-subConteudo {
    font-size: calc(1rem + 10%);
  }
}
@media (max-width: 768px) {
  .text-subConteudo {
    font-size: calc(1rem - 10%);
  }
}
@media (max-width: 575.98px) {
  .text-subConteudo {
    font-size: calc(1rem - 20%);
  }
}
@media (max-width: 320px) {
  .text-subConteudo {
    font-size: calc(1rem - 30%);
  }
}

/*#endregion*/
.tecnologia {
  filter: grayscale(100%);
}

.tecnologia:hover {
  filter: grayscale(0%);
}

/*#region Header*/
header {
  height: 120px;
  background-color: #FAFAFA;
}
header .alinhaLogo {
  width: 25%;
  display: flex;
  justify-content: start;
}
@media (max-width: 992px) {
  header .alinhaLogo {
    width: 75%;
  }
}
@media (max-width: 768px) {
  header {
    height: 90px;
  }
}
@media (max-width: 575.98px) {
  header {
    height: 70px;
  }
}

.menuAtivo {
  border-bottom: 2px solid #c97810;
  padding-bottom: 5px;
  width: 60%;
}
@media (max-width: 992px) {
  .menuAtivo {
    border: none;
  }
}

/*#endregion*/
/*#region Footer*/
footer {
  height: 610px;
  background-color: #FFFFFF;
  overflow: hidden;
  line-height: inherit !important;
}
@media (max-width: 575.98px) {
  footer {
    height: 460px;
  }
}
footer::before {
  content: "";
  background-color: #ED931F;
  position: absolute;
  z-index: 10;
  width: 60%;
  height: 15%;
  bottom: 0;
  transform: skewX(50deg);
  left: -30%;
}
footer::after {
  content: "";
  background-color: #ED931F;
  position: absolute;
  z-index: 10;
  width: 60%;
  height: 15%;
  bottom: 0;
  transform: skewX(-50deg);
  right: -30%;
}
footer .socialMedia {
  font-family: "PlusJakartaSans", var(--bs-body-font-family);
  color: #2B2A2A;
  font-size: 2rem;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
  color: #ED931F;
  position: absolute;
  bottom: 0;
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 1440px) {
  footer .socialMedia {
    font-size: calc(2rem + 10%);
  }
}
@media (max-width: 768px) {
  footer .socialMedia {
    font-size: calc(2rem - 10%);
  }
}
@media (max-width: 575.98px) {
  footer .socialMedia {
    font-size: calc(2rem - 20%);
  }
}
@media (max-width: 320px) {
  footer .socialMedia {
    font-size: calc(2rem - 30%);
  }
}
footer .socialMedia a {
  color: #ED931F;
}
footer .socialMedia a:hover {
  color: #e08612;
}

/*#endregion*/
/*#region Botão*/
@media (max-width: 575.98px) {
  .btn-responsivo {
    width: 100%;
  }
}

.btn-corPrimaria {
  background-color: #ED931F;
  border-color: #c97810;
  color: #fceedc !important;
  cursor: pointer;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
}
.btn-corPrimaria:hover {
  background-color: #e08612;
  color: #fae3c4 !important;
}

.btn-outline-corPrimaria {
  background-color: transparent;
  border-color: #ED931F;
  color: #ED931F;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
}
.btn-outline-corPrimaria:hover {
  background-color: #ED931F;
  border-color: #c97810;
  color: #fceedc;
}

/*#endregion*/
/*#region Alinhamento*/
.alinhaMax-345 {
  max-width: 345px;
  width: 100%;
}

.alinhaInputGroup {
  max-width: 130px;
  width: 100%;
  background-color: #808080;
}
@media (max-width: 575.98px) {
  .alinhaInputGroup {
    max-width: 60px;
    color: transparent !important;
  }
}

.alinhaLogoParceiros {
  max-width: 180px;
  width: 100%;
  margin: 12px 4px;
}

.alinhaMenu {
  font-family: "PlusJakartaSans", var(--bs-body-font-family);
  color: #2B2A2A;
  font-size: 1rem;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
  white-space: nowrap;
  align-items: center;
  justify-content: end;
  font-weight: 500;
}
@media (min-width: 1440px) {
  .alinhaMenu {
    font-size: calc(1rem + 10%);
  }
}
@media (max-width: 768px) {
  .alinhaMenu {
    font-size: calc(1rem - 10%);
  }
}
@media (max-width: 575.98px) {
  .alinhaMenu {
    font-size: calc(1rem - 20%);
  }
}
@media (max-width: 320px) {
  .alinhaMenu {
    font-size: calc(1rem - 30%);
  }
}
@media (max-width: 992px) {
  .alinhaMenu .nav-item {
    width: 100%;
  }
}

/*#endregion*/
/*#region padding e margin*/
.ml-1 {
  margin-left: 0.25rem;
}
@media (min-width: 575.98px) {
  .ml-sm-1 {
    margin-left: 0.25rem;
  }
}
@media (min-width: 768px) {
  .ml-md-1 {
    margin-left: 0.25rem;
  }
}
@media (min-width: 992px) {
  .ml-lg-1 {
    margin-left: 0.25rem;
  }
}
.ml-2 {
  margin-left: 0.5rem;
}
@media (min-width: 575.98px) {
  .ml-sm-2 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 768px) {
  .ml-md-2 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 992px) {
  .ml-lg-2 {
    margin-left: 0.5rem;
  }
}
.ml-3 {
  margin-left: 1rem;
}
@media (min-width: 575.98px) {
  .ml-sm-3 {
    margin-left: 1rem;
  }
}
@media (min-width: 768px) {
  .ml-md-3 {
    margin-left: 1rem;
  }
}
@media (min-width: 992px) {
  .ml-lg-3 {
    margin-left: 1rem;
  }
}
.ml-4 {
  margin-left: 1.5rem;
}
@media (min-width: 575.98px) {
  .ml-sm-4 {
    margin-left: 1.5rem;
  }
}
@media (min-width: 768px) {
  .ml-md-4 {
    margin-left: 1.5rem;
  }
}
@media (min-width: 992px) {
  .ml-lg-4 {
    margin-left: 1.5rem;
  }
}
.ml-5 {
  margin-left: 3rem;
}
@media (min-width: 575.98px) {
  .ml-sm-5 {
    margin-left: 3rem;
  }
}
@media (min-width: 768px) {
  .ml-md-5 {
    margin-left: 3rem;
  }
}
@media (min-width: 992px) {
  .ml-lg-5 {
    margin-left: 3rem;
  }
}

.mr-1 {
  margin-right: 0.25rem;
}
@media (min-width: 575.98px) {
  .mr-sm-1 {
    margin-right: 0.25rem;
  }
}
@media (min-width: 768px) {
  .mr-md-1 {
    margin-right: 0.25rem;
  }
}
@media (min-width: 992px) {
  .mr-lg-1 {
    margin-right: 0.25rem;
  }
}
.mr-2 {
  margin-right: 0.5rem;
}
@media (min-width: 575.98px) {
  .mr-sm-2 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 768px) {
  .mr-md-2 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 992px) {
  .mr-lg-2 {
    margin-right: 0.5rem;
  }
}
.mr-3 {
  margin-right: 1rem;
}
@media (min-width: 575.98px) {
  .mr-sm-3 {
    margin-right: 1rem;
  }
}
@media (min-width: 768px) {
  .mr-md-3 {
    margin-right: 1rem;
  }
}
@media (min-width: 992px) {
  .mr-lg-3 {
    margin-right: 1rem;
  }
}
.mr-4 {
  margin-right: 1.5rem;
}
@media (min-width: 575.98px) {
  .mr-sm-4 {
    margin-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .mr-md-4 {
    margin-right: 1.5rem;
  }
}
@media (min-width: 992px) {
  .mr-lg-4 {
    margin-right: 1.5rem;
  }
}
.mr-5 {
  margin-right: 3rem;
}
@media (min-width: 575.98px) {
  .mr-sm-5 {
    margin-right: 3rem;
  }
}
@media (min-width: 768px) {
  .mr-md-5 {
    margin-right: 3rem;
  }
}
@media (min-width: 992px) {
  .mr-lg-5 {
    margin-right: 3rem;
  }
}

.pl-1 {
  padding-left: 0.25rem;
}
@media (min-width: 575.98px) {
  .pl-sm-1 {
    padding-left: 0.25rem;
  }
}
@media (min-width: 768px) {
  .pl-md-1 {
    padding-left: 0.25rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-1 {
    padding-left: 0.25rem;
  }
}
.pl-2 {
  padding-left: 0.5rem;
}
@media (min-width: 575.98px) {
  .pl-sm-2 {
    padding-left: 0.5rem;
  }
}
@media (min-width: 768px) {
  .pl-md-2 {
    padding-left: 0.5rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-2 {
    padding-left: 0.5rem;
  }
}
.pl-3 {
  padding-left: 1rem;
}
@media (min-width: 575.98px) {
  .pl-sm-3 {
    padding-left: 1rem;
  }
}
@media (min-width: 768px) {
  .pl-md-3 {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-3 {
    padding-left: 1rem;
  }
}
.pl-4 {
  padding-left: 1.5rem;
}
@media (min-width: 575.98px) {
  .pl-sm-4 {
    padding-left: 1.5rem;
  }
}
@media (min-width: 768px) {
  .pl-md-4 {
    padding-left: 1.5rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-4 {
    padding-left: 1.5rem;
  }
}
.pl-5 {
  padding-left: 3rem;
}
@media (min-width: 575.98px) {
  .pl-sm-5 {
    padding-left: 3rem;
  }
}
@media (min-width: 768px) {
  .pl-md-5 {
    padding-left: 3rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-5 {
    padding-left: 3rem;
  }
}

.pr-1 {
  padding-right: 0.25rem;
}
@media (min-width: 575.98px) {
  .pr-sm-1 {
    padding-right: 0.25rem;
  }
}
@media (min-width: 768px) {
  .pr-md-1 {
    padding-right: 0.25rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-1 {
    padding-right: 0.25rem;
  }
}
.pr-2 {
  padding-right: 0.5rem;
}
@media (min-width: 575.98px) {
  .pr-sm-2 {
    padding-right: 0.5rem;
  }
}
@media (min-width: 768px) {
  .pr-md-2 {
    padding-right: 0.5rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-2 {
    padding-right: 0.5rem;
  }
}
.pr-3 {
  padding-right: 1rem;
}
@media (min-width: 575.98px) {
  .pr-sm-3 {
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .pr-md-3 {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-3 {
    padding-right: 1rem;
  }
}
.pr-4 {
  padding-right: 1.5rem;
}
@media (min-width: 575.98px) {
  .pr-sm-4 {
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .pr-md-4 {
    padding-right: 1.5rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-4 {
    padding-right: 1.5rem;
  }
}
.pr-5 {
  padding-right: 3rem;
}
@media (min-width: 575.98px) {
  .pr-sm-5 {
    padding-right: 3rem;
  }
}
@media (min-width: 768px) {
  .pr-md-5 {
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-5 {
    padding-right: 3rem;
  }
}

/*#endregion*/
/*#region  Borda */
.rounded-2 {
  border-radius: 2rem !important;
}

/*#endregion*/
/*#region Classes sobrescritas bootstrap*/
.list-group-item.active, .list-group-item.active .text-subTitulo {
  color: #ED931F !important;
  background-color: transparent !important;
  border-color: rgba(0, 0, 0, 0.125);
}

.list-group-item {
  background-color: transparent;
}

input:focus, textarea:focus {
  border-color: rgba(237, 147, 31, 0.5) !important;
  box-shadow: 0 1px 1px rgba(237, 147, 31, 0.75) inset, 0 0 8px rgba(237, 147, 31, 0.7) !important;
  outline: 0 none;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
}

.form-control::placeholder {
  font-size: 1rem;
  color: #A4A4A4;
}

/*#endregion*/
/*#region Classes sobrescritas sweetAlert*/
.swal2-popup {
  background-color: #FAFAFA;
  width: 70%;
}

/*#endregion*/
.border-bottom {
  border-top: 1px solid #e5e5e5 !important;
}

.border-top {
  border-bottom: 1px solid #e5e5e5 !important;
}

/*#region Fale conosco*/
.contentFaleConosco {
  height: 680px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
}
.contentFaleConosco #imgFaleConosco {
  height: 100%;
  position: absolute;
  top: 0;
  right: -60px;
  z-index: 1;
}
@media (max-width: 992px) {
  .contentFaleConosco #imgFaleConosco {
    opacity: 0.3;
    padding-right: 0;
    margin-left: -33%;
    margin-right: -110px;
  }
}
.contentFaleConosco .textoFaleConosco {
  z-index: 2;
  position: relative;
  width: 656px;
  margin-left: 8%;
}
@media (max-width: 992px) {
  .contentFaleConosco .textoFaleConosco {
    text-align: center;
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }
}
.contentFaleConosco .textoFaleConosco div {
  width: 400px;
}
@media (max-width: 992px) {
  .contentFaleConosco .textoFaleConosco div {
    text-align: center;
    width: 100%;
    padding: 0 15px;
    margin: auto;
  }
}

@media (max-width: 992px) {
  #imgFaleConosco {
    position: relative;
    right: 0;
  }
}
@media (max-width: 735px) {
  #imgFaleConosco {
    left: 0;
    right: 0;
  }
}

#imgFaleConoscoComplemento {
  width: 100%;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
@media (max-width: 992px) {
  #imgFaleConoscoComplemento {
    border-bottom-left-radius: 0;
    border-top-right-radius: 2rem;
  }
}

.faleConoscoBtn {
  width: 180px;
  text-align: center;
  font-size: calc(1rem + 10%);
}

/*#endregion*/
/*#region Contato*/
#cardContato {
  padding-top: 10px;
  border: none;
}
#cardContato::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -6%;
  right: 80%;
  width: 30%;
  height: 30%;
  transform: rotate(70deg);
  clip-path: polygon(30% 0%, 70% 85%, 5% 50%);
  background-color: #FAFAFA;
}
@media (max-width: 575.98px) {
  #cardContato::after {
    display: none;
  }
}

#contentFaleConosco p {
  font-size: 20px;
  font-weight: 700;
}
#contentFaleConosco i {
  font-weight: 700;
}

/*#endregion*/
/*#region SobreNos*/
#imgSobreNos {
  padding-top: 10px;
  border: none;
  position: relative;
  height: 100%;
  /*    &::before {
      @include sobreNosMixin;
      top: 15%;
      right: 45%;
  }

  &::after {
      @include sobreNosMixin;
      top: 57%;
      right: 10%;
  }*/
}

.alinhaImgSobreNos {
  height: 100%;
  position: relative;
  z-index: 2;
  width: 480px;
}
.alinhaImgSobreNos::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -6%;
  right: 80%;
  width: 30%;
  height: 30%;
  transform: rotate(70deg);
  clip-path: polygon(30% 0%, 70% 85%, 5% 50%);
  background-color: #ED931F;
}

#imgPqEscolher {
  position: relative;
  margin-bottom: 0px;
}
#imgPqEscolher::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(12, 7, 1, 0.2), rgba(12, 7, 1, 0.5), #0c0701);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  top: 0;
}
#imgPqEscolher .alinhaConteudo {
  position: relative;
  z-index: 2;
  max-width: 65%;
  text-align: center;
}
@media (max-width: 992px) {
  #imgPqEscolher .alinhaConteudo {
    max-width: 100%;
  }
}

.sobreNosSubTitle {
  font-size: 22px;
}

/*#endregion*/
/*#region Servicos*/
.btnImgServicos {
  background: transparent;
  border: none;
  position: relative;
  padding: 0;
  height: 100%;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
}
.btnImgServicos[aria-expanded=true] {
  transform: scaleY(1.04);
  transform-origin: top;
  border-top: 10px solid #ED931F;
}
.btnImgServicos:hover {
  opacity: 0.8;
}
.btnImgServicos::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(12, 7, 1, 0.2), rgba(12, 7, 1, 0.1), #0c0701);
  top: 0;
  left: 0;
}
.btnImgServicos .alinhaTextoSobreImg {
  position: absolute;
  bottom: 0;
  padding: 0 10px;
  z-index: 2;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.serviçosNosSubTitle {
  font-size: 22px;
}

/*#endregion*/
/*.multi-collapse.collapse.show {
    margin: 60px 0 0 0 !important;
}*/
/*a.active {

 h2::after{
        background-color: $corPrimaria;
        height: 2px;
        width: 20%;
        display: inline-block
    }
}*/
/*Modal(Currículo)*/
.iziModal {
  z-index: 1050 !important;
}

#modalCurriculo .modal--body {
  padding: 40px 0;
  text-align: center;
}
#modalCurriculo .modal--body .filepond--root.filepond.filepond--hopper {
  width: 80%;
  margin: 0 auto;
  min-height: 190px;
  border: 2px dashed rgba(0, 0, 0, 0.2509803922);
  border-radius: 12px;
  text-align: center;
  min-height: 180px;
}
#modalCurriculo .modal--body .filepond--root.filepond.filepond--hopper .filepond--drop-label {
  text-align: center;
  display: inline-block;
  margin: auto;
  width: 100%;
  min-height: 100%;
}
#modalCurriculo .modal--body .filepond--root.filepond.filepond--hopper .filepond--drop-label label {
  width: 100%;
  height: 100%;
}
#modalCurriculo .modal--body .filepond--root.filepond.filepond--hopper a.filepond--credits {
  display: none;
}
#modalCurriculo .modal--body .selecao-arquivo {
  border: 2px dashed rgba(0, 0, 0, 0.2509803922);
  border-radius: 12px;
  text-align: center;
  padding: 20px 20px 20px 20px;
  min-height: 180px;
}
#modalCurriculo .modal--body .selecao-arquivo .logo-div {
  text-align: center;
}
#modalCurriculo .modal--body .selecao-arquivo .logo-div i {
  color: #ED931F;
  font-size: 40px;
}
#modalCurriculo .modal--body .selecao-arquivo .textos-div {
  text-align: center;
}
#modalCurriculo .modal--body .selecao-arquivo .textos-div .texto1 {
  font-size: 16px;
  font-weight: 600;
}
#modalCurriculo .modal--body .selecao-arquivo .textos-div .texto2 {
  font-size: 14px;
  color: #9F9F9F;
}
#modalCurriculo .modal--body .selecao-arquivo .botao-div {
  text-align: center;
}
#modalCurriculo .modal--body .selecao-arquivo .botao-div button {
  border-width: 1.17px;
  padding: 8px;
}
#modalCurriculo .modal-footer {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}
#modalCurriculo .modal-footer .botao1 {
  background: none;
  border: none;
}
#modalCurriculo .modal-footer .botao2 {
  background-color: transparent;
  border-color: #ED931F;
  color: #ED931F;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.25s;
  border-width: 1.17px;
  padding: 8px 16px;
}
#modalCurriculo .modal-footer .botao2:hover {
  background-color: #ED931F;
  border-color: #c97810;
  color: #fceedc;
}
