/* SECTION */
.benefits-section {
    padding: 100px 20px;
    background: #f5fdfc;
}

/* HEADER */
.benefits-header {
    text-align: left;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 40px;
    color: var(--color-text-dark);
    margin-top: 10px;
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.benefit-card {
    background: #14141b;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid;
    border-color: #ffff;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* ICON */
.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-primary);
    color: white;
}

/* TEXT */
.benefit-card h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section {
        padding: 60px 15px;
    }

    .benefits-header {
        text-align: center;
    }

    .benefits-header h2 {
        font-size: 28px;
    }
}