.custom-close {
    background: none;       /* sin fondo */
    border: none;           /* sin borde */
    color: #fff;            /* blanco para contraste */
    font-size: 32px;        /* tamaño grande */
    font-weight: bold;      /* negrita */
    line-height: 1;         /* alineación vertical */
    cursor: pointer;        /* cursor de mano */
    margin-left: auto;      /* empuja el botón a la derecha */
}

.custom-close:hover {
    color: #ffc107;         /* color al pasar el mouse */
}
.step-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.step-indicator::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #bec1c7;
    z-index: 1;
}
.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}
.step-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f6f9ff;
    color: #012970;
    border: 2px solid #e0e3ec;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}
.step-item.active .step-icon {
    background-color: #4154f1;
    border-color: #4154f1;
    color: white;
    box-shadow: 0px 0px 0px 4px rgba(65, 84, 241, 0.15);
}
.step-item.completed .step-icon {
    background-color: #2eca6a;
    border-color: #2eca6a;
    color: white;
}
.step-label {
    font-size: 0.75rem;
    font-family: "Poppins", sans-serif;
    color: #899bbd;
    font-weight: 500;
}
.step-item.active .step-label {
    color: #4154f1;
    font-weight: 600;
}
.wizard-step {
    display: none;
}
.wizard-step.active {
    display: block;
}
.plan-card {
    cursor: pointer;
    border: 1px solid #e0e3ec;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.04);
    transition: all 0.2s;
}
.plan-card:hover {
    transform: translateY(-2px);
    border-color: #4154f1;
}
.plan-card.selected {
    border: 2px solid #4154f1;
    background-color: #f6f9ff;
}
.bg-primary-light {
    background-color: #e0f1ff;
}
.bg-secondary-light {
    background-color: #e2e3e5;
}
.bg-success-light {
    background-color: #e0f8e9;
}