body {
    background-image: url(/Herramientas/assets/imgs/main/fondo_herramientas.webp);
}

/* Botones */
.tools-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.tool-button {
    flex: 0 1 300px;
    margin: 15px 20px;

    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 45px 15px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease;
}

.tool-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: #e8f0fe;
}

.tool-button img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.tool-button span {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}