/* Estilização do cabeçalho */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem;
    padding-left: 1.5rem; 
  }
  
  .menu .logo .dsc {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
   
  }
  
  
  .menu-buttons {
    display: flex;
    align-items: center;
    padding-right: 1.5rem; 
}


.menu-button {
  background-color: #6c63ff;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin: 4px 2px;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.menu-button:hover {
  background-color: #4b47e6;
}

.menu-separator {
  height: 1px;
  background-color: #e5e5e5;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.logo-img {
    width: 250px; /* ajuste o tamanho conforme necessário */
    height: auto;
}
  
.about-logo {
    width: 100%; /* Ajuste a largura desejada aqui */
    height: auto; /* Mantém a proporção da imagem */
    margin-right: 180px; /* Ajuste a distância desejada aqui */
  }

  .about-container {
    display: flex;
  }
  
  .left-col {
    flex: 0 0 30%; /* Ajuste a largura desejada aqui */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .right-col {
    flex: 1;
    padding-left: 50px; /* Ajuste a distância desejada aqui */
    padding-top: 50px;
  }
  
  .separator {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 50%; /* Ajuste o tamanho da barra separadora aqui */
    width: 2px;
    background-color: #3a3939; /* Ajuste a cor da barra separadora aqui */
  }
  
  /* Envolver tabela */
.crypto-donations-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 50px auto 0;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
  }
  
  .crypto-donations {
    width: 80%; /* Reduza a largura para 80% */
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .crypto-donations th,
  .crypto-donations td {
    padding: 10px;
    text-align: left;
    box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.1), inset 1px 1px 0px rgba(255, 255, 255, 0.1);
    background-color: #f9f9f9;
  }
  
  .crypto-donations th {
    font-weight: bold;
    background-color: #f2f2f2;
    border-bottom: 2px solid #000;
    box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.1), inset 1px 1px 0px rgba(255, 255, 255, 0.1), 0px 2px 2px rgba(0, 0, 0, 0.1);
  }
  
  .crypto-donations th:last-child {
    text-align: center;
  }
  
  .crypto-donations td:last-child {
    width: 80%;
  }
  
  .crypto-logo {
    width: 20px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
  }
  

  @media screen and (max-width: 767px) {

    .header {
      flex-direction: column;
      text-align: center;
    }

  
    .menu {
      flex-direction: column;
      padding-left: 0.5rem;
    }
  
    .menu-buttons {
      margin-top: 0.5rem;
      padding-right: 0.5rem;
      padding: 1px 28px;
      justify-content: center;
      align-items: center;
    }
  
    .menu-button {
      background-color: #6c63ff;
      border: none;
      color: white;
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      margin: 4px 2px;
      padding: 5px 16px;
      border-radius: 50px;
      cursor: pointer;
      transition: background-color 0.3s;
  
    }

    .left-col {
      display: none;
    }

    .separator {
      display: none;
    }

    .right-col {
      padding-left: 15px;
      padding-right: 15px;
      text-align: justify;
    }
  
  }