/* Verificar compra — guided support flow */
.sc-page .sc-main {
    background: #ffffff;
    min-height: auto;
    padding: 8px 20px 56px;
}

.sc-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.sc-flow-header {
    margin: 14px 0 8px;
}

.sc-flow-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #52525b;
    text-decoration: none;
}

.sc-flow-back:hover {
    color: #3d15ce;
}

.sc-head {
    margin-bottom: 28px;
}

.sc-title {
    margin: 0 0 10px;
    font-size: clamp(26px, 5.5vw, 32px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #18181b;
    line-height: 1.15;
}

.sc-subtitle {
    margin: 0;
    font-size: 15px;
    color: #71717a;
    line-height: 1.55;
    max-width: 36em;
}

.sc-section {
    margin-bottom: 28px;
}

.sc-section--info {
    animation: scFadeIn 0.28s ease;
}

@keyframes scFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sc-section__title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #18181b;
    letter-spacing: -0.02em;
}

.sc-section__hint {
    margin: -4px 0 12px;
    font-size: 13px;
    color: #71717a;
    line-height: 1.45;
}

.sc-option-list,
.sc-check-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-option,
.sc-check {
    display: block;
    cursor: pointer;
}

.sc-option__input,
.sc-check__input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.sc-option__card,
.sc-check__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid #e4e4e7;
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.sc-check__card {
    justify-content: flex-start;
}

.sc-option:hover .sc-option__card,
.sc-check:hover .sc-check__card {
    border-color: #d4d4d8;
    background: #fafafa;
}

.sc-option__label,
.sc-check__label {
    font-size: 15px;
    font-weight: 500;
    color: #18181b;
    line-height: 1.35;
}

.sc-option__check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #d4d4d8;
    border-radius: 999px;
    position: relative;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.sc-check__box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #d4d4d8;
    border-radius: 6px;
    position: relative;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.sc-option__input:focus-visible + .sc-option__card,
.sc-check__input:focus-visible + .sc-check__card {
    outline: 2px solid #3d15ce;
    outline-offset: 2px;
}

.sc-option__input:checked + .sc-option__card {
    border-color: #c4b5fd;
    background: #faf8ff;
    box-shadow: 0 0 0 1px rgba(61, 21, 206, 0.08);
}

.sc-option__input:checked + .sc-option__card .sc-option__check {
    border-color: #3d15ce;
    background: #3d15ce;
}

.sc-option__input:checked + .sc-option__card .sc-option__check::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #fff;
    border-radius: 999px;
}

.sc-check__input:checked + .sc-check__card {
    border-color: #c4b5fd;
    background: #faf8ff;
    box-shadow: 0 0 0 1px rgba(61, 21, 206, 0.08);
}

.sc-check__input:checked + .sc-check__card .sc-check__box {
    border-color: #3d15ce;
    background: #3d15ce;
}

.sc-check__input:checked + .sc-check__card .sc-check__box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sc-form-error {
    margin: 12px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    font-size: 13px;
    color: #b91c1c;
    line-height: 1.45;
}

.sc-actions {
    margin-top: 8px;
    animation: scFadeIn 0.28s ease;
}

.sc-submit {
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
}

@media (max-width: 479px) {
    .sc-page .sc-main {
        padding: 8px 16px 48px;
    }

    .sc-head {
        margin-bottom: 24px;
    }

    .sc-option__card,
    .sc-check__card {
        padding: 14px 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sc-section--info,
    .sc-actions {
        animation: none;
    }
}
