.header {
  background-color: rgb(9, 36, 79);
  padding: 32px 0;
  position: sticky;
  top: 0;
  z-index: 999999;
}
.header .row {
  align-items: center;
}
.header .top-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 0;
  list-style: none;
}
.header .top-menu .menu-item a {
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 100%;
}
.header .top-menu .menu-item a svg {
  margin-left: 5px;
  transition: rotate 0.3s ease-in-out;
}
.header .top-menu .menu-item .sub-menu {
  margin-bottom: 0;
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  padding: 20px 10px;
  background-color: #fff;
  border-radius: 15px;
  z-index: 999;
}
.header .top-menu .menu-item .sub-menu li a {
  color: #09244F;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 100%;
}
.header .top-menu .menu-item:hover .sub-menu {
  display: flex;
}
.header .top-menu .menu-item:hover svg {
  rotate: 180deg;
}
.header .botao-verde {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .search-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .search-holder .icon-search {
  cursor: pointer;
  z-index: 99;
}
.header .search-holder .icon-search .icon-close {
  display: none;
}
.header .search-holder .icon-search.active .icon-lupa {
  display: none;
}
.header .search-holder .icon-search.active .icon-close {
  display: inline;
}
.header .search-holder .search-form-holder {
  position: absolute;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 0.1s ease-in-out;
  width: 670px;
}
.header .search-holder .search-form-holder.active {
  width: 670px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: rgb(9, 36, 79);
}
.header .search-holder .search-form-holder .search-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .search-holder .search-form-holder .search-form label {
  width: 290px;
}
.header .search-holder .search-form-holder .search-form .search-field {
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 100%;
  height: 40px;
  padding: 10px 20px;
}
.header .search-holder .search-form-holder .search-form .search-field::-moz-placeholder {
  color: #fff;
}
.header .search-holder .search-form-holder .search-form .search-field::placeholder {
  color: #fff;
}
.header .search-holder .search-form-holder .search-form .search-submit {
  border: none;
  background-color: rgb(9, 36, 79);
}
.header .search-holder .search-form-holder .search-form .search-submit svg path {
  stroke: #05d758;
}
.header .header-mobile .mobile-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-mobile .mobile-container .hamburger {
  background-color: transparent;
  border: none;
}
.header .header-mobile .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: 9999;
  flex-direction: column;
  align-items: stretch;
  padding: 52px 15px;
}
.header .header-mobile .mobile-menu .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}
.header .header-mobile .mobile-menu .mobile-menu-header .logo-holder img {
  height: 36px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .header-mobile .mobile-menu .mobile-menu-header .menu-close {
  background-color: transparent;
  border: none;
}
.header .header-mobile .mobile-menu .mobile-nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 56px;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item {
  padding: 20px;
  border-top: 1px solid #DCDCDC;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item:last-child {
  border-bottom: 1px solid #DCDCDC;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
  color: #071C3C;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item a svg path {
  stroke: #071C3C;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item .sub-menu {
  display: none;
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item .sub-menu .menu-item {
  padding: 8px 12px;
  border: none;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item .sub-menu a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 100%;
  color: #071C3C;
  text-decoration: none;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item.active a svg {
  rotate: 180deg;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item.active .sub-menu {
  display: flex;
  flex-direction: column;
}
.header .header-mobile .mobile-menu.active {
  display: flex;
}
.header .header-mobile .botao-verde {
  width: 100%;
}
.header .header-mobile .icons-holder {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header-mobile .search-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 999;
}
.header .header-mobile .search-holder .icon-search {
  cursor: pointer;
  z-index: 9999;
  position: relative;
  pointer-events: auto;
}
.header .header-mobile .search-holder .icon-search svg, .header .header-mobile .search-holder .icon-search path {
  pointer-events: none;
}
.header .header-mobile .search-holder .icon-search .icon-close {
  display: none;
}
.header .header-mobile .search-holder .icon-search.active {
  position: absolute;
  right: 15px;
}
.header .header-mobile .search-holder .icon-search.active .icon-lupa {
  display: none;
}
.header .header-mobile .search-holder .icon-search.active .icon-close {
  display: inline;
}
.header .header-mobile .search-holder .search-form-holder {
  position: absolute;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.header .header-mobile .search-holder .search-form-holder.active {
  width: 100%;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  background-color: rgb(9, 36, 79);
  left: 0;
  z-index: 999;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-mobile .search-holder .search-form-holder .search-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-field {
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  height: 40px;
  padding: 10px 20px;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-field::-moz-placeholder {
  color: #fff;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-field::placeholder {
  color: #fff;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-submit {
  border: none;
  background-color: rgb(9, 36, 79);
}

footer {
  padding: 60px 0 160px 0;
  background-color: #282828;
}
@media only screen and (max-width: 991px) {
  footer {
    text-align: center;
  }
}
footer .logo {
  margin-bottom: 24px;
}
footer .social-holder {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  footer .social-holder {
    justify-content: center;
  }
}
footer .conteudo-footer {
  margin-top: 62px;
}
footer .conteudo-footer .menu-item-holder {
  margin-bottom: 40px;
}
footer .conteudo-footer .menu-item-holder h3 {
  color: #C5C5C5;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 140%;
  font-size: 1rem;
  margin-bottom: 28px;
}
footer .conteudo-footer .menu-item-holder ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .conteudo-footer .menu-item-holder ul .menu-item a {
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 140%;
}
footer .conteudo-footer .menu-item-holder ul .menu-item a:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
}
footer .copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 140%;
  font-size: 1rem;
  color: #fff;
  margin-top: 96px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media only screen and (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
}
h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: -1px;
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -1px;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -1px;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -1px;
}

p {
  font-family: "Inter", sans-serif;
}

.botao-verde {
  background-color: #05D758;
  color: #09244F;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.botao-verde:hover {
  background-color: #05993B;
  color: #fff;
}

.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: flex;
  }
}
.topo-vagas {
  background-color: #05D758;
  padding: 96px 0 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .topo-vagas {
    text-align: center;
  }
}
.topo-vagas .content-holder .acima-titulo {
  background-color: #09244F;
  color: #05D758;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 120%;
  font-size: 1.3rem;
  padding: 6px 20px;
  border-radius: 30px;
}
.topo-vagas .content-holder h1 {
  color: #09244F;
  margin: 10px 0;
}
.topo-vagas .content-holder p {
  color: #09244F;
}
.topo-vagas .img-holder {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .topo-vagas .img-holder {
    justify-content: center;
    margin-top: 48px;
  }
}

.lista-de-vagas {
  background-color: #09244F;
  padding: 90px 0;
}
@media only screen and (max-width: 991px) {
  .lista-de-vagas {
    padding: 88px 0 104px 0;
  }
}
.lista-de-vagas h2 {
  color: #fff;
  text-align: center;
}
.lista-de-vagas p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.lista-de-vagas .vagas-holder {
  margin-top: 74px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lista-de-vagas .vagas-holder .vaga {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: relative;
  z-index: 1;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .lista-de-vagas .vagas-holder .vaga {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lista-de-vagas .vagas-holder .vaga .content {
  max-width: 80%;
}
@media only screen and (max-width: 991px) {
  .lista-de-vagas .vagas-holder .vaga .content {
    max-width: 100%;
  }
}
.lista-de-vagas .vagas-holder .vaga .content .acima-titulo {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 140%;
  background-color: #09244F;
  padding: 6px 12px;
  border-radius: 30px;
}
@media only screen and (max-width: 991px) {
  .lista-de-vagas .vagas-holder .vaga .content .acima-titulo {
    display: inline-flex;
    margin-bottom: 10px;
  }
}
.lista-de-vagas .vagas-holder .vaga .content h3 {
  margin: 5px 0;
}
.lista-de-vagas .vagas-holder .vaga .content p {
  text-align: left;
}
.lista-de-vagas .vagas-holder .vaga .button-holder {
  display: flex;
}
.lista-de-vagas .vagas-holder .vaga .button-holder .enviar-cv {
  color: #05D758;
  border-style: solid;
  border-width: 1px;
  border-radius: 8px;
  padding: 10px 12px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.lista-de-vagas .vagas-holder .vaga .button-holder .enviar-cv:hover {
  background-color: #05D758;
  color: #071C3C;
}
.lista-de-vagas .vagas-holder .vaga.last {
  background-color: #fff;
  margin-top: 48px;
}
.lista-de-vagas .vagas-holder .vaga.last h3 {
  color: #071C3C;
}
.lista-de-vagas .vagas-holder .vaga.last p {
  color: rgba(40, 40, 40, 0.7);
}
.lista-de-vagas .vagas-holder .vaga.last .enviar-cv {
  background-color: #05D758;
  color: #071C3C;
  border-color: #05D758;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.lista-de-vagas .vagas-holder .vaga.last .enviar-cv:hover {
  background-color: #05993B;
  color: #fff;
  border-color: #05993B;
}
.lista-de-vagas .vagas-holder .form-vaga-holder {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.lista-de-vagas .vagas-holder .form-vaga-holder .modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  position: relative;
}
.lista-de-vagas .vagas-holder .form-vaga-holder .modal-content p {
  color: #282828;
}
.lista-de-vagas .vagas-holder .form-vaga-holder .close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
}

.icone-com-descricao {
  padding: 96px 0;
}
.icone-com-descricao .row {
  row-gap: 48px;
}
.icone-com-descricao h2 {
  color: #fff;
  text-align: center;
}
.icone-com-descricao .icone-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.icone-com-descricao .icone-card .icone-holder {
  text-align: center;
}
.icone-com-descricao .icone-card .icone-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
}
.icone-com-descricao .icone-card .icone-content h3 {
  color: #fff;
}
.icone-com-descricao .icone-card .icone-content p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 140%;
  font-size: 1rem;
  text-align: center;
}

.texto-com-imagem-na-esquerda {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .texto-com-imagem-na-esquerda {
    padding: 88px 0 104px 0;
  }
}
.texto-com-imagem-na-esquerda .circulo-bg {
  position: absolute;
  top: 55%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 508px;
  height: 508px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}
.texto-com-imagem-na-esquerda .content-holder {
  position: relative;
  z-index: 1;
}
.texto-com-imagem-na-esquerda .row {
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .texto-com-imagem-na-esquerda .row {
    flex-direction: column-reverse;
  }
}
.texto-com-imagem-na-esquerda h2 {
  color: #fff;
  margin-bottom: 24px;
}
.texto-com-imagem-na-esquerda p {
  color: rgba(255, 255, 255, 0.7);
}
.texto-com-imagem-na-esquerda .img-holder {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .texto-com-imagem-na-esquerda .img-holder {
    margin-top: 32px;
  }
  .texto-com-imagem-na-esquerda .img-holder img {
    max-width: 100%;
  }
}

.card-com-icone {
  background-color: #071C3C;
  padding: 96px 0;
}
@media only screen and (max-width: 991px) {
  .card-com-icone {
    padding: 88px 0 104px 0;
  }
}
.card-com-icone .container {
  max-width: 1320px;
  margin: 0 auto;
}
.card-com-icone h2 {
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.card-com-icone p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.card-com-icone .cards-holder {
  margin-top: 71px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(464px, 1fr));
  gap: 48px;
}
@media only screen and (max-width: 1200px) {
  .card-com-icone .cards-holder {
    grid-template-columns: repeat(auto-fit, minmax(391px, 1fr));
  }
}
.card-com-icone .cards-holder .icone-card {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
}
.card-com-icone .cards-holder .icone-card .icone-holder {
  margin-right: 20px;
}
.card-com-icone .cards-holder .icone-card .content-holder h3 {
  margin-bottom: 10px;
}
.card-com-icone .cards-holder .icone-card .content-holder p {
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  margin-bottom: 0;
}
.card-com-icone .cards-holder > *:last-child:nth-child(odd) {
  grid-column: 1/-1;
  justify-self: center;
}
@media only screen and (max-width: 1024px) {
  .card-com-icone .cards-holder > *:last-child:nth-child(odd) {
    justify-self: unset;
  }
}

.texto-com-icone-e-imagem-na-direita {
  padding: 96px 0;
  background-color: #09244F;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .texto-com-icone-e-imagem-na-direita {
    padding: 88px 0 104px 0;
  }
}
.texto-com-icone-e-imagem-na-direita .circulo-bg {
  position: absolute;
  top: 55%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 508px;
  height: 508px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}
.texto-com-icone-e-imagem-na-direita .content-holder {
  position: relative;
  z-index: 1;
}
.texto-com-icone-e-imagem-na-direita .row {
  align-items: center;
}
.texto-com-icone-e-imagem-na-direita h2 {
  color: #fff;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .texto-com-icone-e-imagem-na-direita h2 {
    text-align: center;
    margin-bottom: 48px;
  }
}
.texto-com-icone-e-imagem-na-direita .conteudo-holder {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.texto-com-icone-e-imagem-na-direita .conteudo-holder .linha {
  display: flex;
  align-items: center;
  gap: 10px;
}
.texto-com-icone-e-imagem-na-direita .conteudo-holder .linha p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.texto-com-icone-e-imagem-na-direita .img-holder {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .texto-com-icone-e-imagem-na-direita .img-holder {
    margin-top: 32px;
  }
}

.depoimento-ceo {
  background-color: #071C3C;
  padding: 96px 0;
}
.depoimento-ceo h2 {
  color: #fff;
  margin-bottom: 71px;
  text-align: center;
}
.depoimento-ceo img {
  border-radius: 36px;
}
@media only screen and (max-width: 991px) {
  .depoimento-ceo img {
    margin-bottom: 71px;
  }
}
.depoimento-ceo .depoimento-holder {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.depoimento-ceo .depoimento p {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
}
.depoimento-ceo .assinatura {
  margin-top: 24px;
}
.depoimento-ceo .assinatura .nome {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 5px;
}
.depoimento-ceo .assinatura .cargo {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
}

.depoimentos {
  padding: 80px 0 136px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .depoimentos {
    padding: 80px 0 104px 0;
  }
}
.depoimentos .circulo-bg {
  position: absolute;
  top: 40%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 386px;
  height: 386px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}
.depoimentos .conteudo {
  position: relative;
  z-index: 1;
}
.depoimentos h2 {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 32px;
}
.depoimentos .swiper-depoimentos .swiper-slide {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.depoimentos .swiper-depoimentos .swiper-slide .depoimento-holder {
  text-align: left;
}
.depoimentos .swiper-depoimentos .swiper-slide .depoimento-holder .depoimento {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
}
.depoimentos .swiper-depoimentos .swiper-slide .depoimento-holder .assinatura-holder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.depoimentos .swiper-depoimentos .swiper-slide .depoimento-holder .assinatura-holder p {
  margin-bottom: 0;
}
.depoimentos .depoimentos-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  gap: 32px;
}
.depoimentos .depoimentos-navigation .swiper-button-disabled {
  opacity: 0.2;
}
.depoimentos .funcionario .depoimentos-holder {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(391px, 1fr));
  gap: 48px;
}
@media only screen and (max-width: 1200px) {
  .depoimentos .funcionario .depoimentos-holder {
    grid-template-columns: repeat(auto-fit, minmax(364px, 1fr));
  }
}
@media only screen and (max-width: 991px) {
  .depoimentos .funcionario .depoimentos-holder {
    gap: 32px;
  }
}
.depoimentos .funcionario .depoimentos-holder .depoimento-card {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.depoimentos .funcionario .depoimentos-holder .depoimento {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
}
.depoimentos .funcionario .depoimentos-holder .assinatura-holder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.depoimentos .funcionario .depoimentos-holder .assinatura-holder p {
  margin-bottom: 0;
}
.depoimentos .funcionario .depoimentos-holder > *:last-child:nth-child(odd) {
  grid-column: 1/-1;
  justify-self: center;
  max-width: 50%;
}
@media only screen and (max-width: 991px) {
  .depoimentos .funcionario .depoimentos-holder > *:last-child:nth-child(odd) {
    justify-self: unset;
    max-width: 100%;
  }
}

.cta-com-rede {
  background-color: #071C3C;
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .cta-com-rede {
    padding: 88px 0 0 0;
  }
}
.cta-com-rede .row {
  position: relative;
  z-index: 1;
  align-items: center;
}
.cta-com-rede h2 {
  color: #fff;
  margin-bottom: 24px;
}
.cta-com-rede p {
  color: rgba(255, 255, 255, 0.7);
}
.cta-com-rede .social-holder {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.cta-com-rede .img-holder {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .cta-com-rede .img-holder {
    margin-top: 62px;
    justify-content: center;
  }
}
.cta-com-rede .circulo-bg {
  position: absolute;
  top: 60%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 508px;
  height: 508px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}

form input[type=text], form input[type=email], form input[type=tel], form select {
  background-color: #F2F4F4;
  border: solid 1px #DCDCDC;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
}
form .texto-legal p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  font-size: 0.9rem;
  color: #999;
  margin: 32px 0;
}
form .botao-verde {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 100%;
  font-size: 1rem;
  color: #09244F;
}/*# sourceMappingURL=page-vagas.css.map */