#materiais{
    padding: 100px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#materiais a{
    text-decoration: none;
    color: black
}

#logo-materiais{
    position: absolute;
    opacity: .07;
}

.table-container {
    width: 80%;
    max-width: 1000px;
    margin: auto;
}

.table-container h2{
    text-align: center;
    color: white;
    font-size: 2rem;
}



table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
}

thead {
    background-color: #444;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
}

td i{
    font-size: 20px;
}

tbody tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

tbody tr:nth-child(even) {
    background-color: #ebeaea;
}

tbody tr:hover {
    background-color: #d1d1d1;
}

.whatsapp {
    margin-top: 30px;
    font-size: 1.5rem;
    padding: 1.6em 4em;
    background-color: rgba(0, 0, 0, 0.678);
    border: 3px solid rgb(129, 255, 104);
    border-radius: 1em;
    color: #fff;
    font-weight: bolder;
    transition: cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
    box-shadow: -5px 5px 0px 0px rgb(129, 255, 104);
  }
  
  .whatsapp:hover {
    transform: translate(5px, -5px);
  }

  .whatsapp i{
    margin-left: 10px;
  }


  @media screen and (max-width: 955px) {
    .table-container {
        width: 95%;

    }
    .whatsapp{
        padding: .8em 2em;

    }
    
  }