.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;
  }
}
.sobre-nos {
  padding: 120px 0 96px 0;
  background-color: #071C3C;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .sobre-nos {
    padding: 88px 0 104px 0;
  }
}
.sobre-nos h2 {
  color: #fff;
  margin-bottom: 11px;
}
.sobre-nos p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  margin-bottom: 47px;
}
.sobre-nos .video-wrapper {
  height: 678px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .sobre-nos .video-wrapper {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .sobre-nos .video-wrapper {
    height: 300px;
  }
}
.sobre-nos .video-wrapper img {
  border-radius: 15px;
  height: 678px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .sobre-nos .video-wrapper img {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .sobre-nos .video-wrapper img {
    height: 300px;
  }
}
.sobre-nos .video-wrapper .video-frame {
  height: 678px;
}
@media only screen and (max-width: 991px) {
  .sobre-nos .video-wrapper .video-frame {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .sobre-nos .video-wrapper .video-frame {
    height: 300px;
  }
}
.sobre-nos .video-wrapper .video-frame iframe {
  height: 100%;
  width: -webkit-fill-available;
}

.fale-com-especialista {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .fale-com-especialista {
    padding: 88px 0;
  }
}
.fale-com-especialista .circulo-bg {
  position: absolute;
  top: 70%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 508px;
  height: 508px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}
.fale-com-especialista .row {
  align-items: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .fale-com-especialista .row {
    flex-direction: column-reverse;
  }
}
.fale-com-especialista .formulario {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 991px) {
  .fale-com-especialista .formulario {
    margin-top: 40px;
  }
}
.fale-com-especialista .formulario form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fale-com-especialista .conteudo {
  color: #fff;
  padding-left: 40px;
}
.fale-com-especialista .conteudo .pre-titulo {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}
.fale-com-especialista .conteudo h2 {
  margin: 16px 0;
}
.fale-com-especialista .conteudo p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}
.fale-com-especialista .conteudo .imagem {
  margin-top: 24px;
}
@media only screen and (max-width: 991px) {
  .fale-com-especialista .conteudo .imagem {
    display: none;
  }
}
.fale-com-especialista .conteudo .imagem img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .fale-com-especialista .conteudo {
    padding-left: 0;
  }
}
.fale-com-especialista .wpcf7-form label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  color: #282828;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fale-com-especialista .sucesso {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.fale-com-especialista .sucesso.hidden {
  display: none;
}
.fale-com-especialista .modal-conteudo {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.fale-com-especialista .modal-conteudo .botao-verde {
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 100%;
  font-size: 1rem;
  color: #09244F;
}
.fale-com-especialista .fechar-x {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.faq {
  padding: 120px 0;
  position: relative;
  background-color: #071C3C;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .faq {
    padding: 88px 0;
  }
}
.faq .circulo-bg {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 938px;
  height: 938px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}
.faq .conteudo {
  position: relative;
  z-index: 1;
}
.faq h2 {
  color: #fff;
  margin-bottom: 48px;
  text-align: center;
}
.faq .faq-holder {
  position: relative;
  z-index: 1;
  padding: 20px;
  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);
  margin-bottom: 16px;
}
.faq .faq-holder .faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq .faq-holder .faq-title h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 140%;
  color: #fff;
  margin-bottom: 0;
  transition: margin-bottom 0.5s ease-in-out;
}
.faq .faq-holder .faq-title .icon {
  margin-left: 20px;
}
.faq .faq-holder .faq-title svg {
  transition: rotate 0.5s ease-in-out;
}
.faq .faq-holder .faq-title.active h3 {
  margin-bottom: 8px;
}
.faq .faq-holder .faq-title.active svg {
  rotate: 135deg;
}
.faq .faq-holder .faq-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.faq .faq-holder .faq-content.active {
  max-height: 1000px;
}

.timeline {
  padding: 104px 0 154px 0;
  background-color: #09244F;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .timeline {
    padding: 88px 0 104px 0;
  }
}
.timeline .container {
  position: relative;
  z-index: 1;
}
.timeline h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.timeline .conteudo {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.timeline .content-holder {
  align-items: center;
  margin-top: 80px;
}
.timeline .content-holder .timeline-holder {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.timeline .content-holder .timeline-holder .time-frame {
  display: flex;
  align-items: flex-start;
}
.timeline .content-holder .timeline-holder .time-frame .date {
  color: #05D758;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 120%;
  font-size: 1.5rem;
  margin-right: 24px;
}
.timeline .content-holder .timeline-holder .time-frame .timeline-content h3 {
  color: #fff;
  margin-bottom: 12px;
  line-height: 100%;
}
.timeline .content-holder .timeline-holder .time-frame .timeline-content p {
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  line-height: 130%;
}
.timeline img {
  border-radius: 16px;
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .timeline img {
    display: none;
  }
}
.timeline .circulo-bg {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 970px;
  height: 970px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}

.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;
}

.nosso-time {
  padding: 100px 0 144px 0;
  background-color: #09244F;
}
@media only screen and (max-width: 991px) {
  .nosso-time {
    padding: 88px 0 104px 0;
  }
}
.nosso-time h2 {
  color: #fff;
  text-align: center;
}
.nosso-time .time-holder {
  margin-top: 48px;
  row-gap: 48px;
}
@media only screen and (max-width: 991px) {
  .nosso-time .time-holder {
    row-gap: 24px;
  }
}
.nosso-time .time-holder .time-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
}
.nosso-time .time-holder .time-card .foto-holder {
  margin-right: 12px;
}
.nosso-time .time-holder .time-card .foto-holder img {
  border-radius: 16px;
}
.nosso-time .time-holder .time-card .content-time {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nosso-time .time-holder .time-card .content-time .selo {
  background-color: rgba(63, 238, 127, 0.3);
  color: #1B7D2C;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
.nosso-time .time-holder .time-card .content-time .dados h3 {
  color: #000;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.nosso-time .time-holder .time-card .content-time .dados p {
  color: #7A7A7A;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
}

.titulo-com-botao {
  padding: 120px 0;
  background-color: #071C3C;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .titulo-com-botao {
    padding: 88px 15%;
  }
}
.titulo-com-botao h2 {
  color: #fff;
  margin-bottom: 15px;
}
.titulo-com-botao h2 span {
  background: linear-gradient(90deg, #2050E8, #05D758);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.titulo-com-botao p {
  color: rgba(255, 255, 255, 0.7);
}
.titulo-com-botao .botao-verde {
  margin-top: 40px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.texto-com-imagem-na-direita {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .texto-com-imagem-na-direita {
    padding: 88px 0;
  }
}
.texto-com-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;
}
@media only screen and (max-width: 991px) {
  .texto-com-imagem-na-direita .circulo-bg {
    top: 35%;
    left: 45%;
  }
}
.texto-com-imagem-na-direita .content-holder {
  position: relative;
  z-index: 1;
}
.texto-com-imagem-na-direita .row {
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .texto-com-imagem-na-direita .row {
    flex-direction: column-reverse;
  }
}
.texto-com-imagem-na-direita h2 {
  color: #fff;
  margin-bottom: 24px;
}
.texto-com-imagem-na-direita p {
  color: rgba(255, 255, 255, 0.7);
}
.texto-com-imagem-na-direita .img-holder {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .texto-com-imagem-na-direita .img-holder {
    margin-bottom: 48px;
  }
}

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=sobre.css.map */