* {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizelegibility;
  image-rendering: high-quality;
  border: 0;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  font-family: Inter, sans-serif;
  line-height: 1.1em;
}

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

button {
  cursor: pointer;
}

input {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

:root {
  --primaria: #3fae5f;
  --primaria-clara: #7fb94c;
  --primaria-escura: #0d5528;
  --header: #0d5528;
  --secundaria: #d83c15;
  --secundaria-clara: #f9ecb6;
  --apoio: #fff;
  --tracado: #cdcdcd;
  --borda: #ff5c00;
  --borda-input: #c6c6c6;
  --botao-standard: linear-gradient(90deg, #0d5528 0%, #3fae5f 100%);
  --botao-hover: linear-gradient(90deg, #0d5528 0%, #48e976 100%);
  --filtro: linear-gradient(90deg, #ce4a00 0%, #fd841d 100%);
  --descritivo: #393939;
  --destaque: #0d5528;
  --neutro: #fff;
  --input: #5a5a5a;
  --descritivo-2: #323232;
  --descritivo-3: #3f3f3f;
}

.button {
  background: var(--botao-standard);
  color: var(--apoio);
  text-transform: uppercase;
  border-radius: 5px;
  padding: 13px 0;
  font-weight: 700;
}

.button:hover {
  background: var(--botao-hover);
}

.button.zap {
  background: #14d140;
  position: relative;
}

.button.zap:hover {
  background: #2deb59;
}

.button.zap:after {
  content: url("zapzap.4dd5d046.svg");
  position: absolute;
  top: 9px;
  right: 10px;
}

.button.btn-load {
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--secundaria-clara);
  color: var(--secundaria-clara);
  width: 100%;
  background: none;
  border-radius: 5px;
  margin: 0 auto;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s ease-in-out;
  display: block;
}

.button.btn-load:hover {
  background-color: var(--secundaria-clara);
  color: var(--apoio);
}

.header {
  width: 100%;
  z-index: 3;
  background-color: #0000;
  position: fixed;
}

@media screen and (min-width: 820px) and (max-width: 1199px) {
  .header {
    background-color: var(--header);
  }
}

@media screen and (max-width: 819px) {
  .header {
    background-color: var(--header);
  }
}

@media (min-width: 1200px) {
  .header {
    position: absolute;
  }
}

.header__container {
  max-width: 1200px;
  justify-content: space-between;
  margin: 0 auto;
  display: flex;
}

@media (min-width: 1200px) {
  .header__container {
    padding-top: 20px;
  }

  .header__container .button {
    max-width: 280px;
    width: 100%;
    padding: 10px;
  }
}

@media screen and (max-width: 819px) {
  .header__container {
    display: block;
  }
}

.header ul {
  background-color: #0000;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

@media screen and (max-width: 819px) {
  .header ul {
    background-color: var(--header);
  }
}

.header li a {
  color: var(--neutro);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
}

@media screen and (max-width: 819px) {
  .header li a.button {
    display: none;
  }
}

.header .logo {
  float: left;
  margin-left: 30px;
  padding: 10px 20px;
  font-size: 2em;
  text-decoration: none;
  display: block;
}

.header .menu {
  clear: both;
  max-height: 0;
  align-items: center;
  transition: max-height .2s ease-out;
  display: flex;
}

.header .menu-icon {
  cursor: pointer;
  float: left;
  -webkit-user-select: none;
  user-select: none;
  padding: 41px 20px;
  position: relative;
}

.header .menu-icon .navicon {
  background: var(--apoio);
  height: 2px;
  width: 18px;
  transition: background .2s ease-out;
  display: block;
  position: relative;
}

.header .menu-icon .navicon:before, .header .menu-icon .navicon:after {
  background: var(--apoio);
  content: "";
  height: 100%;
  width: 100%;
  transition: all .2s ease-out;
  display: block;
  position: absolute;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 300px;
  height: 80%;
  width: 100vw;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: none;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 55em) {
  .header li {
    float: left;
  }

  .header li a {
    padding: 10px;
  }

  .header .menu {
    clear: none;
    float: right;
    max-height: none;
    gap: 30px;
    margin-right: -30px;
    display: flex;
  }

  .header .menu-icon {
    display: none;
  }
}

.capao {
  flex-direction: column-reverse;
  display: flex;
  position: relative;
}

.capao__img {
  padding-top: 40px;
  position: relative;
}

.capao__img--degrade {
  display: none;
}

.capao__img--img {
  height: 740px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  z-index: 9;
}

.capao__img--img.mobile {
  display: block;
}

@media (min-width: 900px) {
  .capao__img--img.mobile {
    display: none;
  }
}

.capao__img--img.desktop {
  display: none;
}

@media (min-width: 901px) {
  .capao__img--img.desktop {
    display: block;
  }
}

@media (min-width: 1200px) {
  .capao__img--img {
    height: 430px;
  }
}

@media (min-width: 1368px) {
  .capao__img--img {
    height: 630px;
  }
}

.capao__img--svg {
  position: absolute;
  bottom: -40px;
}

.capao__img--svg.mobile {
  display: block;
}

@media (min-width: 900px) {
  .capao__img--svg.mobile {
    display: none;
  }
}

.capao__img--svg.desktop {
  display: none;
}

@media (min-width: 901px) {
  .capao__img--svg.desktop {
    display: block;
  }
}

@media (min-width: 1200px) {
  .capao__img {
    padding-top: 0;
  }

  .capao__img--degrade {
    height: 140px;
    width: 51.66%;
    background: linear-gradient(#000000ab 0%, #00000005 100%);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.capao__buttons {
  width: 100%;
  text-align: center;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
  display: flex;
  position: absolute;
}

.capao__buttons .button {
  background: var(--filtro);
}

.capao__buttons .button.zap {
  background: #14d140;
  position: relative;
}

.capao__buttons .button.zap:hover {
  background: #2deb59;
}

@media (min-width: 1200px) {
  .capao__buttons {
    display: none;
  }
}

.capao .lead__form {
  display: none;
}

@media (min-width: 1200px) {
  .capao .lead__form {
    width: 350px;
    display: block;
    position: absolute;
    top: 130px;
    right: 265px;
    box-shadow: 0 32px 21px -23px #00000045;
  }
}

@media (min-width: 1368px) {
  .capao .lead__form {
    width: 400px;
    right: 400px;
  }
}

.cards {
  padding-top: 100px;
}

@media (min-width: 1200px) {
  .cards {
    padding-top: 250px;
  }
}

.cards__titulo {
  color: var(--destaque);
  border-left: 7px solid #ff5c00;
  margin-bottom: 30px;
  margin-left: 30px;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

@media (min-width: 1200px) {
  .cards__titulo {
    max-width: 1100px;
    margin: 0 auto 70px;
    font-size: 30px;
    line-height: 59px;
  }
}

@media (min-width: 1368px) {
  .cards__titulo {
    max-width: 1368px;
  }
}

.cards__container {
  gap: 40px;
  padding: 10px 20px 10px 30px;
  display: flex;
  overflow: auto;
}

@media (min-width: 1200px) {
  .cards__container {
    max-width: 1100px;
    gap: 30px;
    margin: 0 auto;
    padding: 10px 5px;
  }
}

@media (min-width: 1368px) {
  .cards__container {
    max-width: 1368px;
    gap: 45px;
  }
}

.cards__card {
  width: 295px;
  border-radius: 15px;
  flex-grow: 1;
  flex-shrink: 0;
  padding: 23px 45px;
  box-shadow: 0 4px 4px #00000040;
}

@media (min-width: 1200px) {
  .cards__card {
    width: 200px;
    padding: 20px 25px;
  }
}

@media (min-width: 1368px) {
  .cards__card {
    width: 300px;
  }
}

.cards__card--img {
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px;
  padding: 20px;
  box-shadow: inset 0 1px 4px #00000040;
}

.cards__card--titulo {
  color: var(--destaque);
  max-height: 3.3em;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1em;
  overflow: hidden;
}

.cards__card--descricao {
  max-height: 4.4em;
  line-height: 1.1em;
  overflow: hidden;
}

.descubra {
  height: 56vh;
  color: var(--apoio);
  background-color: #0000;
  background-image: url("quadrados.e7ec10a6.png"), url("bg-video.3d26dce3.svg");
  background-position: 0 0, 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll, scroll;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  margin: 60px auto 60px -1px;
  padding-top: 30px;
  position: relative;
}

@media (min-width: 1200px) {
  .descubra {
    height: 69vh;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .descubra:before {
    content: url("unama-vertical.2ae08085.svg");
    position: absolute;
    top: -128px;
    left: 40px;
    transform: scale(.77);
  }

  .descubra:after {
    content: url("unama-vertical.2ae08085.svg");
    position: absolute;
    top: -100px;
    right: 40px;
    transform: scale(.77)rotate(180deg);
  }
}

@media (min-width: 1368px) {
  .descubra:after {
    top: 0;
    transform: scale(1)rotate(180deg);
  }

  .descubra:before {
    top: 0;
    transform: scale(1);
  }
}

.descubra__elements {
  margin: 0 auto;
  position: absolute;
  bottom: -5px;
  left: 30px;
  right: 0;
}

@media (min-width: 1200px) {
  .descubra__elements {
    display: none;
  }
}

.descubra__container {
  max-width: 370px;
  margin: 0 auto;
}

.descubra__container img {
  border-radius: 21px;
}

@media (min-width: 1200px) {
  .descubra__container {
    max-width: 1200px;
    height: 300px;
    background: #d9d9d92e;
    border-radius: 19px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .descubra__container img {
    width: 400px;
    height: 300px;
    object-fit: cover;
  }
}

@media (min-width: 1368px) {
  .descubra__container {
    height: 440px;
    max-width: 1400px;
  }

  .descubra__container img {
    width: 600px;
    height: 440px;
  }
}

.descubra__content {
  font-weight: 700;
}

@media (min-width: 1200px) {
  .descubra__content {
    max-width: 500px;
    border-radius: 19px;
    padding: 39px 70px;
  }
}

@media (min-width: 1368px) {
  .descubra__content {
    max-width: 670px;
  }
}

.descubra__content--texto {
  margin-bottom: 10px;
  line-height: 20px;
}

@media (min-width: 1200px) {
  .descubra__content--texto {
    font-size: 20px;
  }
}

.descubra__content--titulo {
  font-size: 27px;
  line-height: 26px;
}

@media (min-width: 1368px) {
  .descubra__content--titulo {
    font-size: 48px;
    line-height: 43px;
  }
}

.descubra__content--descricao {
  max-height: 3.3em;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.1em;
  overflow: hidden;
}

.descubra__video {
  text-align: center;
}

.descubra__video--iframe {
  width: 300px;
  height: 200px;
  border-radius: 19px;
}

@media (min-width: 1200px) {
  .descubra__video--iframe {
    width: 400px;
    height: 300px;
  }
}

@media (min-width: 1368px) {
  .descubra__video--iframe {
    width: 650px;
    height: 440px;
  }
}

.search {
  max-width: 350px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .search {
    max-width: 1200px;
    z-index: 9;
    position: relative;
  }
}

.search__titulo {
  border-left: 7px solid var(--borda);
  color: var(--destaque);
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 29px;
}

@media (min-width: 1200px) {
  .search__titulo {
    font-size: 40px;
    line-height: 60px;
  }
}

.search__descricao {
  max-width: 290px;
  color: var(--descritivo);
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .search__descricao {
    max-width: 1200px;
    margin-top: 40px;
    font-size: 16px;
  }
}

.search__search {
  max-width: 310px;
  flex-direction: column;
  gap: 10px;
  margin: 30px auto;
  display: flex;
}

@media (min-width: 1200px) {
  .search__search {
    max-width: 890px;
    flex-direction: row;
    gap: 25px;
    margin: 30px 0;
  }
}

.search__search--input, .search__search--select {
  border: 1px solid var(--borda-input);
  height: 39px;
  border-radius: 22px;
  padding: 5px 60px;
  position: relative;
}

.search__search--input select, .search__search--input input, .search__search--select select, .search__search--select input {
  width: 100%;
  height: 100%;
}

.search__search--input select:focus-visible, .search__search--input input:focus-visible, .search__search--select select:focus-visible, .search__search--select input:focus-visible {
  outline: none;
}

.search__search--input select, .search__search--select select {
  appearance: unset;
  outline: none;
}

@media (min-width: 1200px) {
  .search__search--input {
    flex-grow: 1;
  }
}

.search__search--input:before {
  content: url("lupa.4c7111c3.svg");
  position: absolute;
  top: 10px;
  left: 20px;
}

@media (min-width: 1200px) {
  .search__search--select {
    max-width: 280px;
    padding-right: 50px;
  }
}

.search__search--select:before {
  content: url("filtro.4e8e889d.svg");
  position: absolute;
  top: 13px;
  left: 22px;
  transform: scale(1.2);
}

.search__container {
  max-width: 340px;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto;
  display: flex;
}

@media (min-width: 1200px) {
  .search__container {
    max-width: 1200px;
    justify-content: center;
    gap: 40px 25px;
  }
}

.search__card {
  background-color: var(--primaria-escura);
  max-width: 340px;
  width: 100%;
  color: var(--apoio);
  text-transform: uppercase;
  border-radius: 8px;
  padding: 20px 25px;
}

@media (min-width: 1200px) {
  .search__card {
    max-width: 280px;
  }
}

.search__card--pill {
  text-transform: initial;
  background-color: var(--apoio);
  color: var(--destaque);
  border-radius: 14px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  display: inline-block;
}

.search__card--titulo {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .search__card--titulo {
    font-size: 14px;
  }
}

.search__card--info {
  justify-content: space-between;
  display: flex;
}

.search__card--bold {
  font-size: 14px;
  font-weight: 700;
}

.search__card--bold span {
  font-weight: normal;
}

.search__card .btn-2 {
  width: 100%;
  text-align: center;
  background: var(--filtro);
  margin-top: 20px;
  padding: 8px 0;
  display: block;
}

.search__btn-load {
  text-transform: uppercase;
  text-align: center;
  max-width: 240px;
  border: 1px solid #ff5c00;
  border-radius: 5px;
  margin: 30px auto 60px;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s ease-in-out;
}

@media (min-width: 1200px) {
  .search__btn-load {
    margin-top: 60px;
  }
}

.search__btn-load a {
  color: #ff5c00;
  width: 100%;
}

.search__btn-load:hover {
  background-color: #ff5c00;
}

.search__btn-load:hover a {
  color: var(--apoio);
}

.conheca {
  height: 800px;
  color: var(--neutro);
  background: url("fundo-conheca.27dd0d61.svg");
  margin-left: -1px;
  padding-top: 100px;
  position: relative;
}

.conheca__topo {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 0 auto 70px;
  display: flex;
}

.conheca__topo .search__search--select {
  background-color: var(--neutro);
}

@media (min-width: 1200px) {
  .conheca__topo {
    max-width: 1200px;
    flex-direction: row;
  }
}

.conheca__container {
  display: flex;
}

@media (min-width: 1200px) {
  .conheca__container {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
  }
}

.conheca__titulo {
  border-left: 7px solid var(--borda);
  padding-left: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

@media (min-width: 1200px) {
  .conheca__titulo {
    font-size: 30px;
    line-height: 28px;
  }

  .conheca__titulo br {
    display: unset;
  }
}

.conheca__descricao {
  letter-spacing: 0;
  text-align: center;
  max-width: 940px;
  margin: 50px auto 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.panel {
  height: 400px;
  cursor: pointer;
  color: var(--neutro);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex: .5;
  transition: flex .75s ease-in;
  position: relative;
}

.panel:first-of-type {
  border-radius: 16px 0 0 16px;
}

.panel:last-of-type {
  border-radius: 0 16px 16px 0;
}

.panel h3 {
  opacity: 0;
  margin: 0;
  font-size: 1.2rem;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.panel.active {
  background-color: linear-gradient(180deg, #0d4e9e0e 50%, #0d4e9eb3 100%), #d9d9d9;
  flex: 2;
  position: relative;
}

.panel.active h3 {
  opacity: 1;
  transition: opacity .3s ease-in .4s;
}

@media (max-width: 480px) {
  .conheca__container {
    width: 90vw;
    margin: 0 auto;
  }

  .conheca__container .panel {
    height: 200px;
  }

  .panel:nth-of-type(3) {
    border-radius: 0 16px 16px 0;
  }

  .panel:nth-of-type(4), .panel:nth-of-type(5) {
    display: none;
  }
}

.sobre {
  margin-top: 40px;
}

@media (min-width: 1200px) {
  .sobre {
    justify-content: space-between;
    margin-top: 0;
    display: flex;
  }

  .sobre__content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 60px;
    display: flex;
  }
}

@media (min-width: 1368px) {
  .sobre__content {
    padding-top: 130px;
    padding-left: 250px;
  }
}

.sobre .container {
  max-width: 370px;
  margin: 0 auto 20px;
}

@media (min-width: 1200px) {
  .sobre .container {
    max-width: 500px;
    margin: 10px 0;
  }
}

.sobre__local {
  color: var(--descritivo);
  align-items: flex-start;
  gap: 7px;
  font-weight: 400;
  display: flex;
}

.sobre__titulo {
  color: var(--destaque);
  border-left: 7px solid var(--borda);
  padding-left: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

@media (min-width: 1200px) {
  .sobre__titulo {
    font-size: 40px;
    max-width: 600px !important;
  }
}

.sobre__desc {
  color: var(--descritivo-2);
  font-size: 15px;
  line-height: 18px;
}

@media (min-width: 1200px) {
  .sobre__desc {
    font-size: 16px;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
}

.sobre__desc.mobile {
  display: block;
}

@media (min-width: 900px) {
  .sobre__desc.mobile {
    display: none;
  }
}

.sobre__desc.desktop {
  display: none;
}

@media (min-width: 901px) {
  .sobre__desc.desktop {
    display: block;
  }
}

.sobre__img-local {
  margin-bottom: 50px;
}

.sobre__img-local.mobile {
  display: block;
}

@media (min-width: 900px) {
  .sobre__img-local.mobile {
    display: none;
  }
}

.sobre__img-local.desktop {
  display: none;
}

@media (min-width: 901px) {
  .sobre__img-local.desktop {
    display: block;
  }
}

.sobre__grupo-ser {
  color: var(--descritivo);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media (min-width: 1200px) {
  .sobre__grupo-ser {
    font-size: 30px;
  }
}

.sobre__grupo-ser.mobile {
  display: block;
}

@media (min-width: 900px) {
  .sobre__grupo-ser.mobile {
    display: none;
  }
}

.sobre__grupo-ser.desktop {
  display: none;
}

@media (min-width: 901px) {
  .sobre__grupo-ser.desktop {
    display: block;
  }
}

.blog {
  max-width: 360px;
  margin: 60px auto;
}

.blog__container {
  flex-wrap: wrap;
  row-gap: 50px;
  display: flex;
}

@media (min-width: 1200px) {
  .blog {
    max-width: 1200px;
  }

  .blog__container {
    justify-content: space-between;
    display: flex;
  }
}

.blog__titulo {
  color: var(--destaque);
  text-align: center;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  position: relative;
}

@media (min-width: 1200px) {
  .blog__titulo {
    font-size: 30px;
    line-height: 36px;
  }
}

.blog__titulo:after {
  content: "";
  width: 110px;
  height: 7px;
  background: var(--borda);
  margin: 0 auto;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
}

.blog__card {
  image-rendering: optimizequality;
}

@media (min-width: 1200px) {
  .blog__card {
    max-width: 335px;
  }
}

.blog__card img {
  border-radius: 14px;
}

.blog__card--titulo {
  color: var(--destaque);
  margin: 20px auto;
  padding: 0 10px;
  font-weight: 700;
  line-height: 19px;
}

.blog__card--desc {
  color: var(--destaque);
  max-height: 4.4em;
  margin-bottom: 20px;
  line-height: 1.1em;
  overflow: hidden;
}

.lead {
  color: var(--apoio);
  background-image: url("quadrados.e7ec10a6.png"), url("bg-video.3d26dce3.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: -1px;
  padding: 60px 30px;
}

@media (min-width: 1200px) {
  .lead {
    margin-top: 50px;
    padding: 100px 0;
  }

  .lead__container {
    max-width: 1200px;
    justify-content: center;
    gap: 120px;
    margin: 0 auto;
    display: flex;
  }

  .lead__content {
    max-width: 380px;
    padding-top: 100px;
  }
}

.lead__primeiro-texto {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

@media (max-width: 480px) {
  .lead__desc-1 {
    display: none;
  }
}

.lead__desc {
  max-width: 900px;
  margin: 50px auto 0;
}

@media (min-width: 1200px) {
  .lead__desc {
    display: none;
  }
}

.lead__titulo {
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 27px;
  font-weight: 800;
  line-height: 36px;
  position: relative;
}

@media (min-width: 1200px) {
  .lead__titulo {
    font-size: 30px;
  }
}

.lead__titulo:after {
  content: url("risco-laranja.cdd4ab9e.svg");
  margin: 0 auto;
  position: absolute;
  bottom: -12px;
  left: -28px;
  right: 0;
}

@media (min-width: 1200px) {
  .lead__titulo:after {
    left: -11px;
  }
}

.lead__form {
  background: var(--apoio);
  width: 400px;
  border-radius: 12px;
  margin-bottom: 40px;
  padding: 25px 30px;
  box-shadow: 0 32px 21px 23px #00000045;
}

.lead__form--texto {
  color: var(--destaque);
  margin-bottom: 25px;
  font-weight: 700;
}

.lead__form .form {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.lead__form .form__input {
  border: 1px solid var(--borda-input);
  border-radius: 6px;
  padding: 10px 15px;
}

.lead__form .form__input input::placeholder {
  color: var(--input);
  font-size: 12px;
  font-weight: 600;
}

.faq {
  margin-top: 60px;
  margin-bottom: 80px;
}

.faq__titulo {
  max-width: 360px;
  color: var(--destaque);
  border-left: 7px solid var(--borda);
  margin: 0 auto 40px;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

@media (min-width: 1200px) {
  .faq__titulo {
    max-width: 890px;
    font-size: 30px;
    line-height: 35px;
  }
}

.faq__container {
  max-width: 360px;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  display: flex;
}

@media (min-width: 1200px) {
  .faq__container {
    max-width: 890px;
  }
}

.faq__pergunta {
  border-bottom: 1px solid var(--tracado);
  padding-bottom: 15px;
}

.faq__pergunta .pergunta {
  color: var(--destaque);
  max-width: 335px;
  max-height: 3.3em;
  cursor: pointer;
  margin-bottom: 10px;
  line-height: 1.1em;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .faq__pergunta .pergunta {
    max-width: 890px;
  }
}

.faq__pergunta .pergunta:after {
  content: url("seta-faq.b0a1bad6.svg");
  transition: all .3s ease-in-out;
  position: absolute;
  top: 5px;
  right: 1px;
}

.faq__pergunta .pergunta.ativo:after {
  transform: rotate(-90deg);
}

.faq__pergunta .resposta {
  color: var(--descritivo);
  display: none;
}

.footer {
  border-top: 1px solid var(--input);
  padding-top: 50px;
}

.footer__container {
  text-align: center;
}

@media (min-width: 1200px) {
  .footer__container {
    text-align: left;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 125px;
    margin-bottom: 50px;
    display: flex;
  }
}

.footer__logo {
  margin-bottom: 40px;
}

@media (min-width: 1200px) {
  .footer__logo {
    margin-bottom: 0;
    margin-left: 200px;
    transform: scale(1.5);
  }
}

.footer__items {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  display: flex;
}

.footer__items--titulo {
  color: var(--destaque);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.footer__items--link {
  color: var(--descritivo-3);
  font-weight: 400;
}

.footer__socials {
  justify-content: center;
  align-items: center;
  gap: 30px;
  display: flex;
}

.footer__socials--svg {
  width: 45px;
  height: 45px;
  background-color: #e7f2ff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: all .2s ease-in-out;
  display: flex;
}

.footer__socials--svg svg {
  flex-shrink: 0;
  transform: scale(.9);
}

.footer__socials--svg:hover {
  background: var(--primaria);
}

.footer__socials--svg:hover svg path {
  fill: var(--neutro);
  stroke: var(--primaria);
}

.footer__fermento {
  text-align: center;
  margin-top: 30px;
}

/*# sourceMappingURL=index.dbe47c9b.css.map */
