/* ===================== WHY ===================== */
.why-section {
    text-align: center;
border-radius:10px;
background-color: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(6px);

}
.why-section {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.why-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.why-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.why-card {
    max-width: 250px;
}

.why-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.why-h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.why-p {
    font-size: 14px;
    line-height: 1.5;
}

.why-button {
    display: inline-block;
    padding: 12px 28px;
    background: #1abc9c;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.why-button:hover {
    background: #16a085;
}

/* ===================== MEDIA QUERY MÓVIL ===================== */
@media (max-width: 768px) {

    .why-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

}
