/* Botones */
.tool-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
    align-items: center;

    transition: 0.2s ease;
}

.tool-button img {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: 0.2s ease;
}

.tool-button:hover img {
    transform: translateY(-5px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) brightness(1.1);
}

/* Lista */
.list li {
    margin-bottom: 10px;
    text-align: justify;
}