.buttonAdd {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 100px; /* Metade da largura */
    height: 70px; /* Metade da altura */
    text-align: center;
    z-index: 100;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px; /* Reduzir o tamanho da fonte pela metade */
    background-color: #059ff8;
    color: #ffffff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: 0; /* Remover padding extra */
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.icon i {
    margin-right: 4px; /* Metade do espaço original */
    line-height: 1; /* Manter o alinhamento */
}

.icon span {
    display: inline-block;
    line-height: 1; /* Garantir alinhamento vertical do texto */
}

.icon:hover {
    background-color: #fff;
    color: #06b7e4;
    font-weight: 900;
    box-shadow: 1px 1px 10px #0352b9; /* Reduzir o tamanho da sombra também */
}
