/*
*Fontes dos icones
*/
@font-face {
    font-family: 'haoc-site-institucional';
    src:
      url('../fonts/haoc-site-institucional.ttf') format('truetype'),
      url('../fonts/haoc-site-institucional.woff') format('woff'),
      url('../fonts/haoc-site-institucional.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Simplon BP Bold';
    src: url('../fonts/SimplonBP-Bold.woff') format('woff'),
    url('../fonts/SimplonBP-Bold.woff2') format('woff2'),
    url('../fonts/SimplonBP-Bold.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'Simplon BP';
    src: url('../fonts/SimplonBP-Medium.woff') format('woff'),
    url('../fonts/SimplonBP-Medium.woff2') format('woff2'),
    url('../fonts/SimplonBP-Medium.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'Roustel';
    src: url('../fonts/Roustel.woff') format('woff'),
    url('../fonts/Roustel.woff2') format('woff2'),
    url('../fonts/Roustel.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
    font-style: normal;
  }
  [class*=" icon-"]:before,
[class^=icon-]:before {
    font-family: 'haoc-site-institucional';
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: 'Simplon BP', sans-serif;
}
.flex { display: flex; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.align-flex-end { align-items: flex-end; }
.justify-center {justify-content: center;margin-top: auto;margin-bottom: 0px;}
.justify-space {justify-content: center;}
.justify-between {justify-content: space-evenly;}
@media screen and (min-width: 900px) {
  .page-doar-transforma .only-mobile {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .page-doar-transforma .only-mobile {
    display: block;
  }
}
.iconized {
  position: relative;
  margin-left: 35px;
}
.iconized:before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  left: -35px;
  top: 5px;
}

.font-secondary {
  line-height: 0.7;
  margin-bottom: 50px;
  font-family: 'Roustel', sans-serif;
  text-transform: none!important;
  display: block;
  color: #00B5B4;
  font-size: 60px;
}

@media screen and (max-width: 350px) {
  .font-secondary {
    line-height: 0.9;
  }
}
.site-header {
  background-color: white;
}
.header .container {
  padding-left: 10px;
  padding-right: 10px;
}

.header {
  padding: 20px;
}

.header nav {
  font-family: 'Simplon BP Bold';
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header nav .menu {
  display: flex;
  list-style: none;
  margin: 0px;
}

.header nav .menu .menu-item {
  display: flex;
  align-items: center;
  position: relative;
  color: #007C8A;
  padding: 0px 8px;
}
.header nav .menu .menu-item + .menu-item {
  margin-left: 33px;
}
.header nav .menu .menu-item a {
  color: inherit;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: color .2s ease;
}
.header nav .menu .menu-item a:hover {
  color: #00B5B4;
}
.header nav .menu .menu-item + .menu-item:before {
  content: "|";
  font-family: 'sans-serif';
  font-weight: 100;
  font-size: 40px;
  color: inherit;
  position: absolute;
  left: -12px;
  -webkit-font-smoothing: none;
  left: -20px;
  top: -3px;
}
@media screen and (max-width: 1200px) {
  .header nav .menu .menu-item a {
    font-size: 15px;
  }
}

@media screen and (max-width: 990px) {
  .header > .container {
    width: auto;
  }
}
@media screen and (max-width: 900px) {
  .header .container {
    width: auto;
  }
  .header nav .menu .menu-item {
    font-size: 17px;
  }
}
@media screen and (max-width: 900px) {
  .header nav .hamburguer {
    border: 0px;
    background: 0px;
    width: 30px;
    padding: 0px;
    height: 35px;
  }
  .header nav .hamburguer span {
    width: 100%;
    height: 5px;
    background: #00B5B4;
    display: block;
    margin-top: 3px;
  }
  .header nav .hamburguer span:first-of-type {
    margin-top: 0px;
  }
  .header nav .menu {
    position: absolute;
    top: 68px;
    flex-direction: column;
    align-items: flex-end;
    padding: 0px;
    width: 293px;
    padding: 20px 55px 0px 0px;
    right: -18px;
    background: white;
    transform: translateX(100vw);
    transition: all .4s ease;
    box-shadow: 7px 3px 14px 1px #00000036;
  }
  .header nav .menu.active {
    transform: translateX(0vw);
  }
  .menu .close {
    position: absolute;
    right: 20px;
    transform: rotate(-90deg);
    top: 15px;
    color: #007C8A;
    opacity: 1;
    width: 20px;
    height: 20px;
  }
  .menu .close:before {
    content: '\e804';
  }
  .header nav .menu .menu-item {
    font-size: 18px;
    padding: 13px 0px 0px;
    max-width: 150px;
    text-align: right;
    position: relative;
  }
  .header nav .menu .menu-item + .menu-item {
    margin-left: 0px;
    margin-top: 8px;
  }
  .header nav .menu .menu-item + .menu-item:before {
    content: ""!important;
    width: 139px;
    height: 1px;
    position: absolute;
    background-color: #107c89;
    top: 0px;
    right: 0px;
    left: auto;
  }
  .header nav .menu .menu-item:last-of-type {
    padding-bottom: 15px;
  }
}

.menu-btn-group {
  display: none;
}
.page-doar-transforma h1, .page-doar-transforma h2, .page-doar-transforma h3 { font-family: 'Simplon BP Bold';color: #007C8A;text-transform: uppercase; }
.page-doar-transforma h1, .page-doar-transforma h2.h1 { font-size: 100px; }
.page-doar-transforma h2 {font-size: 70px;}
@media screen and (max-width: 500px) {
  .page-doar-transforma h2.-smaller {font-size: 56px;}
}
@media screen and (max-width: 420px) {
  .page-doar-transforma h2.-smaller {font-size: 50px;}
}
@media screen and (max-width: 350px) {
  .page-doar-transforma h2.-smaller {font-size: 44px;}
}
.page-doar-transforma h3 {font-size: 38px;text-transform: none;margin-top:0px;}
.page-doar-transforma p strong { color: #3E3E3E;font-family: 'Simplon BP Bold'; }
.page-doar-transforma strong.coloured { color: #007C8A; }
.page-doar-transforma .btn {
  font-family: 'Simplon BP Bold';
  background-color: #007C8A;
  color: white!important;
  text-transform: uppercase;
  font-size: 35px;
  border-radius: 15px;
}
.page-doar-transforma .btn:hover {
  background: #01A6B4;
  color: white;
}

.page-doar-transforma .infos-agendamento p {
  color: white;
}
.page-doar-transforma p.title {
  font-family: 'Simplon BP Bold';
  margin-top: 20px;
  text-transform: uppercase;
  color: #007C8A;
}
.page-doar-transforma .container {
  position: relative;
}
.page-doar-transforma .swiper-button-prev,
.page-doar-transforma .swiper-button-next {
  background-color: #1db4bc;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  top: 50%;
}
.page-doar-transforma .swiper-button-prev {
  /* left: -35px; */
}
.page-doar-transforma .swiper-button-next {
  /* right: -35px; */
}
.page-doar-transforma .swiper-button-prev:after,
.page-doar-transforma .swiper-button-next:after {
  font-size: 22px;
  color: white;
  font-weight: 900;
}
.page-doar-transforma .swiper-button-next.swiper-button-disabled,
.page-doar-transforma .swiper-button-prev.swiper-button-disabled {
  pointer-events: all;
}

#doar-transforma,
#compartilhe-essa-ideia {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #007C8A;
  padding: 90px 0px;
}

#doar-transforma .btn,
#compartilhe-essa-ideia .btn {
  margin-top: 25px;
}
#doar-transforma p {
  max-width: 400px;
}

#doar-transforma img{
  width: 600px;
  max-width: 49%;
}
#compartilhe-essa-ideia img {
  width: 500px;
  max-width: 45%;
}

@media screen and (max-width: 900px) {
  #doar-transforma h1 span{
    font-size: 90px;
  }
  p {
    font-size: 16px;
  }
  .page-doar-transforma .btn {
    font-size: 28px;
  }
}
@media screen and (max-width: 992px) {
  .page-doar-transforma h3 {
    text-align: center;
  }
  #doar-transforma {
   flex-direction: column-reverse; 
   padding: 40px 20px;
  }
  #doar-transforma img{
    max-width: 100%;
  }
  #doar-transforma h1 {
    font-size: 100px;
    text-transform: uppercase;
  }
  #doar-transforma h1 span{
    font-size: 80px;
  }
  p {
    font-size: 16px;
  }
}

