/* Checklist con checks verdes circulares */
.empr-checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.empr-checklist li {
    position: relative;
    padding-left: 34px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.empr-checklist li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00914e;
}

.empr-checklist li::after {
    content: "✓";
    position: absolute;
    left: 6px;
    top: 1px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

/* Precio */
.empr-price {
    font-size: 44px;
    font-weight: 900;
    color: #FF5700;
    line-height: 1.05;
}

.empr-iva {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin-left: 6px;
}

/* Botón marca */
.empr-btn-primary {
    background: #FF5700;
    border-color: #FF5700;
    color: #fff;
    border-radius: 14px;
    padding-left: 26px;
    padding-right: 26px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.empr-btn-primary:hover {
    background: #e14b00;
    border-color: #e14b00;
    color: #fff;
    /* transform: translateY(-1px); */
}

.empr-btn-primary:disabled {
    background: #ea7d47;
    border-color: #ea7d47;
    color: #fff;
    /* transform: translateY(-1px); */
}

.empr-btn-primary span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .18);
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* Modal look & feel */
.empr-modal {
    border-radius: 16px;
    overflow: hidden;
}

.empr-modal .modal-header {
    background: linear-gradient(90deg, rgba(94, 51, 140, 0.10), rgba(0, 145, 78, 0.10));
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-title {
    font-size: 18px;
}






/* Card estilo moderno */
.empr-option-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: all .25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.empr-option-card:hover {
    /* transform: translateY(-6px); */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.10);
}

/* Icono circular */
.empr-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Botón marca */
/* .empr-btn-primary {
      background: #FF5700;
      border: none;
      color: #fff;
      font-weight: 700;
      border-radius: 12px;
      padding: 12px 20px;
      transition: all .2s ease;
    } */

/* Card destacada */
.empr-option-card--highlight {
    /* border: 2px solid #ffc700; */
    position: relative;
}

/* Precio adicional */
.empr-extra-price {
    margin-top: 8px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 199, 0, 0.12);
    text-align: center;
}

.empr-extra-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}

.empr-extra-value {
    font-size: 22px;
    font-weight: 800;
    color: #FF5700;
    line-height: 1.1;
}

.empr-extra-value span {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-left: 4px;
}

.empr-extra-bonus {
    font-size: 13px;
    /* color: #00914e; */
    margin-top: 4px;
}


/* Icono interrogación redondo */
.empr-tooltip-icon {
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease;
    display: inline-block;
    width: 16px;
    height: 16px;
    padding: 2px 0px 0px 5px;
}

.empr-tooltip-icon:hover {
    transform: scale(1.1);
}

.form-select:focus,
.form-select:focus-visible,
.form-select {
    box-shadow: unset;
    border-color: #3333336b;
}




.backgroundContratar {
    inset: 0;
    background-image:
        url('https://emprende.cl/wp-content/uploads/2025/09/slider-home-desktop-slide-1.webp');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;

}

@media (max-width: 991px) {
    .backgroundContratar {
        background-image:
            url('https://emprende.cl/wp-content/uploads/2025/09/banners-movil3webp.webp');
    }
}

@media (max-width: 576px) {
    .backgroundContratar {
        background-image:
            unset;
    }
}

.contContenido {
    max-width: 60%;
}

@media (max-width: 991px) {
    .contContenido {
        max-width: 100%;
        width: 100%;
    }
}