/* Ajustes de look & feel con tu marca */
.empr-btn-primary {
    background: #FF5700;
    border-color: #FF5700;
    color: #fff;
    font-weight: 800;
    border-radius: 14px;
}

.empr-btn-primary:hover {
    background: #e14b00;
    border-color: #e14b00;
    color: #fff;
}

.empr-btn-outline {
    border-radius: 14px;
    font-weight: 800;
}

.empr-card {
    border-radius: 18px;
}

.empr-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.empr-mini-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.empr-mini-list li {
    position: relative;
    padding-left: 30px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.empr-mini-list li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00914e;
}

.empr-mini-list li::after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 1px;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
}

.empr-pill {
    background: rgba(94, 51, 140, .10);
    color: #5e338c;
    border: 1px solid rgba(94, 51, 140, .18);
    padding: .55rem .75rem;
    font-weight: 700;
}

.empr-pill:hover {
    background: rgba(94, 51, 140, .16);
    color: #5e338c;
}