


 /* ============================
       RESET E BOX-SIZING
    ============================= */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      font-size: 100%; /* 1rem = 16px */
    }
    body {
      font-family: 'Open Sans', sans-serif;
      line-height: 1.5;
      background-color: #ffffff;
      color: #333333;
    }
    img {
      display: block;
      max-width: 100%;
      height: auto;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    ul { list-style: none; }
    button {
      background: none;
      border: none;
      cursor: pointer;
    }

    /* ============================
       VARIÁVEIS GERAIS
    ============================= */
    :root {
      /* CORES */
      --vermelho-escuro:   #7e0000;
      --marrom-escuro:     #392617;
      --dourado:           #d78b18;
      --bege-claro:        #e4e5e2;
      --bege-ods:          #ddc7a4;
      --cinza-claro:       #f5f5f5;
      --branco:            #ffffff;

      /* TIPOGRAFIA */
      --fs-h1-mobile:      1.75rem;   /* 28px */
      --fs-h1-desktop:     2.5rem;    /* 40px */
      --fs-h2-mobile:      1.5rem;    /* 24px */
      --fs-h2-desktop:     2rem;      /* 32px */
      --fs-h3-mobile:      1.125rem;  /* 18px */
      --fs-h3-desktop:     1.5rem;    /* 24px */
      --fs-body-mobile:    1rem;      /* 16px */
      --fs-body-desktop:   1.125rem;  /* 18px */

      /* ESPAÇAMENTOS */
      --gap-mobile:        1rem;      /* 16px */
      --gap-desktop:       2rem;      /* 32px */
      --container-max:     1200px;

      /* SOMBRA / TRANSIÇÃO */
      --shadow-card:       0 2px 8px rgba(0, 0, 0, 0.05);
      --transition-fast:   0.2s ease-in-out;
    }

    /* ============================
       CLASSE DE CONTAINER CENTRAL
    ============================= */
    .container {
      width: 90%;
      max-width: var(--container-max);
      margin: 0 auto;
    }

    /* ============================
       “TRANSFORME VIDAS”
    ============================= */

      .transforme-vidas-com-bem-estar {
      background-size: cover;
      background-position: center;
      text-align: center;
    }

      .transforme-vidas-com-bem-estar h2 {
      font-family: 'Albert Sans', sans-serif;
      font-size: var(--fs-h1-mobile);
      font-weight: 700;
      color: #7e0000;
      margin-bottom: 1.5rem;
    }


     .transforme-vidas-com-bem-estar-texto {
      font-size: var(--fs-h3-mobile);
      color: var(--marrom-escuro);
      max-width: 600px;
      margin: 50px auto;
      line-height: 1.6;
      text-align: center;

    }


    .transforme-vidas {
      margin-top: 1%;
      background-size: cover;
      background-position: center;
      padding: 2rem var(--gap-mobile);
      text-align: center;
    }


    .transforme-vidas h2 {
      font-family: 'Albert Sans', sans-serif;
      font-size: var(--fs-h1-mobile);
      font-weight: 700;
      color: var(--bege-ods);
      margin-bottom: 1.5rem;
    }


    .transforme-vidas .grid {
      display: grid;
      grid-template-columns: 1fr; /* 1 coluna no mobile */
      gap: var(--gap-mobile);
    }
    .transforme-vidas .card {
      background-color: var(--bege-claro);
      border-radius: 8px;
      padding: 1.5rem var(--gap-mobile);
      box-shadow: var(--shadow-card);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .transforme-vidas .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .transforme-vidas .card h3 {
      font-family: 'Albert Sans', sans-serif;
      font-size: var(--fs-h3-mobile);
      font-weight: 600;
      color: var(--marrom-escuro);
      margin-bottom: 0.75rem;
      text-align: center;
    }
    .transforme-vidas .card p {
      font-size: var(--fs-body-mobile);
      color: var(--marrom-escuro);
      text-align: center;
      margin-bottom: 1rem;
      line-height: 1.5;
    }
    .transforme-vidas .btn-doe-agora {
      background-color: var(--dourado);
      color: var(--branco);
      font-family: 'Albert Sans', sans-serif;
      font-size: var(--fs-body-mobile);
      font-weight: 600;
      padding: 0.5rem 1rem;
      border-radius: 24px;
      transition: background-color var(--transition-fast), transform var(--transition-fast);
    }
    .transforme-vidas .btn-doe-agora:hover {
      background-color: darken(var(--dourado), 10%);
      transform: translateY(-2px);
    }


    .saiba-mais{
      display: flex;
      justify-content: center;
      margin-top: -4%;
      margin-bottom: 2%;
      font-size: 20px;
      color: #d78b18;

    }

    .saiba-mais a:hover{
      color: #7e0000;
    }


    @media (max-width: 600px) {

  .saiba-mais {
    margin-top: -13%;
    margin-bottom: 10%;
  }

}


    /* ============================
       “O QUE FAZEMOS”
    ============================= */
    .o-que-fazemos {
      padding: 1rem var(--gap-mobile);
      background-color:#ffffff;
      text-align: center;
    }
    .o-que-fazemos h2 {
      font-family: 'Albert Sans', sans-serif;
      font-size: var(--fs-h2-mobile);
      font-weight: 700;
      color: #7e0000;
      margin-bottom: 1rem;
      margin-top: -40px;
    }
    .o-que-fazemos p {
      font-size: var(--fs-body-mobile);
      color: var(--marrom-escuro);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }



     .saiba-mais-projetos{
      display: flex;
      justify-content: center;
      margin-top: -1.5%;
      margin-bottom: 0%;
      font-size: 20px;
      color: #d78b18;

    }

    .saiba-mais-projetos a:hover{
      color: #7e0000;
    }


    @media (max-width: 600px) {

   .saiba-mais-projetos {
    margin-top: -3%;
    margin-bottom: -1%;
  }

}


    /* ============================
       “CARDS BEM-ESTAR PARA TODOS”
    ============================= */
    .cards-bem-estar-todos {
      padding: 2rem var(--gap-mobile);
      background-color: #fff;
      text-align: center;
      margin-top: -4%;
    }
    .cards-bem-estar-todos .grid {
      display: grid;
      grid-template-columns: 1fr; /* 1 coluna no mobile */
      gap: var(--gap-mobile);
    }
    .cards-bem-estar-todos .card {
      background-color: var(--vermelho-escuro);
      border-radius: 8px;
      padding: 1.5rem var(--gap-mobile);
      box-shadow: var(--shadow-card);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .cards-bem-estar-todos .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .cards-bem-estar-todos .card h3 {
      font-family: 'Albert Sans', sans-serif;
      font-size: var(--fs-h3-mobile);
      font-weight: 600;
      color: var(--bege-ods);
      margin-bottom: 0.75rem;
      text-align: center;
    }
    .cards-bem-estar-todos .card p {
      font-size: var(--fs-body-mobile);
      color: var(--branco);
      margin-bottom: 1rem;
      line-height: 1.5;
    }
    .cards-bem-estar-todos .card img.divisoria {
      width: 60%;
      max-width: 200px;
      margin-top: 0.5rem;
    }




    /* ============================
       “IMPACTO SOCIAL”
    ============================= */
    .impacto-social {
     background-color: #fff;
      background-size: cover;
      background-position: center;
      text-align: center;
      color: var(--branco);
      margin-top: -3%;
    }

    .impacto-social h2 {
      font-family: 'Albert Sans', sans-serif;
      font-size: var(--fs-h2-mobile);
      font-weight: 700;
      color:#7e0000;
      margin-bottom: 1rem;
    }
    .impacto-social p {
      font-size: var(--fs-body-mobile);
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto 1.5rem auto;
      color: #392617;
    }
    .impacto-social .quadro-ods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: var(--gap-mobile);
      align-items: center;
      justify-items: center;
      margin-bottom: 2rem;
    }
    .impacto-social .quadro-ods img {
      width: 80px;
      transition: transform var(--transition-fast);
    }
    .impacto-social .quadro-ods img:hover {
      transform: scale(1.05);
    }



    /* Layout padrão (desktop/tablet): ícones em linha */
.quadro-ods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

/* Cada ícone com legenda */
.quadro-ods figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 160px;
  margin: 0;
  text-align: center;
}

/* Imagem */
.quadro-ods img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.quadro-ods img:hover {
  transform: scale(1.05);
}

/* Legenda */
.quadro-ods figcaption {
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 0.95rem;
  color: #7e0000;
  text-align: center;
}



@media (max-width: 600px) {
  .container {
    width: 100%;
    padding: 0 1rem; /* ajuste para evitar colar nas bordas */
    box-sizing: border-box;
  }

  .quadro-ods {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 1.5rem !important;
  }

  .quadro-ods figure {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .quadro-ods img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
  }
}




    /* ============================
       “NÚMEROS DE ATENDIMENTOS”
    ============================= */
    .numeros-atendimentos {
      background-color: var(--vermelho-escuro);
      padding: 2rem var(--gap-mobile);
      text-align: center;
      color: var(--branco);
    }
    .numeros-atendimentos h2 {
      font-family: 'Albert Sans', sans-serif;
      font-size: var(--fs-h2-mobile);
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--branco);
    }
    .numeros-atendimentos .divisoria {
      width: 50%;
      max-width: 200px;
      margin: 0.5rem auto 2rem auto;
    }
    .numeros-atendimentos .cards {
      display: grid;
      grid-template-columns: 1fr; /* 1 coluna no mobile */
      gap: var(--gap-mobile);
    }
    .numeros-atendimentos .cards .card {
      background-color: #7e0000;
      border-radius: 8px;
      padding: 1.5rem var(--gap-mobile);
      box-shadow: var(--shadow-card);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .numeros-atendimentos .cards .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(248, 246, 246, 0.1);
    }
    .numeros-atendimentos .cards .card h3 {
      font-family: 'Albert Sans', sans-serif;
      font-size: var(--fs-h3-mobile);
      font-weight: 600;
      color:#fff;
      margin-bottom: 0.75rem;
      text-align: center;
    }
    .numeros-atendimentos .cards .card .contador {
      font-family: 'Albert Sans', sans-serif;
      font-size: 2rem; /* 32px */
      font-weight: 700;
      color:#fff;
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .numeros-atendimentos .cards .card.visible .contador {
      opacity: 1;
      transform: translateY(0);
    }
    .numeros-atendimentos .cards .card img.ornamento {
      display: none;
      position: absolute;
      bottom: 8px;
      left: 8px;
      width: 40px;
      opacity: 0.7;
    }

.btn-doe-depoimento {
  background-color: #d78b18;
  width: 20%;
  height: 10vh;
  color: #fff;
  display: block;
  margin: 10% auto 0 auto;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
}

    /* ============================
       MEDIA QUERY ≥ 768px (TABLET/DESKTOP)
    ============================= */
    @media (min-width: 768px) {
      /* “Transforme Vidas” */
      .transforme-vidas {
        padding: 3rem var(--gap-desktop);
      }
      .transforme-vidas h2 {
        font-size: var(--fs-h1-desktop);
      }
      .transforme-vidas .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--gap-desktop);
      }
      .transforme-vidas .card {
        padding: 2rem var(--gap-desktop);
      }
      .transforme-vidas .card h3 {
        font-size: var(--fs-h3-desktop);
      }
      .transforme-vidas .card p {
        font-size: var(--fs-body-desktop);
      }
      .transforme-vidas .btn-doe-agora {
        font-size: var(--fs-body-desktop);
        padding: 0.75rem 1.5rem;
      }

      /* “O que fazemos” */
      .o-que-fazemos {
        padding: 3rem var(--gap-desktop);
      }
      .o-que-fazemos h2 {
        font-size: var(--fs-h2-desktop);
      }
      .o-que-fazemos p {
        font-size: var(--fs-body-desktop);
      }

      /* “Cards Bem-Estar para Todos” */
      .cards-bem-estar-todos {
        padding: 3rem var(--gap-desktop);
      }
      .cards-bem-estar-todos .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gap-desktop);
      }
      .cards-bem-estar-todos .card {
        padding: 2rem var(--gap-desktop);
      }
      .cards-bem-estar-todos .card h3 {
        font-size: var(--fs-h3-desktop);
      }
      .cards-bem-estar-todos .card p {
        font-size: var(--fs-body-desktop);
      }
      .cards-bem-estar-todos .card img.divisoria {
        width: 50%;
      }

      /* “Impacto Social” */
      .impacto-social {
        padding: 3rem var(--gap-desktop);
      }
      .impacto-social h2 {
        font-size: var(--fs-h2-desktop);
      }
      .impacto-social p {
        font-size: var(--fs-body-desktop);
      }
      .impacto-social .quadro-ods {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--gap-desktop);
      }
      .impacto-social .quadro-ods img {
        width: 100px;
      }

      /* “Números de Atendimentos” */
      .numeros-atendimentos {
        padding: 3rem var(--gap-desktop);
      }
      .numeros-atendimentos h2 {
        font-size: var(--fs-h2-desktop);
      }
      .numeros-atendimentos .divisoria {
        width: 35%;
        max-width: 250px;
      }
      .numeros-atendimentos .cards {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--gap-desktop);
      }
      .numeros-atendimentos .cards .card {
        padding: 2rem var(--gap-desktop);
      }
      .numeros-atendimentos .cards .card h3 {
        font-size: var(--fs-h3-desktop);
      }
      .numeros-atendimentos .cards .card .contador {
        font-size: 3rem; /* 48px */
      }
      .numeros-atendimentos .cards .card img.ornamento {
        width: 60px;
        bottom: 12px;
        left: 12px;
      }
    }
    
