@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --cor-primaria: #284b70;
}
* {
  scrollbar-color: rgb(223, 227, 232) rgb(249, 250, 251);
  scrollbar-width: thin;
  box-sizing: border-box;
}
html,
body {
  font-family: "Baloo 2", sans-serif;
  background-color: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}
body {
  margin: 0 auto;
  min-height: 100vh;
}
main {
  overflow: hidden;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  outline: 0;
}
button,
input,
a,
select {
  outline: 0 !important;
  border: 0;
  text-decoration: none;
}
header {
  background-color: var(--cor-primaria);
  padding: 15px 0;
}
.inter {
  font-family: "Inter", sans-serif;
}
.content-header .logo {
  max-width: 90px;
}

button.btnDoar {
  background-color: #24ca68;
  width: 400px;
  max-width: 100%;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  padding: 0 !important;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  transition-timing-function: ease, ease;
  transition-timing-function: ease, ease;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  font-size: 24px;
  font-weight: 700;
  gap: 10px;
  height: 60px;
  animation: pulsando 3s infinite;
  margin: 0 auto;
}
button.btnDoar svg {
  width: 28px;
  height: 28px;
  fill: #fc3333;
}
@keyframes pulsando {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgb(31 161 88 / 0.7);
  }
  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 10px #fff0;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 #fff0;
  }
}

