.custom-button {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 15px;
    transition: all 0.5s ease;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
  }

  .custom-button:hover {
    border-radius: 50%;
    background-color: rgb(237, 180, 123);
    cursor:pointer;
  }
  .icon-container {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    text-align: center;
  }

  .icon {
    width: 40%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .text-container {
    position: absolute;
    bottom: 10px;
    padding-left:5px;
    padding-right:5px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
.opcao {
        background-color: rgb(249, 244, 244);
        border-radius: 5px;
        border: 1px solid rgb(172, 168, 168);
        width: 200px;
        padding: 15px;
        text-align: center;
        cursor: pointer;
        min-height: 200px; /* Defina a altura mínima desejada */
        margin: 0 auto;
    }

    .opcao:hover {
        background-color: rgb(222, 222, 222);
    }

    .opcaotitulo {
        color: gray;
        padding: 10px;
        height: 80px;
    }

    .opcaoicone {
        flex: 1;
    }

    /* Estilize o container para centralizar verticalmente */
    .container-center {
        display: flex;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 150px);
    }

    #barra
    {
        background-color: rgb(197, 194, 194);
    }