body {
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.event-btn {
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.event-btn:hover {
    border-color: #e94d1a;
    box-shadow: 0 0 10px rgba(233, 77, 26, 0.2);
}

.event-btn img {
    width: 60px;
    margin-bottom: 10px;
}

.event-btn p {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.opcao-btn {
  

    background-color: white;
    color: black;

    border: 1px solid black;
    /* A borda preta é a chave */
    border-radius: 4px;
    /* Levemente arredondado */

    font-size: 1.1em;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.opcao-btn:hover {
    background-color: #e0e0e0;
    /* Efeito ao passar o mouse */
}