/** Reset CSS **/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

body {
  line-height: 1;
  color: black;
  background: white;
}

ol,
ul {
  list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
}

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

blockquote,
q {
  quotes: "" "";
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: Bernier;
  src: url("/fonts/bernier/BERNIERRegular-Regular.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  src: url("/fonts/inter/Inter-Bold.woff") format("woff");
}

@font-face {
  font-family: LibreBaskerville;
  font-weight: bold;
  src: url("/fonts/librebaskerville/LibreBaskerville-Bold.woff") format("woff");
}

@font-face {
  font-family: LibreBaskerville;
  font-weight: 400;
  src: url("/fonts/librebaskerville/LibreBaskerville-Regular.woff") format("woff");
}

html,
body {
  overflow-x: hidden;
}

body {
  background: linear-gradient(#050b30, #050b30);
  font-family: LibreBaskerville, serif;
  font-size: 18px;
  line-height: 1.2;
  color: #212121;
}

header {
  display: flex;
  align-items: center;
  padding: 0 26px;
}

header img {
  max-height: 145px;
}

header .socials {
  flex-grow: 1;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

header .socials img {
  max-height: 40px;
}

main h1,
main h2,
main h3 {
  line-height: 1.3;
}

main section {
  min-height: 88vh;
  min-height: 766px;
}

main button.cta {
  margin-top: 16px;
  color: #f4f1ec;
  background: #ff3131;
  border: 0;
  font-family: Inter, san-serif;
  font-size: 17px;
  font-weight: bold;
  padding: 16px 20px;
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 8px;
}

main button.cta img {
  height: 26px;
}

main div.cta {
  padding-top: 64px;
  display: flex;
  justify-content: center;
}

main .text-center {
  text-align: center;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) !important;
  transform: translateY(0) !important;
}

.hidden.cta {
  transform: translateY(100%);
}

.show.cta {
  transform: translateY(0);
}

#sectionHero {
  min-height: 904px;
  background: #fdfdfd;
  display: grid;
  grid-template-columns: 1fr fit-content(1262px) 1fr;
  grid-template-areas: ". content .";
}

#sectionHero>div {
  grid-area: content;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  grid-template-areas: "hero hero" "img moneybags";
  position: relative;
}

#sectionHero>div>div.hero {
  grid-area: hero;
  font-size: 64px;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

#sectionHero>div>div.hero>div {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}

#sectionHero>div>div.hero>div p:nth-child(1) {
  transform: translateY(-100%);
}

#sectionHero>div>div.hero>div .cta {
  display: none;
}

#sectionHero>div>div.img {
  grid-area: img;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 16px;
  gap: 46px;
}

#sectionHero>div>div.moneybags {
  grid-area: moneybags;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 46px;
  padding-bottom: 46px;
}

@media (max-width: 844px) {
  #sectionHero>div>div.moneybags {
    padding-right: 16px;
  }
}

@media (max-width: 500px) {
  #sectionHero>div {
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "img" "moneybags";
    padding-top: 32px;
  }

  #sectionHero>div>div.hero {
    font-size: 24px;
    padding: 5%;
  }

  #sectionHero>div>div.hero p:nth-child(2) {
    line-height: 1.7;
  }

  #sectionHero>div>div.hero>div .cta {
    display: flex;
  }

  #sectionHero>div>div.img {
    padding: 32px 16px 0;
  }

  #sectionHero>div>div.img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 75%;
  }

  #sectionHero>div>div.moneybags {
    margin-top: 16px;
    padding-left: 16px;
    padding-bottom: 32px;
  }

  #sectionHero>div>div.moneybags .hidden:nth-child(2n+1) {
    transform: translateX(100%);
  }

  #sectionHero>div>div.moneybags .show:nth-child(2n+1) {
    transform: translateX(0);
  }
}

@media (max-width: 500px) {
  #sectionHero>div button.cta.floats {
    position: absolute;
    top: 64px;
    box-shadow: 4px 4px 6px rgba(23, 23, 23, 0.6);
  }

  #sectionHero>div .firstCtaBtnPlaceholder {
    margin-top: -46px;
    margin-bottom: -46px;
  }
}

#sectionHero h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

#sectionHero ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

#sectionHero ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: bold;
}

#sectionEscolhas {
  background: #F4F1EC;
  display: grid;
  grid-template-columns: 1fr fit-content(1262px) 1fr;
  grid-template-areas: ". content .";
}

#sectionEscolhas>div {
  grid-area: content;
  padding: 64px 0;
}

#sectionEscolhas h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

#sectionEscolhas .list {
  padding-top: 64px;
}

#sectionEscolhas .list .item {
  padding: 13px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-gap: 26px;
}

#sectionEscolhas .list .item .icon {
  border: 3px solid #232323;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sectionEscolhas .list .item .icon img {
  width: 36px;
  height: 36px;
}

