/* wizard.css - Orgullo Emprendedor */
.oe-wizard {
    max-width: 650px;
    margin: 0 auto;
    font-family: -apple-system, Segoe UI, Roboto, sans-serif;
    color: #1e2a44;
}

.oe-progress {
    text-align: center;
    margin-bottom: 16px;
}

.oe-progress-label {
    color: #6D809D;
    text-align: center;
    font-family: "Helvetica Rounded LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.oe-progress-bar {
    display: flex;
    gap: 6px;
    width: 70%;
    margin: 15px auto 30px;
}

.oe-progress-seg {
    height: 6px;
    flex: 1;
    border-radius: 4px;
    background: #E7EAEF;
    transition: background 0.2s ease;
}

.oe-progress-seg.oe-active {
    background: #01C5C6;
}

.oe-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px 80px;
    box-shadow: 0 4px 16px rgba(20, 30, 60, 0.06);
    margin-bottom: 16px;
}

.oe-card h2 {
    margin-bottom: 12px;
    color: #002559;
    text-align: center;
    font-family: "Helvetica Rounded LT Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
	margin-top: 0;
}

.oe-card h3 {
    margin-bottom: 8px;
    margin-top: 0;
    color: #002559;
    font-family: "Helvetica Rounded LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.oe-card p {
    margin-bottom: 20px;
    color: #4A586E;
    text-align: center;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.oe-card.oe-inner p {
    text-align: left;
}

.oe-wizard label {
    display: block;
    margin-bottom: 3px;
    margin-top: 14px;
    color: #4A586E;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.oe-wizard input[type="text"],
.oe-wizard input[type="number"],
.oe-wizard input[type="email"],
.oe-wizard select,
.oe-wizard textarea {
    width: 100%;
    padding: 12px 14px;
    box-sizing: border-box;
    color: #002559;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border-radius: 4px;
    border: 1px solid #9DAABD;
    background: #FFF;
	resize: none;
}
.oe-wizard input[type="text"]:focus, .oe-wizard input[type="email"]:focus, .oe-wizard input[type="number"]:focus, .oe-wizard select:focus, .oe-wizard textarea:focus{
	border-color: #01C5C6;
    outline: none;
    outline-offset: 0;
}

.oe-wizard textarea {
    min-height: 100px;
}

.oe-wizard select:disabled {
    background: #f3f4f7;
    color: #a3aabb;
}

.oe-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.oe-wizard select{
	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='14' viewBox='0 0 22 14'%3E%3Cpath fill='%230A2F6F' d='M2 2C1 2 .5 3.2 1.3 4L9.6 12.3c.8.8 2 .8 2.8 0L20.7 4c.8-.8.3-2-1-2H2z'/%3E%3C/svg%3E");
}


@media (max-width: 560px) {
    .oe-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .oe-card { padding: 20px; }
}

.oe-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}
.oe-actions_one{
	justify-content: center;
}
.oe_space_top{
	margin-top: 80px;
}
.oe_view_pad_center{
	text-align: center;
    padding: 70px 25px;
}

.oe-btn {
    border: none;
    border-radius: 999px;
    padding: 15px 24px;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.2s ease;
    text-align: center;
    font-family: "Helvetica Rounded LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.oe-btn-primary {
    background: #01C5C6;
    color: #fff;
}
.oe-btn-primary:hover {
	background: #01EBED
}
.oe-btn-primary:disabled {
    background: #E7EAEF;
    color: #9DAABD;
    cursor: not-allowed;
}

.oe-btn-ghost {
    background: transparent;
    color: #002559;
    font-weight: 700;
    padding: 12px 8px;
    align-items: center;
    display: flex;
    gap: 5px;
}
.oe-btn-ghost svg{
	fill: transparent;
}
.oe-btn-ghost:hover{
	background: transparent;
}

.oe-radio-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oe-radio-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid #d7dce5;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.oe-radio-card:hover {
    border-color: #01C5C6;
}
.oe-radio-list .oe-radio-card{
	display: flex;
    align-items: center;
}
.oe-radio-card strong {
    color: #4A586E;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.oe-radio-card small {
    display: block;
    color: #4A586E;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}


.oe-radio-card.oe-checked {
    border-color: #10b8a6;
    background: #f0fbf9;
}

.oe-highlight {
    background: #E1FFFF;
    border-radius: 9px;
    padding: 18px;
    color: #002559;
    text-align: center;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}
.oe-highlight p{
	margin-bottom: 0;
}
.oe-highlight-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.oe-highlight-row a {
    color: #10b8a6;
    font-size: 13px;
    text-decoration: underline;
}

.oe-muted {
    color: #5b6b8c;
    font-size: 13px;
    text-align: center;
}

.oe-check-icon {
    width: 56px;
    height: 56px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.oe-field-error {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
}

.oe-btn.oe-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
    cursor: wait;
}

.oe-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: oe-spin 0.7s linear infinite;
}

.oe-btn-ghost .oe-spinner {
    border: 2px solid rgba(16, 38, 94, 0.3);
    border-top-color: #10265e;
}

@keyframes oe-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.oe-radio-card input[type="radio"]{
	display: none;
}
.oe_radio_custom{
	width: 20px;
    height: 20px;
    border: 2px solid #6D809D;
    border-radius: 50%;
    position: relative;
    transition: all .25s ease;
}
.oe-radio-card input[type="radio"]:checked + .oe_radio_custom {
    border-color: #01C5C6;
}
/* Punto central */
.oe-radio-card  .oe_radio_custom::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #01C5C6;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .25s ease;
}

/* Mostrar punto */
.oe-radio-card  input[type="radio"]:checked + .oe_radio_custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.oe-radio-card  input[type="radio"]:checked +.oe-radio-card{
	border-color: #01C5C6;
}

.oe_padd_pass_five{
	padding: 35px;
}
.oe_padd_pass_five strong{
	color: #4A586E;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.oe_padd_pass_five a{
	color: #01C5C6;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: underline !important;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.pas_end_post .oe-highlight{
	border-bottom: none;
}
.pas_end_post .oe-highlight span{
	color: #002559;
    text-align: center;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: block;
}
.post_fin_reset #oe-link-cambiar-categoria{
	color: #6D809D;
    text-align: center;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.post_fin_reset{
	padding: 50px 35px;
}
.post_fin_reset .plink_post{
	margin-bottom: 0;
}

.oe-check-list .oe-check-item{
	display: flex;
    margin-top: 17px;
    font-size: 12px;
    line-height: 15px;
    gap: 9px;
    align-items: center;
}

label {
    display: flex;
    align-items: center;
    gap: 6px;
}

/****TOOOLTIP*****/
.oe-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.oe-tooltip svg {
    display: block;
    width: 16px;
    height: 16px;
}

/* Tooltip flotante único, controlado por JS */
.oe-tooltip-box {
    position: fixed;
    background: #E1FFFF;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    max-width: 280px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 100000;
    color: #002559;
    text-align: center;
    font-family: 'Helvetica Rounded LT Std';
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.oe-tooltip-box.oe-tooltip-visible {
    opacity: 1;
    visibility: visible;
}

.oe-tooltip-box .oe-tooltip-arrow {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #E1FFFF;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .oe-tooltip-box {
        max-width: 90vw;
        width: 90vw;
    }

    .oe-tooltip-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.15s ease;
    }

    .oe-tooltip-overlay.oe-tooltip-visible {
        opacity: 1;
        visibility: visible;
    }
}