/* Seção "Quero Participar" */


.quero-participar {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #333;
  margin-top: 2rem;
  min-height: 400px;
  background: url('../img/pexels-thirdman-7651924.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.quero-participar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(244, 243, 243, 0.6), rgba(255,255,255,1));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /* Suporte Safari */
  z-index: 1;
}

.quero-participar > * {
  position: relative;
  z-index: 2;
}


.quero-participar h3 {
  font-size: 2rem;
  color: #7e0000;
  margin-bottom: 10px;
  letter-spacing: 1px;
   ;
}

.quero-participar h1 {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.4;
  color: #392617;
}

.perfis-voluntarios {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.perfis-voluntarios li {
  width: 250px;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.perfis-voluntarios li:hover {
  transform: translateY(-5px);
}

.perfis-voluntarios h2 {
  color: #7e0000;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.perfis-voluntarios p {
  font-size: 1rem;
}

.btn-quero-participar {
  background-color: #d78b18;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-quero-participar:hover {
  background-color: #b87412;
}

/* Responsivo */
@media (max-width: 768px) {
  .quero-participar h1 {
    font-size: 1.2rem;
  }

  .perfis-voluntarios {
    flex-direction: column;
    align-items: center;
  }

  .perfis-voluntarios li {
    width: 100%;
    max-width: 300px;
  }

  .btn-quero-participar {
    width: 100%;
    max-width: 250px;
  }
}

.depoimentos {
  background-image: url(../img/pattern-arabesco.png);
  text-align: center;
  padding: 2rem;
}

.depoimentos h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.depoimento {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-size: 1rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}

.depoimento span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #d78b18;
}


.avatar-depoimento {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .depoimentos h2 {
    font-size: 1.5rem;
  }

  .btn-doe-depoimento {
    width: 80%;
    font-size: 1rem;
  }
}


    .btn-quero-participar {
      display: block;
      margin: 0 auto;
      width: 100%;
      max-width: 300px;
      text-align: center;
      background-color: #d78b18;
      color: #fff;
      font-size: 20px;
      border-radius: 8px;
      font-weight: bold;
      transition: background 0.3s;
    }


    .mapa{

      margin-top: 2rem;

    }


    /* Responsividade */
    @media (max-width: 768px) {
      .quero-participar h3 {
        font-size: 36px;
      }

      .quero-participar span {
        font-size: 30px;
      }

      .quero-participar p {
        font-size: 18px;
      }

      .btn-quero-participar {
        font-size: 18px;
      }

      blockquote {
        font-size: 16px;
      }

         .btn-doe-depoimento {
      display: block;
      margin: 0 auto;
      width: 100%;
      max-width: 300px;
      text-align: center;
      padding: 12px 20px;
      background-color: #d78b18;
      color: #fff;
      font-size: 20px;
      border-radius: 8px;
      font-weight: bold;
      transition: background 0.3s;
    }


    }