#sectionEscolhas .list .item .text {
  display: flex;
  align-items: center;
  border-bottom: 3px solid #232323;
  font-size: 21px;
  font-weight: bold;
}

@media (max-width: 500px) {
  #sectionEscolhas .list {
    grid-template-columns: 1fr;
    grid-gap: 12px;
  }
}

#sectionDepoimentos {
  display: grid;
  grid-template-columns: 1fr fit-content(1262px) 1fr;
  grid-template-areas: ". content .";
  background: #fdfdfd;
}

#sectionDepoimentos>div {
  grid-area: content;
  padding: 64px 0;
}

#sectionDepoimentos h2 {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
}

#sectionDepoimentos .testimonials {
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 46px;
}

#sectionDepoimentos .testimonials .testimonial {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

#sectionDepoimentos .testimonials .testimonial img {
  max-width: 50%;
}

#sectionDepoimentos .testimonials .testimonial .stars {
  text-align: center;
}

#sectionDepoimentos .testimonials .testimonial .who {
  font-size: 26px;
  text-align: center;
}

#sectionDepoimentos .testimonials .testimonial:nth-child(2) {
  transition-delay: 200ms;
}

#sectionDepoimentos .testimonials .testimonial:nth-child(3) {
  transition-delay: 400ms;
}

@media (max-width: 844px) {
  #sectionDepoimentos .testimonials {
    padding: 16px;
  }
}

@media (max-width: 500px) {
  #sectionDepoimentos .testimonials {
    grid-template-columns: 1fr;
  }

  #sectionDepoimentos .hidden:nth-child(2n+1) {
    transform: translateX(100%);
  }

  #sectionDepoimentos .show:nth-child(2n+1) {
    transform: translateX(0);
  }
}

#sectionParaQuem {
  background: #F4F1EC;
  display: grid;
  grid-template-columns: 1fr fit-content(1262px) 1fr;
  grid-template-areas: ". content .";
  padding: 64px 0;
}

#sectionParaQuem>div {
  grid-area: content;
}

#sectionParaQuem h2 {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
}

#sectionParaQuem .who-list {
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 46px;
}

#sectionParaQuem .who-list ul {
  padding: 0;
}

#sectionParaQuem .who-list ul li {
  display: flex;
  font-size: 29px;
  font-weight: bold;
  padding: 12px 16px;
  background: #ffce00;
  margin: 12px;
  border-radius: 15px;
  height: 60px;
}

#sectionParaQuem .who-list ul li span {
  align-self: center;
}

#sectionParaQuem .who-list ul li:before {
  content: '   ';
  width: 30px;
  font-size: 29px;
  padding: 12px 16px;
  border-radius: 15px;
  background: #ffce00;
  margin: -24px 16px -24px -24px;
  border: 12px solid #F4F1EC;
  border-radius: 50%;
}

@media (max-width: 844px) {
  #sectionParaQuem .who-list {
    grid-gap: 0;
  }

  #sectionParaQuem .who-list ul li {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  #sectionParaQuem .who-list {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  #sectionParaQuem .who-list ul:last-child {
    margin-top: -8px;
  }
}

#sectionMissao {
  display: grid;
  grid-template-columns: 1fr fit-content(1262px) 1fr;
  grid-template-areas: ". content .";
  padding: 64px 0;
  color: #fdfdfd;
  min-height: auto;
}

#sectionMissao>div {
  grid-area: content;
  padding: 0 16px;
  text-align: center;
}

#sectionMissao h2 {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 64px;
  background: linear-gradient(90deg, #d20000 15%, #fdfdfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#sectionTeServir {
  display: grid;
  grid-template-columns: 1fr fit-content(1262px) 1fr;
  grid-template-areas: ". content .";
  background: #fdfdfd;
  padding: 64px 0;
}

#sectionTeServir>div {
  grid-area: content;
}

#sectionTeServir h2 {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 64px;
}

#sectionVerse {
  display: grid;
  grid-template-columns: 1fr fit-content(1262px) 1fr;
  grid-template-areas: ". content .";
  padding-top: 64px;
  min-height: auto;
}

#sectionVerse>div {
  position: relative;
  grid-area: content;
  color: #fdfdfd;
}

#sectionVerse>div>div {
  max-width: calc(100% - 357px);
}

@media (max-width: 844px) {
  #sectionVerse>div {
    padding-left: 16px;
  }
}

@media (max-width: 672px) {
  #sectionVerse>div {
    padding-left: 16px;
  }

  #sectionVerse>div>div {
    max-width: 100%;
    padding: 16px;
  }
}

#sectionVerse h2 {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
}

#sectionVerse .about {
  padding-top: 64px;
  font-size: 22px;
  font-weight: bold;
}

#sectionVerse .verse {
  margin: 0 auto;
  font-size: 14px;
}