#nossa-historia {
  background-color: #E6F8F8;
  padding: 30px 0px;
}
#nossa-historia .swiper-slide {
  color: #1cb5b3;
}

#nossa-historia h2 {
  display: flex;
  justify-content: center;
  align-items: self-end;
  font-size: 70px;
}
#nossa-historia h2 > .font-secondary {
  font-size: 60px;
  display: initial;
  line-height: 1.7;
  margin: 0px 0px 0px 15px;
}
#nossa-historia p {
  width: 100%;
  max-width: 660px;
  text-align: center;
  margin: auto;
}
#nossa-historia .nossa-historia-images {
  margin-top: 60px;
}
#nossa-historia .nossa-historia-images .font-secondary {
  color: #007C8A;
  line-height: 2;
  margin-top: -20px;
  font-size: 46px;
}
#nossa-historia img {
  max-width: 70%;
  display: block;
  margin: 0px auto;
}
@media screen and (min-width: 900px) {
  #nossa-historia .nossa-historia-images .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    transform: translate3d(0px,0,0)!important;
  }
  .page-doar-transforma .swiper-button-prev,
  .page-doar-transforma .swiper-button-next {
    display: none;
  }
  #nossa-historia .swiper-slide {
    width: auto!important;
  }
  #nossa-historia img {
    max-width: 85%;
  }
}

