#header {
    top: 0;
    left: 0;
    width: 100%;
  } 
  
  #cabecalho {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: clamp(5px, 2vw, 30px);
    background-color:  #f8ba5e;
    padding-top: 15px;
    padding-bottom: 0px;
    margin-top: 0%;
    margin-bottom: 0px;
    font-family: 'Courier New', Courier, monospace;
  }
    
  #cabecalho1 {
      color: black;
      text-decoration: none;
      font-weight: bold;
      text-decoration: none;
      margin-bottom: 0px;
      font-size: clamp(0.4rem, 2vw, 1.2rem);
    }
    #cabecalho1:hover{
      background-color: rgb(3, 92, 15);
      color: white;
      padding: 10px;
    }
  
    #foto1 {
     width: 100%;
      height: 700px;
      margin-top: 40px; /* para compensar o header fixo */
      background-image: url("../imagens/doacao1.jpg");
      background-size: cover;
      background-position:top;
      display: flex;
      flex-direction: column;
      align-items: center; /*centralizar horizontalmente*/
      justify-content: center; /* centraliza verticalmente */
      text-align: center;
      padding-top: 50px;
      margin: 0 auto;
    }

    .participar {
        padding: 40px 20px;
        background-color: #f4f4f4;
        font-family: 'Courier New', Courier, monospace;
        color: #333;
    }
    
    .participar h2 {
        text-align: center;
        color: #2e7d32;
    }
    
    .participar-container {
        max-width: 1200px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin: 0 auto;
    }
    
    .participar-bloco {
        background-color: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        flex: 1 1 300px;
        max-width: 400px;
    }
    
    .participar-bloco h3 {
        color: #2e7d32;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .participar-bloco ul {
        padding-left: 20px;
        list-style-type: square;
    }
    
    .participar-bloco p, .participar-bloco ul {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .participar a {
        color: #ecf0ec;
        text-decoration: underline;
        font-size: 1.2rem;
    }

.botoes-centralizados {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.botoes-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.botao-participar {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2e7d32;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.botao-participar:hover {
    background-color: #256728;
}


/* Responsividade */
@media screen and (max-width: 768px) {
    .participar-container {
        flex-direction: column;
        align-items: center;
    }

    .participar-bloco {
        width: 85%;
        max-width: 95%;
        
    }

    .botao-participar {
        width: 80%;
        text-align: center;
    }
}

#fim{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #f8ba5e;
    color: black;
}

#fim1{
    width: 300px;
    border: hidden;
    padding: 10px;
    text-align: center;
}

#fim1 ul{
  padding: 0;
  margin: 0;
}

#fim1 ul li{
  padding: 0;
  margin: 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
    #fim {
      flex-direction: column;
      align-items: center;
    }
  
    #fim1 {
      width: 100%;
      max-width: 300px; /* opcional, para não ficar muito largo */
    }
  }

#fim2{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    color: #2c3e50;
}

#fim3{
    width: 500px;
    border: hidden;
    padding: 1px;
    text-align: center;
    color: #2c3e50;
}

h1 {
    color: #4e3730;;
    text-align: center;
    font-size: clamp(2rem, 8vw, 6rem);
    text-transform: uppercase;
  }

  p, li {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 1.2rem;
  }
