@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*RESET*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: auto;
  min-height: 100%;
  font-size: 16px;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

body {
  background-size: 100%;
  line-height: 1.3;
  cursor: default;
}

/*
  ========================================
  Typography
  ========================================
*/
b,
strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

/*
  ========================================
  Img
  ========================================
*/
img,
picture,
video,
embed,
object {
  max-width: 100%;
}

img {
  display: inline-block;
  vertical-align: middle;
}

:root {
  --gradient-site: linear-gradient(to right, #294159 0%, #0A2D55 100%);
}

.--transition {
  transition: all 0.8s;
  scale: 0.8;
  opacity: 0;
}
.--transition.--show {
  opacity: 1;
  scale: 1;
  z-index: 9;
  position: relative;
}

/**/
body {
  background: #fff;
  font-family: "Inter", sans-serif;
  color: #fff;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0px;
}

body * {
  color: #0A2D55;
  font-family: "Inter", sans-serif;
}

p {
  font-size: 1.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 5px;
}

.pagination li a,
.pagination li span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #294159;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.pagination li a:hover,
.pagination li span:hover {
  background-color: #07519B;
}

.pagination li.active span {
  background-color: #07519B;
  font-weight: bold;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
  z-index: 8 !important;
}

/*CONTAINER*/
.container {
  margin: 0 auto;
  max-width: 87.5rem;
  padding-left: 20px;
  padding-right: 20px;
}

.swiper {
  position: relative;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #ede4db;
}

::-webkit-scrollbar-thumb {
  background: #0A2D55;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:active {
  background: #07519B;
}

.grecaptcha-badge {
  visibility: collapse;
  z-index: -9999;
}

/* DESKTOP LARGE - 1400px*/
@media screen and (max-width: 87.5rem) {
  p {
    font-size: 1.375rem;
  }
}
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  p {
    font-size: 1.25rem;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  p {
    font-size: 1.125rem;
  }
}
/* DESKTOP LARGE - 1400px*/
/* DESKTOP - 1200px*/
/* LAPTOP - 1024px*/
/* TABLET BIG - 900px*/
/* TABLET - 600px*/
/* MOBILE - 400px*/
/*
  ========================================
  HEADER
  ========================================
*/
header {
  width: 100%;
  background-color: #fff;
  z-index: 99;
  position: sticky;
  top: 0;
  padding: 45px 0;
  box-shadow: 0 0 20px #d6d6d6;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* RESPONSIVE */
/* DESKTOP LARGE - 1400px */
@media screen and (max-width: 87.5rem) {
  header {
    padding: 35px 0;
  }
}
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  header {
    padding: 28px 0;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  header {
    padding: 20px 0;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  header .container {
    flex-direction: column;
    gap: 20px;
  }
}
/*
  ========================================
  FOOTER
  ========================================
*/
footer {
  padding: 70px 0;
}
footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
footer .container .__one {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
footer .container .__two {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .container .__two .--item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: 1.5rem;
}
footer .container .__two .--item:first-child {
  margin-bottom: 30px;
}
footer .container .__two .--item svg {
  margin-top: 5px;
}

/* RESPONSIVE */
/* DESKTOP LARGE - 1400px */
@media screen and (max-width: 87.5rem) {
  footer {
    padding: 50px 0;
  }
  footer .container {
    gap: 60px;
  }
  footer .container .__one {
    gap: 50px;
  }
  footer .container .__two .--item {
    font-size: 1.375rem;
  }
  footer .container .__two .--item:first-child {
    margin-bottom: 25px;
  }
}
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  footer {
    padding: 25px 0;
  }
  footer .container {
    gap: 40px;
  }
  footer .container .__one {
    gap: 40px;
  }
  footer .container .__two .--item {
    font-size: 1.25rem;
  }
  footer .container .__two .--item:first-child {
    margin-bottom: 20px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  footer {
    padding: 25px 0;
  }
  footer .container {
    gap: 20px;
    flex-direction: column;
  }
  footer .container .__one {
    text-align: center;
    gap: 20px;
  }
  footer .container .__one .__button_one {
    margin: auto;
  }
  footer .container .__two .--item {
    font-size: 1.125rem;
    width: fit-content;
  }
  footer .container .__two .--item:first-child {
    text-align: center;
    margin-bottom: 15px;
  }
  footer .container .__two .--item svg {
    margin: 0;
  }
}
/*
  ========================================
  HOME
  ========================================
*/
.home {
  background-color: #F3F2F0;
  border-radius: 80px;
  overflow: hidden;
}
.home .__banner .--resp {
  display: none;
}
.home .__metodos_tratamento {
  margin-bottom: 50px;
}
.home .__metodos_tratamento .__top {
  border-radius: 0 0 40px 40px;
  background: #FFF;
  padding: 75px 50px 180px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 140px;
}
.home .__metodos_tratamento .__top .__titleMain {
  max-width: 390px;
}
.home .__metodos_tratamento .__top .__txt {
  max-width: 510px;
}
.home .__metodos_tratamento .__emphasis {
  margin-top: -100px;
  border-radius: 20px;
  margin: -115px auto 0 auto;
  background: #07519B;
  padding: 40px 110px;
  width: calc(100% - 200px);
}
.home .__metodos_tratamento .__emphasis .__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
.home .__metodos_tratamento .__emphasis .__head .__titleMain {
  max-width: 500px;
  color: #fff;
}
.home .__metodos_tratamento .__emphasis .__head .__txt {
  max-width: 400px;
}
.home .__metodos_tratamento .__emphasis .__head .__txt p {
  color: #fff;
}
.home .__metodos_tratamento .__emphasis .__grid {
  display: grid;
  grid-template-columns: 250px 340px 250px;
  gap: 50px;
  justify-content: center;
}
.home .__metodos_tratamento .__emphasis .__grid .--list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.home .__metodos_tratamento .__emphasis .__grid .--list .__item {
  width: 100%;
  height: 88px;
  border-radius: 5px;
  background: #E2DFD8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}
.home .__metodos_tratamento .__emphasis .__grid .--list .__item svg path {
  transition: all 0.3s;
}
.home .__metodos_tratamento .__emphasis .__grid .--list .__item span {
  font-size: 1.5rem;
  color: #0A2D55;
  font-weight: 600;
  transition: all 0.3s;
}
.home .__metodos_tratamento .__emphasis .__grid .--list .__item:hover {
  background: #0A2D55;
  box-shadow: 5px 5px 20px -4px #0A2D55;
}
.home .__metodos_tratamento .__emphasis .__grid .--list .__item:hover span {
  color: #fff;
}
.home .__metodos_tratamento .__emphasis .__grid .--list .__item:hover svg path {
  fill: #fff;
}
.home .__fazer_parte {
  margin-bottom: 75px;
}
.home .__fazer_parte .__content {
  margin: auto;
  width: calc(100% - 200px);
  display: flex;
  gap: 100px;
  position: relative;
  margin-bottom: 75px;
}
.home .__fazer_parte .__content .__img1 {
  max-width: 506px;
  height: fit-content;
  aspect-ratio: 506/422;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: #D9D9D9;
  z-index: 2;
}
.home .__fazer_parte .__content .__img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .__fazer_parte .__content .__txt {
  margin-top: 80px;
  padding: 60px 100px 60px 0;
  position: relative;
}
.home .__fazer_parte .__content .__txt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 240px);
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  z-index: 1;
}
.home .__fazer_parte .__content .__txt p {
  z-index: 2;
  position: relative;
  color: #0A2D55;
}
.home .__fazer_parte .__content .__txt p:not(:last-child) {
  margin-bottom: 20px;
}
.home .__fazer_parte .__content .--float {
  position: absolute;
  top: 0;
  right: -100px;
  z-index: 9;
}
.home .__fazer_parte .__button_two {
  margin: auto;
}
.home .__ordem_acompanhamento {
  border-radius: 40px 40px 0 0;
  background: #FFF;
  padding: 75px 100px;
  margin-bottom: 80px;
}
.home .__ordem_acompanhamento .--line {
  width: 100%;
  height: 2px;
  background: #E2C19E;
  margin: 38px 0;
}
.home .__ordem_acompanhamento .__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-bottom: 75px;
}
.home .__ordem_acompanhamento .__top .__titleMain {
  max-width: 444px;
}
.home .__ordem_acompanhamento .__top .__txt {
  max-width: 490px;
}
.home .__ordem_acompanhamento .__option {
  padding: 0 100px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
}
.home .__ordem_acompanhamento .__option .__img {
  width: 380px;
  height: 230px;
  border-radius: 20px;
  background: #D9D9D9;
  overflow: hidden;
}
.home .__ordem_acompanhamento .__option .__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .__ordem_acompanhamento .__option .__duo {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 30px;
}
.home .__ordem_acompanhamento .__option .__duo .--number {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #E2DFD8;
  background-color: #07519B;
  border-radius: 50%;
}
.home .__ordem_acompanhamento .__option .__duo .__txt {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.home .__ordem_acompanhamento .__option .__duo .__txt .--title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A2D55;
}
.home .__ordem_acompanhamento .__button_two {
  margin: 75px auto 0 auto;
}
.home .__metodologia {
  margin-bottom: 75px;
}
.home .__metodologia .__top {
  width: calc(100% - 400px);
  margin: auto;
  padding: 40px 90px;
  border-radius: 20px;
  background: #07519B;
  color: #fff;
  font-weight: 700;
  z-index: 2;
  position: relative;
}
.home .__metodologia .__content {
  width: calc(100% - 200px);
  margin: -70px auto 0 auto;
  border-radius: 20px;
  background: #FFF;
  padding: 145px 100px 75px 100px;
}
.home .__metodologia .__content .--line {
  width: 55%;
  height: 2px;
  background: #E2C19E;
  margin: 75px auto;
}
.home .__metodologia .__content .--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.home .__metodologia .__content .__item {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.home .__metodologia .__content .__item .--title {
  color: #07519B;
  font-size: 1.5rem;
}
.home .__metodologia .__content .__item .--title b {
  color: inherit;
  font-size: inherit;
}
.home .__oque_falam {
  background: #294159 url("../images/bg_footer_oque_falam.png") no-repeat bottom -100px center;
  background-size: contain;
  padding: 75px 0 125px 0;
}
.home .__oque_falam .--line {
  width: 60%;
  height: 2px;
  background: #fff;
  margin: 65px auto 100px auto;
}
.home .__oque_falam .__titleMainSuper {
  text-align: center;
  max-width: 700px;
  margin: auto;
}
.home .__oque_falam .__item p {
  color: #fff;
}
.home .__oque_falam .__item.--duo {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 50px;
}
.home .__oque_falam .__item.--duo .__img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.home .__oque_falam .__item.--duo .__img img {
  object-fit: cover;
}
.home .__quem_sou {
  padding: 85px 0;
  background: #F3F2F0;
  border-radius: 0 0 80px 80px;
}
.home .__quem_sou .__one {
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 20px;
}
.home .__quem_sou .__one .__txt {
  max-width: 500px;
  margin-top: 30px;
}
.home .__quem_sou .__one .__txt .__top {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 25px;
}
.home .__quem_sou .__one .__txt .__top span {
  font-size: 0.875rem;
}
.home .__quem_sou .__one .__txt p:not(:last-child) {
  margin-bottom: 20px;
}
.home .__quem_sou .__end {
  max-width: 1250px;
  margin: auto;
  border-radius: 20px;
  background: #07519B;
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 50px;
  padding: 95px 80px 55px 80px;
  margin-top: -60px;
}
.home .__quem_sou .__end p {
  color: #fff;
}
.home .__quem_sou .__end p b {
  color: inherit;
}
.home .__quem_sou .__end .--txt {
  position: relative;
}
.home .__quem_sou .__end .--txt .__button_three {
  position: absolute;
  top: -120px;
  left: 0;
}

/* RESPONSIVE */
/* DESKTOP LARGE - 1400px*/
@media screen and (max-width: 87.5rem) {
  .home {
    border-radius: 60px;
  }
  .home .__metodos_tratamento {
    margin-bottom: 40px;
  }
  .home .__metodos_tratamento .__top {
    padding: 55px 35px 150px 35px;
    gap: 100px;
  }
  .home .__metodos_tratamento .__top .__titleMain {
    max-width: 390px;
  }
  .home .__metodos_tratamento .__top .__txt {
    max-width: 510px;
  }
  .home .__metodos_tratamento .__emphasis {
    padding: 30px 60px;
    width: calc(100% - 100px);
  }
  .home .__metodos_tratamento .__emphasis .__head {
    margin-bottom: 30px;
  }
  .home .__metodos_tratamento .__emphasis .__grid .--list {
    gap: 25px;
  }
  .home .__metodos_tratamento .__emphasis .__grid .--list .__item {
    height: 85px;
  }
  .home .__metodos_tratamento .__emphasis .__grid .--list .__item span {
    font-size: 1.375rem;
  }
  .home .__fazer_parte {
    margin-bottom: 45px;
  }
  .home .__fazer_parte .__content {
    width: calc(100% - 100px);
    gap: 80px;
    margin-bottom: 45px;
  }
  .home .__fazer_parte .__content .__txt {
    margin-top: 80px;
    padding: 60px 100px 60px 0;
  }
  .home .__ordem_acompanhamento {
    padding: 50px 60px;
    margin-bottom: 50px;
  }
  .home .__ordem_acompanhamento .--line {
    margin: 30px 0;
  }
  .home .__ordem_acompanhamento .__top {
    gap: 50px;
    margin-bottom: 50px;
  }
  .home .__ordem_acompanhamento .__option {
    padding: 0 60px;
    gap: 50px;
  }
  .home .__ordem_acompanhamento .__option .__duo .--number {
    font-size: 1.75rem;
  }
  .home .__ordem_acompanhamento .__option .__duo .__txt .--title {
    font-size: 1.375rem;
  }
  .home .__ordem_acompanhamento .__button_two {
    margin: 50px auto 0 auto;
  }
  .home .__metodologia {
    margin-bottom: 50px;
  }
  .home .__metodologia .__top {
    width: calc(100% - 300px);
    padding: 30px 60px;
  }
  .home .__metodologia .__content {
    padding: 120px 100px 50px 100px;
  }
  .home .__metodologia .__content .--line {
    margin: 50px auto;
  }
  .home .__metodologia .__content .__item {
    gap: 20px;
  }
  .home .__metodologia .__content .__item .--title {
    font-size: 1.375rem;
  }
  .home .__oque_falam {
    padding: 50px 0 100px 0;
  }
  .home .__oque_falam .--line {
    margin: 45px auto 60px auto;
  }
  .home .__oque_falam .__item.--duo {
    gap: 40px;
  }
  .home .__quem_sou {
    padding: 50px 0;
    border-radius: 0 0 60px 60px;
  }
  .home .__quem_sou .__end {
    gap: 50px;
    padding: 75px 80px 40px 80px;
  }
  .home .__quem_sou .__end .--txt .__button_three {
    position: absolute;
    top: -100px;
    left: 0;
  }
}
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .home {
    border-radius: 40px;
  }
  .home .__metodos_tratamento {
    margin-bottom: 30px;
  }
  .home .__metodos_tratamento .__top {
    padding: 30px 20px 150px 20px;
    gap: 30px;
  }
  .home .__metodos_tratamento .__top .__titleMain {
    max-width: 350px;
  }
  .home .__metodos_tratamento .__emphasis {
    padding: 30px;
    width: calc(100% - 80px);
  }
  .home .__metodos_tratamento .__emphasis .__head {
    margin-bottom: 25px;
  }
  .home .__metodos_tratamento .__emphasis .__grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
  }
  .home .__metodos_tratamento .__emphasis .__grid .--list {
    gap: 20px;
  }
  .home .__metodos_tratamento .__emphasis .__grid .--list .__item {
    height: 70px;
  }
  .home .__metodos_tratamento .__emphasis .__grid .--list .__item span {
    font-size: 1.25rem;
  }
  .home .__fazer_parte {
    margin-bottom: 30px;
  }
  .home .__fazer_parte .__content {
    width: calc(100% - 80px);
    gap: 50px;
    margin-bottom: 30px;
  }
  .home .__fazer_parte .__content .__img1 {
    max-width: 400px;
  }
  .home .__fazer_parte .__content .__txt {
    margin-top: 60px;
    padding: 40px 100px 40px 0;
  }
  .home .__fazer_parte .__content .--float {
    top: -40px;
  }
  .home .__ordem_acompanhamento {
    padding: 30px;
    margin-bottom: 30px;
  }
  .home .__ordem_acompanhamento .--line {
    margin: 30px 0;
  }
  .home .__ordem_acompanhamento .__top {
    gap: 30px;
    margin-bottom: 30px;
  }
  .home .__ordem_acompanhamento .__top .__titleMain {
    max-width: 330px;
  }
  .home .__ordem_acompanhamento .__option {
    padding: 0 50px;
    gap: 40px;
  }
  .home .__ordem_acompanhamento .__option .__duo .--number {
    font-size: 1.5625rem;
  }
  .home .__ordem_acompanhamento .__option .__duo .__txt .--title {
    font-size: 1.25rem;
  }
  .home .__ordem_acompanhamento .__button_two {
    margin: 30px auto 0 auto;
  }
  .home .__metodologia {
    margin-bottom: 30px;
  }
  .home .__metodologia .__top {
    width: calc(100% - 200px);
    padding: 30px 50px;
  }
  .home .__metodologia .__content {
    width: calc(100% - 80px);
    padding: 100px 80px 50px 80px;
  }
  .home .__metodologia .__content .--line {
    margin: 30px auto;
  }
  .home .__metodologia .__content .__item .--title {
    font-size: 1.25rem;
  }
  .home .__oque_falam {
    padding: 30px 0 100px 0;
    background-position: bottom center;
  }
  .home .__oque_falam .--line {
    margin: 30px auto;
  }
  .home .__quem_sou {
    padding: 30px 0;
    border-radius: 0 0 40px 40px;
  }
  .home .__quem_sou .__end {
    gap: 30px;
    padding: 75px 30px 30px 30px;
    margin-top: -20px;
  }
  .home .__quem_sou .__end .--txt .__button_three {
    top: -100px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .home .__metodos_tratamento .__top {
    padding: 30px 20px 140px 20px;
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
  .home .__metodos_tratamento .__top .__titleMain, .home .__metodos_tratamento .__top .__txt {
    max-width: 100%;
  }
  .home .__metodos_tratamento .__emphasis {
    padding: 20px;
    width: 100%;
  }
  .home .__metodos_tratamento .__emphasis .__head {
    flex-direction: column;
    gap: 10px;
  }
  .home .__metodos_tratamento .__emphasis .__head .__titleMain, .home .__metodos_tratamento .__emphasis .__head .__txt {
    max-width: 100%;
  }
  .home .__metodos_tratamento .__emphasis .__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home .__metodos_tratamento .__emphasis .__grid .--list .__item {
    padding: 5px 20px;
    height: auto;
  }
  .home .__metodos_tratamento .__emphasis .__grid .--list .__item br {
    display: none;
  }
  .home .__metodos_tratamento .__emphasis .__grid .--list .__item span {
    font-size: 1.125rem;
  }
  .home .__fazer_parte .__content {
    width: 100%;
    gap: 20px;
    flex-direction: column;
  }
  .home .__fazer_parte .__content .__img1 {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
  }
  .home .__fazer_parte .__content .__txt {
    margin-top: 0px;
    padding: 20px;
  }
  .home .__ordem_acompanhamento {
    padding: 20px;
  }
  .home .__ordem_acompanhamento .--line {
    margin: 30px 0;
  }
  .home .__ordem_acompanhamento .__top {
    flex-direction: column;
    gap: 20px;
  }
  .home .__ordem_acompanhamento .__top .__titleMain br {
    display: none;
  }
  .home .__ordem_acompanhamento .__top .__titleMain, .home .__ordem_acompanhamento .__top .__txt {
    max-width: 100%;
  }
  .home .__ordem_acompanhamento .__option {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .home .__ordem_acompanhamento .__option .__img {
    width: 100%;
  }
  .home .__ordem_acompanhamento .__option .__duo {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .home .__ordem_acompanhamento .__option .__duo .--number {
    font-size: 1.25rem;
    max-width: 40px;
    margin: auto;
  }
  .home .__ordem_acompanhamento .__option .__duo .__txt .--title {
    font-size: 1.25rem;
  }
  .home .__metodologia .__top {
    width: 100%;
    padding: 20px;
  }
  .home .__metodologia .__content {
    width: 100%;
    padding: 20px;
    margin: 20px 0 0 0;
  }
  .home .__metodologia .__content .--duo {
    grid-template-columns: 1fr;
  }
  .home .__metodologia .__content .__item .--title {
    font-size: 1.125rem;
  }
  .home .__oque_falam {
    padding: 30px 0;
  }
  .home .__oque_falam .__item.--duo {
    grid-template-columns: 1fr;
  }
  .home .__oque_falam .__item.--duo .__img {
    max-width: 400px;
    margin: auto;
  }
  .home .__quem_sou .__one {
    flex-direction: column;
  }
  .home .__quem_sou .__one .__txt {
    margin: 0;
  }
  .home .__quem_sou .__end {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    margin-top: 40px;
  }
  .home .__quem_sou .__end .--txt .__button_three {
    position: inherit;
    top: 0;
    margin: 0 auto 20px auto;
  }
}
/*
  ========================================
  POLITICA
  ========================================
*/
.politica h2 {
  font-size: 1.5625rem;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 50px;
  text-decoration: underline;
  color: #07519B;
}
.politica h3 {
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  margin: 30px 0;
  color: #294159;
}
.politica h3::before {
  content: "•";
  margin-right: 10px;
}
.politica .--red * {
  color: #d05b5b;
}
.politica p {
  font-size: 1rem;
  line-height: 20px;
  color: #F3F2F0;
  margin-bottom: 20px;
}
.politica p span {
  font-weight: 600;
  color: #294159;
}
.politica a {
  color: #294159;
  transition: all 0.3s;
}
.politica a:hover {
  color: #E2C19E;
}
.politica .--abc {
  margin-left: 20px;
  line-height: 25px;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .politica h2 {
    font-size: 1.375rem;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .politica h3 {
    font-size: 1.0625rem;
  }
  .politica p {
    font-size: 0.9375rem;
  }
  .politica a {
    font-size: 0.9375rem;
  }
}
/* TABLET BIG - 900px*/
@media (max-width: 56.25rem) {
  .politica h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .politica h3 {
    font-size: 1rem;
  }
  .politica p {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
  .politica a {
    font-size: 0.875rem;
  }
  .politica .--abc {
    margin-left: 10px;
    line-height: 20px;
  }
}
/* 
  ================================
  LOADING
  ================================
*/
.form_loading {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.form_loading_box {
  margin: auto;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.form_loading svg path {
  fill: #07519B;
}

.form_loading_box_title {
  margin-top: 15px;
  font-weight: 700;
  color: #fff;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
  ========================================
  TITLE MAIN
  ========================================
*/
.__titleMain {
  color: #07519B;
  font-size: 2.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.__titleMain * {
  color: inherit;
  font-size: inherit;
}
.__titleMain .--light {
  font-weight: 400;
}

.__titleMainSuper {
  color: #fff;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.__titleMainSuper * {
  color: inherit;
  font-size: inherit;
}
.__titleMainSuper .--light {
  font-weight: 400;
}

/* RESPONSIVE */
/* DESKTOP LARGE - 1400px*/
@media screen and (max-width: 87.5rem) {
  .__titleMain {
    font-size: 1.75rem;
  }
  .__titleMainSuper {
    font-size: 2.1875rem;
  }
}
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .__titleMain {
    font-size: 1.5rem;
  }
  .__titleMainSuper {
    font-size: 1.75rem;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .__titleMain {
    font-size: 1.25rem;
  }
  .__titleMainSuper {
    font-size: 1.5625rem;
  }
}
/* 
  ================================
  BUTTONS
  ================================
*/
.__button_one {
  border-radius: 10px;
  background-color: #07519B;
  width: fit-content;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  font-size: 1.25rem;
  font-weight: 400;
  color: #E2DFD8;
  transition: all 0.3s;
}
.__button_one:hover {
  background-color: #0A2D55;
  box-shadow: 5px 5px 20px -4px #0A2D55;
}

.__button_two {
  border-radius: 10px;
  background-color: #07519B;
  width: fit-content;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 1.25rem;
  font-weight: 400;
  color: #E2DFD8;
  transition: all 0.3s;
}
.__button_two:hover {
  background-color: #0A2D55;
  box-shadow: 5px 5px 20px -4px #0A2D55;
}

.__button_three {
  border-radius: 10px;
  background: #E2C19E;
  width: fit-content;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 0 35px;
  font-size: 1.25rem;
  font-weight: 400;
  color: #07519B;
  transition: all 0.3s;
}
.__button_three svg path {
  transition: all 0.3s;
}
.__button_three:hover {
  background-color: #0A2D55;
  color: #fff;
  box-shadow: 5px 5px 20px -4px #0A2D55;
}
.__button_three:hover svg path {
  stroke: #fff;
}

/* RESPONSIVE */
/* DESKTOP LARGE - 1400px*/
@media screen and (max-width: 87.5rem) {
  .__button_one {
    font-size: 1.125rem;
  }
  .__button_two {
    height: 50px;
    padding: 0 35px;
    font-size: 1.125rem;
  }
  .__button_three {
    height: 60px;
    padding: 0 30px;
    font-size: 1.125rem;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .__button_one {
    font-size: 1rem;
  }
  .__button_two {
    height: 40px;
    padding: 0 25px;
    font-size: 1rem;
  }
  .__button_three {
    height: 50px;
    gap: 10px;
    padding: 0 20px;
    font-size: 1rem;
  }
  .__button_three svg {
    height: 35px;
  }
}
/**/ /**/

/*# sourceMappingURL=style.css.map */