#voce-faz-a-diferenca {
  padding: 40px 0px;
}

#voce-faz-a-diferenca .voce-faz-a-diferenca-images {
  margin-top: 40px
}
#voce-faz-a-diferenca p {
  width: 100%;
  max-width: 660px;
  text-align: center;
  margin: auto;
}
#voce-faz-a-diferenca p.valor {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 210px;
  font-weight: 800;
  font-size: 50px;
  color: #107c89;
  line-height: 0.8;
  margin: 30px auto 20px;
}
#voce-faz-a-diferenca p.valor span {
  font-size: 20px;
  color: #107c89;
}
#voce-faz-a-diferenca img {
  max-width: 50%;
  display: block;
  margin: 0px auto;
}

#como-doar {
  background-color: #E6F8F8;
  padding: 30px 0px;
}
#como-doar p,
#como-doar a {
  font-family: 'Simplon BP Bold';
  font-size: 22px;
  color: #3E3E3E;
}

#como-doar p > span { font-family: 'Simplon BP'!important; }
#como-doar .deposito-container {
  width: 730px;
  max-width: 100%;
  margin: auto;
}
#como-doar .icon-deposito:before {
  background-image: url('../images/doar-transforma/icon-deposito.svg');
}
#como-doar hr {
  border-top: 1px solid #007C8A;
  width: 50%;
  margin: 50px auto;
}

#como-doar .flex .box-agencia-conta{
  display: flex;
  flex-direction: row;
}
#como-doar .flex .box-agencia-conta p+p{
  margin-left: 15px;
}
#como-doar .btn {
  margin-top: 15px;
  padding: 15px 20px!important;
}
#como-doar .icon-ir {
  width: 350px;
  margin-left: 50px;
  margin-right: 130px;
}
#como-doar .icon-ir:before {
  background-image: url('../images/doar-transforma/icon-ir.svg');
  left: -50px;
  width: 43px;
  height: 52px;
  background-size: contain;
}
#como-doar .icon-email:before {
  background-image: url('../images/doar-transforma/icon-email.svg');
  width: 35px;
  height: 20px;
  background-size: contain;
  top: 3px;
}
#como-doar .icon-whatsapp:before {
  background-image: url('../images/doar-transforma/icon-whatsapp.svg');
  width: 25px;
  height: 25px;
  background-size: contain;
  top: 3px;
}

@media screen and (max-width: 900px) {
  #como-doar p {
    font-size: 20px;
  }
  #como-doar .icon-ir {
    margin-right: 20px;
}
}
@media screen and (max-width: 680px) {
  #como-doar .flex {
    flex-direction: column;
  }
  #como-doar .flex .iconized{
    margin-left: 40px;
  }
  #como-doar .flex .iconized.icon-deposito {
    margin-left: -55px;
  }
  #como-doar .flex .box-agencia-conta{
    flex-direction: column;
  }
  
#como-doar .flex .box-agencia-conta p+p{
  margin-left: 0px;
}
  #como-doar .deposito-container > .flex p+p {
    margin-left: 0px;
  }
  #como-doar .deposito-container h3 {
    margin-top: 10px;
  }
  #como-doar .deposito-container p {
    text-align: left;
  }
  #como-doar hr {
    margin: 25px auto
  }
  #como-doar h3 {
    text-align: center;
    margin-top: 50px;
  }
  #como-doar p {
    font-size: 18px;
    text-align: center;
    /* display: inline-flex; */
    margin: 5px 0px;
  }
  #como-doar .icon-ir {
    margin-left: 50px;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  #como-doar .icon-ir:before {
    left: -50px;
    top: 3px;
  }
}
@media screen and (max-width: 500px) {
  #como-doar .icon-ir {
    width: auto;
    margin-left: 50px;
    margin-right: 0px;
  }
}

#compartilhe-essa-ideia .somos-parte-container {
  max-width: 100%;
  width: 500px;
}
@media screen and (max-width: 1200px) {
  #compartilhe-essa-ideia .somos-parte-container {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  #compartilhe-essa-ideia h2.h1 {
    font-size: 80px;
  }
  p {
    font-size: 16px;
  }
  #compartilhe-essa-ideia .somos-parte-container {
    max-width: 100%;
    width: 350px;
  }
  #compartilhe-essa-ideia h2 .font-secondary {
    line-height: 0.2;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 680px) {
  #compartilhe-essa-ideia {
   flex-direction: column; 
   padding: 40px 20px;
  }
  #compartilhe-essa-ideia img {
    max-width: 100%;
  }
  #compartilhe-essa-ideia h2 {
    font-size: 100px;
    text-transform: uppercase;
  }
  #compartilhe-essa-ideia h2 span{
    font-size: 80px;
  }
}