#sectionVerse .verse span.jesus {
  color: #ff3131;
}

#sectionVerse .verse p:last-child {
  margin-top: 16px;
}

#sectionVerse img.julia {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
}

#sectionVerse img.julia.hidden {
  transform: translateX(100%);
}

@media (max-width: 672px) {
  #sectionVerse img.julia {
    max-width: 250px;
  }

  #sectionVerse .verse {
    padding-right: 50%;
  }
}

@media (max-width: 428px) {
  #sectionVerse img.julia {
    max-width: 159px;
  }

  #sectionVerse .verse {
    padding-right: 40%;
  }
}

#sectionVerse .footer {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  align-items: center;
  color: #C7AE83;
  font-size: 18px;
}

#sectionVerse .footer img {
  height: 100px;
}

#sectionVerse .footer p {
  display: contents;
}

#sectionVerse .footer .mail-icon {
  height: 20px;
}

.form {
  position: relative;
  padding: 64px;
  margin: auto;
  max-width: 1000px;
  width: 90vw;
  border: 4px solid #F6CF46;
  border-radius: 36px;
}

.form .questions {
  display: flex;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
}

.form .question {
  width: 100%;
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: center;
  transform-origin: center center;
}

.form .question>label {
  font-size: 26px;
  padding-bottom: 18px;
  display: flex;
  gap: 16px;
}

.form .question>label:before {
  content: "" attr(data-question) ") ";
}

.form .question>label i {
  color: #ff3131;
}

@media (max-width: 500px) {
  .form .question>label {
    font-size: 24px;
  }
}

.form .navigation button {
  position: absolute;
  background: #feec00;
  border: #232323;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 12px;
  cursor: pointer;
  color: #232323;
}

.form .navigation .previous {
  left: 64px;
  display: none;
}

.form .navigation .next {
  right: 64px;
}

.form .navigation .submit {
  right: 64px;
  display: none;
  background: #ff3131;
  color: #f4f1ec;
}

.form .navigation .submitError {
  opacity: 0;
  position: absolute;
  right: 64px;
  background: #232323;
  color: white;
  bottom: 64px;
  padding: 8px;
  font-size: .8em;
  border-radius: 3px;
}

.form .navigation .submitError:after {
  position: absolute;
  bottom: -5px;
  right: 32px;
  content: '';
  width: 5px;
  height: 5px;
  background-color: #232323;
  border-style: solid;
  border-color: #232323;
  border-width: 0 0 5px 5px;
  transform: rotate(-45deg);
}

.form .navigation .submitError.show {
  transition: bottom .2s, opacity .2s;
  opacity: 1;
  bottom: 84px;
}

.form .navigation .successMsg {
  display: none;
  position: absolute;
  top: 64px;
  right: 64px;
  left: 64px;
  bottom: 64px;
  background: #FDFDFD;
  font-size: 84px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 500px) {
  .form .navigation .successMsg {
    font-size: 60px;
  }
}

.form .navigation .loader {
  position: absolute;
  right: 64px;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 3px;
  background: radial-gradient(farthest-side, #ff3131 95%, transparent) 50% 0/12px 12px no-repeat, radial-gradient(farthest-side, transparent calc(100% - 5px), #ff3131 calc(100% - 4px)) content-box;
  animation: s6 2s infinite;
}

@keyframes s6 {
  to {
    transform: rotate(1turn);
  }
}

.form.loading button {
  display: none !important;
}

.form.loading .loader {
  display: block;
}

.form.success .successMsg {
  display: flex;
}

.form.success button {
  display: none !important;
}

.form .answers {
  padding-top: 16px;
  padding-left: 38px;
}

.form .answers.text label {
  display: inline-block;
  padding: 8px 0;
}

.form input[type=text] {
  width: 90%;
  max-width: 250px;
  display: block;
  border: 1px solid #9a9a9a;
  font-size: 18px;
  padding: 3px;
  border-radius: 3px;
}

.form .check-answer {
  display: table;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  margin-bottom: 16px;
}

.form .check-answer input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form .check-answer span {
  font-size: 18px;
}

.form .check-answer .input {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  background: #fdfdfd;
  border-radius: 3px;
  border: 1px solid #9a9a9a;
  transition: background 250ms;
  transform: translate(0, -50%);
}

.form .check-answer .input:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  transition: background 250ms;
  background-color: #FFFFFF;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.form .check-answer input:checked+.input {
  background: #ffce00;
  border-color: #ffce00;
}

.form .check-answer input:checked+.input:after {
  display: block;
}

.form .check-answer:hover .input {
  background: #ffce00;
}

footer {
  background: #fdfdfd;
  padding: 16px;
}

footer img {
  height: 60px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 10px;
  background: #25d366;
  font-family: Inter, san-serif;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 30px;
  cursor: pointer;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}