#webapp {
    position: relative;
    overflow: hidden;
    background-color: black;
    background-size: cover;
}

.webapp-bg {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    background-image: url("img/webapp_bg.png");
    background-position: center;
    background-size: cover;
    padding: 50px;
}

.webapp-bg::before,
.webapp-bg::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px; /* Ajusta la altura del degradado */
    pointer-events: none; /* No bloquea interacciones */
}

/* Degradado superior */
.webapp-bg::before {
    top: 0;
    background: linear-gradient(to bottom, black, transparent);
}

/* Degradado inferior */
.webapp-bg::after {
    bottom: 0;
    background: linear-gradient(to top, black, transparent);
}


.card-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    position: relative;
    z-index: 1;
}

.card {
    width: 90%;
    background-color: black;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: scale(105%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}