.btn-float {
  position: fixed;
  cursor: pointer;
  right: 5%;
  bottom: 6%;
  width: 160px;
  height: 160px;
  image-rendering: -webkit-optimize-contrast;
  background-image: url('../images/doar-transforma/btn-quero-doar.png');
  background-size: contain;
  z-index: 8;
  transition: all .2s ease;
}
.btn-float:hover {
  transform: translate(2px, -2px);
}
@media screen and (max-width: 900px) {
  .btn-float {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 680px) {
  .btn-float {
    width: 120px;
    height: 120px;
    right: 3%;
    bottom: 1%;
  }
}
@media screen and (max-width: 400px) {
  .btn-float {
    width: 100px;
    height: 100px;
  }
}

.page-doar-transforma .addthis_sharing_toolbox {
  position: fixed;
  cursor: pointer;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
  width: 500px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  background-color: white;
  z-index: 10;
  transition: all .2s ease;
  border-radius: 12px;
  box-shadow: 2px 10px 20px 8px rgb(0 0 0 / 20%);

  transform: translateX(100vw);
  transition: all .25s ease;
}
.page-doar-transforma .addthis_sharing_toolbox.active {
  transform: translateX(0px);
}

.page-doar-transforma .addthis_container {
  height: 100%;
  padding: 25px 25px 25px 25px;
  text-align: center;
}
.page-doar-transforma .addthis_sharing_toolbox h3 {
  font-size: 32px;
  margin: 20px 0px 30px;
}
.page-doar-transforma .addthis_sharing_toolbox a {
  display: inline-block;
  width: 70px;
  max-width: 24%;
  height: auto;
  aspect-ratio: 1/1;
}
.page-doar-transforma .addthis_sharing_toolbox span,
.page-doar-transforma .addthis_sharing_toolbox svg {
  width: 100%!important;
  height: 100%!important;
}
.page-doar-transforma .addthis_sharing_toolbox span.close {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  height: 20px!important;
  width: 20px!important;
}
@media screen and (max-width: 480px) {
  .page-doar-transforma .addthis_sharing_toolbox h3 {
    font-size: 30px;
    margin: 20px 0px 30px;
  }
  .page-doar-transforma .addthis_sharing_toolbox {
    transform: translate(100vw, calc(50vw + 30%));
    aspect-ratio: auto;
    bottom: auto;
  }
  .page-doar-transforma .addthis_sharing_toolbox.active {
    transform: translate(0px, calc(50vw + 30%));
  }
}
.btn-compartilhe-essa-ideia {
  position: relative;
  font-size: 30px;
  padding: 15px 20px 15px 70px!important;
}
.btn-compartilhe-essa-ideia:after {
  content: "";
  position: absolute;
  left: 15px;
  top: -5px;
  bottom: 0;
  margin: auto;
  background-image: url('../images/doar-transforma/icon-share.svg');
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* PÃ¡gina: Solicite seu recibo */

#solicite-seu-recibo h1 {
  text-align: center;
}

#solicite-seu-recibo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007C8A;
  padding: 50px 0px 20px;
}

.doar-transforma-formulario label {
  padding-top: 25px;
  color: #3E3E3E;
}

.doar-transforma-formulario input, 
.doar-transforma-formulario select {
  height: 40px;
  width: 100%;
  border-radius: 13px;
  color: #999999;
  border: 1px solid #007C8A;
  padding: 6px 12px;
}

.doar-transforma-formulario select > option,
.doar-transforma-formulario #valor-doacao {
  color: #3E3E3E;
  padding: 6px 12px;
}

.doar-transforma-formulario .doar-enviar {
  background: #007C8A;
  padding: 25px 20px 45px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  margin: 30px 0;
}

.doar-transforma-formulario .doar-enviar:hover {
  background: #007c8ad4;
}

.doar-transforma-formulario .aceite label {
  padding: 0;
  margin: 2px 0px 0px 15px;
}

.doar-transforma-formulario .aceite {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  width: auto;
}

.doar-transforma-formulario #aceite-termo {
  width: auto;
}

@media screen and (max-width: 480px) {
  #solicite-seu-recibo h1 {
    font-size: 55px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .doar-transforma-formulario .doar-enviar {
    padding: 25px 8px 45px;
  }
}