section#doacao {
  padding: 50px 0 60px;
  position: relative;
  background-color: #fff;
}
section#doacao h2 {
  font-weight: 700;
  color: var(--cor-primaria);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
}
section#doacao p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  max-width: 740px;
  margin: 0 auto 20px;
}
section#doacao .video {
  max-width: 700px;
  border-radius: 30px;
  background-color: #333;
  overflow: hidden;
  margin: 0 auto 35px;
}
.video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 590px;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section#como-doar {
  background-color: #24ca68;
  padding: 50px 0;
  position: relative;
}
section#como-doar h2 {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
section#como-doar h2:after {
  content: "";
  width: 50px;
  height: 4px;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
}
section#como-doar .iconPix {
  text-align: center;
  margin: 0 auto 20px;
}
section#como-doar .iconPix svg {
  width: 50px;
  height: 50px;
}
section#como-doar .iconPix svg path {
  fill: #fff;
}
section#como-doar .boxPassos {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto 20px;
}
section#como-doar .boxPassos h3 {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  line-height: 1;
  margin: 0 0 10px;
}
section#como-doar .boxPassos p {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 7px;
  color: #fff;
}
section#como-doar .content-pix {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 30px;
  border-radius: 15px;
}
.valores a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #24ca68;
  border-radius: 5px;
  font-size: 18px;
  height: 44px;
  width: 24%;
  font-weight: 700;
  transition: all 0.2s linear;
  margin-bottom: 12px;
}
.valores a:hover {
  transform: scale(1.04);
}
section#como-doar .content-pix h2 {
  text-align: center;
  font-weight: 700;
  color: var(--cor-primaria);
  font-size: 28px;
  margin: 0 0 20px;
}
section#como-doar .content-pix p.first {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  color: var(--cor-primaria);
  margin: 0 auto 5px;
}
section#como-doar .content-pix input {
  background-color: #f4f4f4;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 5px 15px;
  font-family: "Inter";
  font-weight: 500;
  text-align: center;
  font-size: 16px;
  width: 100%;
  margin: 0 auto 10px;
}
section#como-doar .content-pix p.last {
  color: var(--cor-primaria);
  margin: 0 auto 10px;
  text-align: center;
  font-weight: 600;
  font-family: "Inter";
}
section#como-doar .content-pix .btnCopiaChave {
  background-color: #24ca68;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.2s linear;
  gap: 10px;
  width: 100%;
  height: 52px;
  border-radius: 8px;
}
section#como-doar .content-pix .btnCopiaChave:hover {
  background-color: #19a754;
}
section#como-doar button.btnDoar {
  border: 8px solid #fff !important;
  border-radius: 50px !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.3) !important;
}
section#como-doar .content-pix + p:last-child {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0;
}
.provasSociais {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.provasSociais .provaSocial {
  width: calc(50% - 10px);
}
.provasSociais .provaSocial a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
}
.provasSociais .provaSocial a img {
  transition: all 0.2s linear;
}
.provasSociais .provaSocial a:hover img {
  opacity: 0.8;
}
section#destino {
  background-color: #fff;
  padding: 60px 0;
  position: relative;
}
section#destino h2 {
  font-weight: 700;
  color: var(--cor-primaria);
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 auto 15px;
  text-align: center;
}
section#destino .destino {
  margin: 0 auto 35px;
}
section#destino .destino .dg {
  max-width: 160px;
}
section#destino .destino .boxTexto {
  border-radius: 16px;
  background-color: var(--cor-primaria);
  color: #fff;
  padding: 30px 30px;
  margin-left: -8px;
  max-width: 520px;
}
section#destino .destino .boxTexto h2 {
  color: #f8c100;
  text-transform: none;
  font-size: 24px;
  max-width: 320px;
}
section#destino .destino .boxTexto p {
  text-align: center;
  margin: 0;
}
section#destino h3 {
  text-align: center;
  color: var(--cor-primaria);
  font-weight: 700;
  font-size: 22px;
  margin: 0 auto;
}
section#destino h3 span {
  color: green;
}
section#destino .destinos-img {
  max-width: 570px;
  margin: 0 auto 35px;
}
section#como-funciona {
  padding: 60px 0;
  background-color: #fff;
}
section#como-funciona h2 {
  font-weight: 700;
  color: var(--cor-primaria);
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 auto 15px;
}
section#como-funciona h3 {
  text-align: center;
  color: var(--cor-primaria);
  font-weight: 700;
  font-size: 22px;
  margin: 0 auto 30px;
}
section#como-funciona p {
  text-align: center;
  font-size: 16px;
  color: #333;
  max-width: 900px;
  margin: 0 auto 30px;
}
section#como-funciona .itemFunciona {
  gap: 15px;
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 35px;
}
section#como-funciona .itemFunciona .number {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--cor-primaria);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
section#como-funciona .itemFunciona .text {
  flex: 1 0 0%;
}
section#como-funciona .itemFunciona .text h3 {
  text-align: left;
  margin: 0 0 5px;
  font-size: 24px;
}
section#como-funciona .itemFunciona .text p {
  text-align: left;
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
section#como-funciona .itemFunciona:last-of-type {
  margin-bottom: 50px;
}
section#historia {
  position: relative;
  background-color: #fdf795;
  padding: 40px 0 60px;
}
section#historia h2 {
  color: var(--cor-primaria);
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  margin: 0 auto 10px;
}
section#historia p {
  text-align: center;
  font-size: 16px;
  max-width: 920px;
  margin: 0 auto 20px;
}
.cards-historia {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  padding-top: 20px;
}
.cards-historia .cardHistoria {
  background-color: #fff;
  padding: 1em 1em 1em 1em;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #b3b3b3;
  border-radius: 16px 16px 16px 16px;
  height: 100%;
  max-width: 500px;
  width: 100%;
}
.cards-historia .cardHistoria .contentCard .icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--cor-primaria);
  margin: 0 auto 5px;
}
.cards-historia .cardHistoria .contentCard .icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.cards-historia .cardHistoria .contentCard h3 {
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  margin: 0 auto 5px;
  color: var(--cor-primaria);
}
.cards-historia .cardHistoria .contentCard p {
  text-align: center;
  font-size: 16px;
  color: #333;
  margin: 0;
}
.cards-historia .cardHistoria .contentCard p strong {
  display: block;
}
section#faq {
  background-color: #f4f4f4;
  padding: 60px 0;
  position: relative;
}
section#faq h2 {
  color: var(--cor-primaria);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin: 0 auto 50px;
}
section#faq .faq {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(13, 13, 13, 0.12);
  max-width: 900px;
  margin: 0 auto 15px;
}
section#faq .faq h3 {
  padding: 15px 20px;
  position: relative;
  color: var(--cor-primaria);
  font-weight: 600;
  font-size: 20px;
  margin: 0;
}
section#faq .faq h3 span + span {
  position: relative;
  width: 12px;
  height: 12px;
}
section#faq .faq h3 span + span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--cor-primaria);
  left: 0;
  top: 50%;
  transform: translatey(-50%);
}
section#faq .faq h3 span + span:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--cor-primaria);
  left: 50%;
  top: 0;
  transform: translatex(-50%);
  transition: all 0.2s linear;
}
section#faq .faq h3[aria-expanded="true"] span + span:after {
  opacity: 0;
  visibility: hidden;
}
section#faq .faq .content {
  padding: 0 20px 20px;
  font-size: 16px;
  color: #333;
}
section#faq .faq .content p {
  margin: 0;
}
footer {
  background-color: var(--cor-primaria);
  position: relative;
}
footer .content-footer {
  padding: 25px 0;
  border-bottom: 1px solid rgb(255, 255, 255, 0.3);
  text-align: center;
  font-size: 16px;
  color: #fff;
}
footer .copyright {
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(13, 13, 13, 0.75);
  position: fixed;
}
.modal.active .fora-modal {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  cursor: pointer;
}
.modal.active .content-modal {
  background-color: #fff;
  position: relative;
  z-index: 10;
  border-radius: 10px;
  padding: 25px;
  max-width: 96%;
}
.modal.active .content-modal h2 {
  text-align: center;
  font-weight: 700;
  color: #1e824c;
  font-size: 26px;
  margin: 0 auto;
}
.modal.active .content-modal h2 + h2 {
  font-size: 24px;
  margin: 0 auto 20px;
}
.modal.active .content-modal p {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin: 0 auto 5px;
}
.modal.active .content-modal .box-chave {
  background: #f1f8f5;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #cce5da;
}
.modal.active .content-modal .box-chave input {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-weight: 600;
  text-align: center;
  color: #131313;
}
.modal.active .content-modal .box-chave p.last {
  font-size: 18px;
  color: #1e824c;
  margin: 20px 0;
  text-align: center;
  font-weight: 600;
}
.modal.active .content-modal .box-chave button {
  background-color: #24ca68;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.2s linear;
  gap: 10px;
  width: 100%;
  height: 52px;
  border-radius: 8px;
}
.modal.active .content-modal .box-chave button:hover {
  background-color: #19a754;
}
.modal.active .content-modal .box-chave + p.last {
  font-weight: 600;
  color: #1e824c;
  text-align: center;
}
.area-contribuicao {
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
  min-height: calc(100vh - 302px);
}
.area-contribuicao h2 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: var(--cor-primaria);
  text-decoration: none;
  text-transform: none;
  margin: 0 0 25px;
}
.input-area {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
.input-area label {
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: rgb(64, 64, 64);
  margin: 0 2px 4px;
  width: 100%;
}
.input-area input {
  height: 46px;
  border: 1px solid rgb(185, 185, 185);
  border-radius: 8px;
  font-size: 16px;
  color: rgb(40, 40, 40);
  width: 100%;
  padding: 5px 15px 5px;
  background-color: #fff;
  font-family: Inter;
}
.input-area span.currency {
  background-color: rgb(241, 240, 240);
  color: rgb(40, 40, 40);
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px 0px 0px 8px;
  border: 1px solid rgb(185, 185, 185);
  width: 50px;
  height: 46px;
  border-right: 0;
  padding-bottom: 0;
  font-family: Inter;
  font-weight: 600;
}
.input-area span.currency + input {
  width: calc(100% - 50px);
  border-radius: 0 8px 8px 0;
  background-color: #f1f0f0;
}
.forma-pagamento h3 {
  color: rgb(40, 40, 40);
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 7px;
}
.forma-pagamento .radios .radio label {
  cursor: pointer;
  position: relative;
  border: 1px solid rgb(36, 202, 104);
  color: rgb(36, 202, 104);
  font-size: 18px;
  line-height: 21px;
  border-radius: 8px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  height: 39px;
  align-items: center;
  padding: 8px;
  opacity: 0.8;
}
.forma-pagamento .radios .radio label div {
  border-radius: 7px;
  height: 13px;
  width: 13px;
  margin-right: 5px;
  border: 1px solid rgb(36, 202, 104);
}
.forma-pagamento .radios .radio:not(:last-child) {
  margin-right: 5px;
}
.forma-pagamento .radios .radio input:checked + label {
  border: 1px solid transparent;
  background-color: rgb(36, 202, 104);
  color: #fff;
  opacity: 1;
}
.forma-pagamento .radios .radio input:checked + label div {
  border-radius: 7px;
  height: 13px;
  width: 13px;
  margin-right: 5px;
  outline: rgb(255, 255, 255) solid 1px;
  border: 3.5px solid rgb(36, 202, 104);
  background-color: rgb(255, 255, 255);
}
.forma-pagamento small {
  display: block;
  font-size: 13px;
  color: #555;
  margin: 2px 0 5px;
}
.turbinar label {
  display: block;
  font-size: 18px;
  line-height: 24px;
  position: relative;
  font-weight: 700;
  color: rgb(58, 58, 58);
  text-decoration: none;
  text-transform: none;
  padding-left: 23px;
  cursor: pointer;
}
.turbinar label:before {
  content: "✔";
  color: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(36, 202, 104);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  transition: all 0.2s linear;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.turbinar input:checked + label:before {
  background-color: rgb(36, 202, 104);
  border: 1px solid rgb(36, 202, 104);
}
.turbinar span {
  display: block;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: rgb(58, 58, 58);
  text-decoration: none;
  text-transform: none;
  margin: 5px 0 15px;
}
.turbinar span strong {
  font-weight: 700;
}
.forma-pagamento {
  margin: 10px 0 25px;
}
.resumo ul li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: rgb(138, 138, 138);
  text-decoration: none;
  text-transform: none;
}
.resumo ul li span.separador {
  width: 100%;
  height: 1px;
  background-color: rgb(223, 223, 223);
  margin: 12px 0px;
  display: block;
}
.resumo {
  margin: 0 0 20px;
}
.area-selo {
  background-color: rgb(241, 240, 240);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 620px;
  max-width: 100%;
  padding: 12px 8px;
  border-radius: 8px;
  margin: 0 0 20px;
}
.area-selo .selo {
  margin-right: 10px;
}
.area-selo span {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: rgb(58, 58, 58);
  text-decoration: none;
  text-transform: none;
}
button.btn-contribuir {
  -moz-box-align: center;
  align-items: center;
  cursor: pointer;
  color: rgb(255, 255, 255);
  border-radius: 8px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  border: 1px solid transparent;
  background-color: rgb(36, 202, 104);
  width: 100%;
  max-width: 1000px;
  transition: all 0.2s linear;
  height: 54px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 0 40px;
}
.loading__circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loading__circle-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--cor-primaria);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: loading__circle-spin 0.6s linear infinite;
}
@keyframes loading__circle-spin {
  to {
    transform: rotate(360deg);
  }
}
.ZmJzn svg {
  fill: var(--cor-primaria);
}
.msg-copiado {
  position: absolute;
  background: var(--cor_texto);
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  padding: 7px 10px 9px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.2s linear;
}
#pixArea p {
  font-size: 16px;
}
.options-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.options-qr #qrcode {
  width: 180px;
}
.options-qr-instructions {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  width: calc(100% - 200px);
}
.options-qr2 {
  display: none;
}
button#copy-button {
  background-color: var(--cor-primaria);
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s linear;
}
button#copy-button:hover {
  background-color: var(--cor-primaria);
}
#pixGeral {
  max-width: 650px;
  margin: 0 auto;
}
section#pix,
section.upsell {
  padding: 40px 0;
  min-height: calc(100vh - 302px);
}
.upsell-novo {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 20px;
}
.upsell-novo h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 auto 15px;
}
.upsell-novo p {
  font-size: 16px;
  color: #000;
  text-align: center;
  font-family: "Inter";
}
.upsell-novo p strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 18px;
}
.upsell-novo h3 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  text-align: center;
  margin: 30px auto 15px;
}
.upsell-novo .image {
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 20px;
  max-width: 500px;
}
.upsell-novo .ecrGfU {
  padding: 0;
}
.upsell-novo .bLTnwp {
  border-radius: 8px !important;
}
.upsell-novo .fvepao {
  margin: 0 auto 20px;
}
.upsell-novo .cRLruL {
  font-size: 15px;
  transition: all 0.2s linear;
}
.upsell-novo .YkWpX {
  padding: 8px 0px 2px;
}
.upsell-novo .cBAvc {
  font-size: 14px;
  transition: all 0.2s linear;
  cursor: pointer;
}
.upsell-novo .kFiyWA {
  padding: 16px 8px;
  transition: all 0.2s linear;
}
.upsell-novo .kFiyWA:hover {
  background-color: var(--cor-primaria);
}
.upsell-novo .kFiyWA:hover .cRLruL,
.upsell-novo .kFiyWA:hover .cBAvc {
  color: #fff;
}
.upsell-novo .area-button {
  padding: 0 0 20px;
  box-shadow: none;
}
section#corpo.upsell {
  background: #fef9ec;
  background: linear-gradient(
    180deg,
    rgb(254, 249, 236) 56.5%,
    rgba(255, 255, 255, 0) 56.5%
  );
}
.upsell-novo .btn-doar {
  width: 100%;
  margin: 0 auto 20px;
  border-radius: 8px;
  background-color: var(--cor-primaria);
  transition: all 0.2s linear;
  position: relative;
}
.upsell-novo .btn-doar:hover {
  transform: scale(1.04);
}
.upsell-novo .btn-doar .icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  margin-left: -15px;
}
.upsell-novo .area-selo {
  margin: 0 auto;
}
.upsell-novo .btn-doar .text {
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  padding: 8px 0;
}
.upsell-novo .botoes-theo .btn-medio {
  background-color: transparent;
  border: 1px dashed rgb(136, 136, 136);
  border-radius: 8px;
  width: 32%;
  padding: 16px 8px;
  margin: 0 0 20px;
  transition: all 0.2s linear;
  animation: pulse 2s ease-in-out infinite;
  transform-origin: center;
  text-align: center;
  position: relative;
}
.upsell-novo .botoes-theo input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 6;
}
.upsell-novo .botoes-theo .btn-medio:hover {
  background-color: var(--cor-primaria);
}
.upsell-novo .botoes-theo .btn-medio .text {
  color: #000;
  transition: all 0.2s linear;
}
.upsell-novo .botoes-theo .btn-medio:hover .text {
  color: #fff;
}
.upsell-novo .botoes-theo .btn-medio .text strong {
  display: block;
  font-size: 15px;
  padding: 6px 0 2px;
}
.upsell-novo .botoes-theo .btn-medio .text span {
  display: block;
  font-size: 14px;
}
.upsell-novo .botoes-theo {
  max-width: 570px;
  margin: 0 auto;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
.upsell-novo .botoes-theo .d-flex .btn-medio:nth-child(1) {
  animation-delay: 0s;
}
.upsell-novo .botoes-theo .d-flex .btn-medio:nth-child(2) {
  animation-delay: 1s;
}
.upsell-novo .botoes-theo .d-flex .btn-medio:nth-child(3) {
  animation-delay: 2s;
}
h2.title-obrigado {
  text-align: center;
  color: var(--cor-primaria);
  font-size: 32px;
  margin: 0 auto 20px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .area-button {
    position: fixed;
    width: 100%;
    background-color: #fff;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    box-shadow: 0 0 10px rgba(13, 13, 13, 0.2);
    z-index: 999;
  }

  .content-header .logo {
    max-width: 80px;
  }
  section#doacao {
    padding: 40px 0 50px;
    position: relative;
    background-color: #fff;
  }
  section#doacao h2 {
    font-size: 24px;
  }
  section#doacao p {
    font-size: 15px;
  }
  section#como-doar h2 {
    font-size: 28px;
  }
  section#como-doar .boxPassos h3 {
    font-size: 20px;
  }
  section#como-doar .boxPassos p {
    font-size: 14px;
  }
  section#como-doar .content-pix p.first,
  section#como-doar .content-pix + p:last-child {
    font-size: 18px;
    line-height: 22px;
  }
  section#destino .destino .dg {
    display: none;
  }
  section#destino {
    padding: 50px 0;
  }
  section#destino h2 {
    font-size: 24px;
    max-width: 320px;
    margin: 0 auto;
  }
  section#destino h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .provasSociais {
    padding-top: 20px;
    gap: 0px;
  }
  .provasSociais .provaSocial {
    width: 100%;
    margin-bottom: 15px;
  }
  section#historia h2 {
    font-size: 26px;
  }
  .cards-historia {
    flex-wrap: wrap;
    gap: 0;
  }
  .cards-historia .cardHistoria {
    margin-bottom: 20px;
  }
  section#como-funciona h2 {
    font-size: 24px;
  }
  section#como-funciona .itemFunciona {
    flex-wrap: wrap;
  }
  section#como-funciona .itemFunciona .text {
    flex: auto;
    width: 100%;
  }
  section#como-funciona .itemFunciona .number {
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }
  section#como-funciona .itemFunciona .text h3 {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    max-width: 280px;
    margin: 0 auto 5px;
  }
  section#como-funciona .itemFunciona .text p {
    text-align: center;
    margin: 0;
    font-size: 15px;
  }
  section#como-funciona h3 {
    font-size: 18px;
  }
  section#faq {
    padding: 40px 0;
  }
  section#faq h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }
  section#faq .faq h3 {
    font-size: 18px;
    line-height: 22px;
  }
  section#faq .faq h3 span:first-child {
    padding-right: 10px;
    flex: 1 0 0%;
  }
  section#faq .faq .content p {
    font-size: 15px;
  }
  footer .content-footer {
    font-size: 14px;
    line-height: 18px;
  }
  footer .copyright {
    font-size: 13px;
  }
  .modal.active .content-modal h2 {
    font-size: 22px;
  }
  .modal.active .content-modal p {
    font-size: 15px;
  }
  .modal.active .content-modal .box-chave p.last {
    line-height: 22px;
  }
  section button.btnDoar {
    display: none !important;
  }
  section#como-doar button.btnDoar {
    display: flex !important;
    margin-top: 30px;
    border: 8px solid #fff !important;
    border-radius: 50px !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5),
      0 0 20px rgba(255, 255, 255, 0.3) !important;
  }
  .ajudar {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(13, 13, 13, 0.2);
    width: 100%;
    padding: 10px 0;
  }
  section#doacao .video {
    border-radius: 15px;
    width: 340px;
    margin: 0 auto 30px;
  }
  .video-container {
    height: 454px;
  }
  .valores a {
    width: 110px;
    height: 40px;
    font-size: 16px;
  }
  .modal.active .content-modal {
    padding: 25px 15px;
  }
  section#como-doar .content-pix {
    padding: 30px 12px;
  }
  .options-qr .options-qr-instructions {
    display: none;
  }
  .options-qr2 {
    display: block;
  }
  #pixGeral {
    text-align: center;
  }
  #pixGeral h1 + p {
    text-align: center !important;
  }
  h2.title-obrigado {
    font-size: 22px;
  }
  .upsell-novo p {
    font-size: 15px;
  }
  section#corpo.upsell {
    background: #fef9ec;
    background: linear-gradient(
      180deg,
      rgb(254, 249, 236) 52%,
      rgba(255, 255, 255, 0) 52%
    );
  }
  button.btn-contribuir {
    margin: 0;
  }
}
