/* =====================================================================
   Ragazzo Control Panel® · Widget "Solicitar Orçamento" — visual (assistente DashLite).
   Lê variáveis --bs-* do tema (adapta a claro/escuro). Escopo .wc-quote.
   Autossuficiente: não depende do CSS/JS de framework do tema.
   ===================================================================== */
.wc-quote {
    --wcq-primary: var(--wc-widget-accent, var(--bs-primary, #6D28D9));
    --wcq-primary-rgb: var(--wc-widget-accent-rgb, var(--bs-primary-rgb, 109, 40, 217));
    --wcq-accent: var(--bs-secondary, #C026D3);
    --wcq-accent-rgb: var(--bs-secondary-rgb, 192, 38, 211);
    --wcq-surface: var(--wc-widget-surface, var(--bs-card-bg, #fff));
    --wcq-text: var(--bs-body-color, #1f2937);
    --wcq-heading: var(--bs-heading-color, #1f2937);
    --wcq-muted: var(--bs-secondary-color, #8a93a6);
    --wcq-border: var(--wc-widget-border, var(--bs-border-color, rgba(0, 0, 0, .12)));
    --wcq-field-bg: var(--bs-body-bg, #fff);
    --wcq-grad: linear-gradient(135deg, var(--wcq-primary), var(--wcq-accent));
    --wcq-danger: #e85347;
    --wcq-danger-rgb: 232, 83, 71;
    --wcq-radius: 14px;
    color: var(--wcq-text);
}

/* ---- Modal ---- */
.jwc_quote_modal {
    display: none; position: fixed; inset: 0; z-index: 99998;
    background: rgba(10, 8, 22, .68); backdrop-filter: blur(5px);
    padding: 4vh 16px; overflow-y: auto;
}
body.wc-quote-open { overflow: hidden; }
.wc-quote-dialog { width: 660px; max-width: 100%; margin: 0 auto; }
.wc-quote-content {
    background: var(--wcq-surface); border: 1px solid var(--wcq-border);
    border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    position: relative; animation: wcqIn .3s cubic-bezier(.2, .8, .2, 1);
}
@keyframes wcqIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
.wc-quote-close {
    position: absolute; top: 16px; right: 16px; z-index: 2; width: 38px; height: 38px;
    display: grid; place-items: center; border-radius: 50%; color: #fff;
    background: rgba(255, 255, 255, .18); transition: .18s;
}
.wc-quote-close:hover { background: rgba(255, 255, 255, .34); transform: rotate(90deg); color: #fff; }
.wc-quote-head {
    display: flex; gap: 16px; align-items: center; padding: 26px 28px; color: #fff;
    background: var(--wcq-grad); position: relative; overflow: hidden;
}
.wc-quote-head::after {
    content: ""; position: absolute; right: -40px; top: -60px; width: 200px; height: 200px;
    border-radius: 50%; background: rgba(255, 255, 255, .1);
}
.wc-quote-head-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 255, 255, .2); font-size: 1.6rem; flex: none; box-shadow: 0 8px 20px rgba(0, 0, 0, .15); }
.wc-quote-head-text { position: relative; }
.wc-quote-title { color: #fff; margin: 0; font-size: 1.3rem; font-weight: 700; }
.wc-quote-subtitle { color: rgba(255, 255, 255, .92); margin: .2rem 0 0; font-size: .92rem; }
.wc-quote-body { padding: 26px 28px 28px; }

/* ---- Inline (página /orcamento): elevação + faixa de marca p/ destacar do fundo branco ---- */
.wc-quote-inline {
    position: relative; overflow: hidden;
    background: var(--wcq-surface); border: 1px solid var(--wcq-border);
    border-radius: 20px; padding: 34px 32px 30px;
    box-shadow: 0 24px 60px -28px rgba(var(--wcq-primary-rgb), .3), 0 2px 10px rgba(16, 24, 40, .06);
}
.wc-quote-inline::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--wcq-grad); }

/* =====================================================================
   STEPPER (cabeçalho de etapas)
   ===================================================================== */
.wc-quote-stepper {
    list-style: none; margin: 0 0 26px; padding: 0;
    display: grid; grid-template-columns: repeat(var(--wcq-steps, 3), 1fr); gap: 0;
    position: relative;
}
.wc-quote-step {
    display: flex; flex-direction: column; align-items: center; gap: .55rem;
    text-align: center; position: relative; min-width: 0;
}
/* Linha conectora entre as etapas */
.wc-quote-step::before {
    content: ""; position: absolute; top: 19px; right: 50%; left: -50%; height: 3px;
    background: var(--wcq-border); z-index: 0; border-radius: 3px;
    transition: background .3s ease;
}
.wc-quote-step:first-child::before { display: none; }
.wc-quote-step.is-done::before,
.wc-quote-step.is-active::before { background: var(--wcq-primary); }
.wc-quote-step-dot {
    position: relative; z-index: 1; width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center; flex: none;
    background: var(--wcq-surface); color: var(--wcq-muted);
    border: 2px solid var(--wcq-border); font-weight: 700; font-size: .95rem;
    transition: .25s ease; box-shadow: 0 0 0 4px var(--wcq-surface);
}
.wc-quote-step-dot .icon { display: none; font-size: 1.05rem; }
.wc-quote-step-num { line-height: 1; }
.wc-quote-step.is-active .wc-quote-step-dot {
    background: var(--wcq-grad); color: #fff; border-color: transparent;
    box-shadow: 0 0 0 4px rgba(var(--wcq-primary-rgb), .16); transform: scale(1.06);
}
.wc-quote-step.is-done .wc-quote-step-dot { background: var(--wcq-primary); color: #fff; border-color: transparent; }
.wc-quote-step.is-done .wc-quote-step-num { display: none; }
.wc-quote-step.is-done .wc-quote-step-dot .icon { display: block; }
.wc-quote-step.is-done { cursor: pointer; }
.wc-quote-step[tabindex]:focus-visible { outline: 0; }
.wc-quote-step[tabindex]:focus-visible .wc-quote-step-dot { box-shadow: 0 0 0 4px rgba(var(--wcq-primary-rgb), .3); }
.wc-quote-step-txt { display: flex; flex-direction: column; line-height: 1.2; }
.wc-quote-step-lead { font-weight: 700; font-size: .85rem; color: var(--wcq-heading); }
.wc-quote-step.is-active .wc-quote-step-lead { color: var(--wcq-primary); }
.wc-quote-step-sub { font-size: .72rem; color: var(--wcq-muted); margin-top: 1px; }

/* =====================================================================
   PANES (conteúdo de cada etapa)
   ===================================================================== */
.wc-quote-pane { display: none; animation: wcqFade .3s ease; }
.wc-quote-pane.is-active { display: block; }
@keyframes wcqFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wc-quote-pane-title { margin: 0 0 .2rem; font-size: 1.1rem; font-weight: 700; color: var(--wcq-heading); }
.wc-quote-pane-sub { margin: 0 0 1.2rem; font-size: .9rem; color: var(--wcq-muted); }

/* ---- Seletor de serviços (cartões selecionáveis) ---- */
.wc-quote-services { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.wc-quote-svc {
    display: flex; align-items: flex-start; gap: 12px; text-align: left;
    padding: 16px; border-radius: var(--wcq-radius); border: 2px solid var(--wcq-border);
    background: var(--wcq-surface); color: var(--wcq-text); cursor: pointer; transition: .18s ease;
    width: 100%; position: relative;
}
.wc-quote-svc:hover { border-color: rgba(var(--wcq-primary-rgb), .5); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(var(--wcq-primary-rgb), .12); }
.wc-quote-svc-ic {
    width: 44px; height: 44px; border-radius: 11px; flex: none; display: grid; place-items: center;
    background: rgba(var(--wcq-primary-rgb), .1); color: var(--wcq-primary); font-size: 1.3rem; transition: .18s;
}
.wc-quote-svc-body { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.wc-quote-svc-tt { font-weight: 700; font-size: .98rem; line-height: 1.25; color: var(--wcq-heading); }
.wc-quote-svc-sb { font-size: .8rem; color: var(--wcq-muted); line-height: 1.3; }
.wc-quote-svc-check {
    position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; border-radius: 50%;
    display: grid; place-items: center; background: var(--wcq-primary); color: #fff; font-size: .7rem;
    opacity: 0; transform: scale(.4); transition: .2s ease;
}
.wc-quote-svc.is-active { border-color: var(--wcq-primary); background: rgba(var(--wcq-primary-rgb), .06); box-shadow: 0 10px 26px rgba(var(--wcq-primary-rgb), .18); }
.wc-quote-svc.is-active .wc-quote-svc-ic { background: var(--wcq-grad); color: #fff; }
.wc-quote-svc.is-active .wc-quote-svc-check { opacity: 1; transform: scale(1); }

/* ---- Boas-vindas do serviço (resumo) ---- */
.wc-quote-svc-desc {
    display: flex; gap: .6rem; align-items: flex-start; margin: 0 0 1.1rem;
    padding: .8rem 1rem; border-radius: 12px; font-size: .88rem; line-height: 1.45;
    color: var(--wcq-text); background: rgba(var(--wcq-primary-rgb), .07);
    border: 1px solid rgba(var(--wcq-primary-rgb), .16);
}
.wc-quote-svc-desc .icon { color: var(--wcq-primary); font-size: 1.05rem; margin-top: 1px; flex: none; }
.wc-quote-nofields {
    display: flex; gap: .55rem; align-items: center; padding: 1rem 1.1rem; border-radius: 12px;
    font-size: .9rem; color: var(--wcq-muted); background: rgba(var(--wcq-primary-rgb), .05);
    border: 1px dashed rgba(var(--wcq-primary-rgb), .25);
}
.wc-quote-nofields .icon { color: var(--wcq-primary); font-size: 1.1rem; }

/* =====================================================================
   FORM CONTROLS (autossuficiente; vence a especificidade do framework)
   ===================================================================== */
.wc-quote .form-group { margin: 0; }
.wc-quote .form-label { color: var(--wcq-heading); font-weight: 600; display: block; margin-bottom: .4rem; font-size: .88rem; }
.wc-quote .qf-req { color: var(--wcq-danger); font-weight: 700; }
.wc-quote .form-control-wrap { position: relative; }
.wc-quote .form-control,
.wc-quote .form-select,
.wc-quote textarea.form-control {
    display: block; width: 100%; padding: .68rem .95rem; margin: 0;
    font-size: .95rem; line-height: 1.45; font-family: inherit; color: var(--wcq-text);
    background-color: var(--wcq-field-bg); background-clip: padding-box;
    border: 1.5px solid var(--wcq-border); border-radius: 10px; box-shadow: none;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.wc-quote textarea.form-control { min-height: 96px; resize: vertical; }
.wc-quote textarea.no-resize { resize: none; }
.wc-quote .form-control:focus,
.wc-quote .form-select:focus { outline: 0; border-color: var(--wcq-primary); box-shadow: 0 0 0 3.5px rgba(var(--wcq-primary-rgb), .16); background-color: var(--wcq-surface); }
.wc-quote .form-control::placeholder { color: var(--wcq-muted); opacity: .8; }
/* <select> sempre com seta própria (independe do tema) */
.wc-quote .form-select {
    -webkit-appearance: none; -moz-appearance: none; appearance: none; padding-right: 2.4rem; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%238a93a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .9rem center; background-size: 14px;
}

/* ---- Ícone à esquerda do campo ---- */
.wc-quote .form-icon {
    position: absolute; top: 0; bottom: 0; height: auto; width: 2.6rem; display: grid; place-items: center;
    color: var(--wcq-muted); pointer-events: none; z-index: 1; font-size: 1.05rem; transition: color .15s;
}
/* Glifo: sobrepõe o tamanho/cor fixos do DashLite (.form-icon .icon { font-size:16px })
   para herdar o tamanho maior e a cor (muted/foco) definidos no span do widget. */
.wc-quote .form-icon .icon { font-size: 1.25rem; color: inherit; }
.wc-quote .form-icon-left { left: 0; }
.wc-quote .form-icon-left ~ .form-control { padding-left: 2.6rem; }
.wc-quote .form-control-wrap:focus-within .form-icon { color: var(--wcq-primary); }

/* ---- Nota / ajuda ---- */
.wc-quote .form-note { color: var(--wcq-muted); font-size: .8rem; display: flex; gap: .35rem; align-items: flex-start; margin-top: .4rem; }
.wc-quote .form-note .icon { font-size: .9rem; margin-top: 1px; }

/* ---- Estados de erro ---- */
.wc-quote .qf-group.is-error .form-control,
.wc-quote .qf-group.is-error .form-select,
.wc-quote .qf-group.is-error .qf-spin,
.wc-quote .qf-group.is-error .qf-file-drop { border-color: var(--wcq-danger); }
.wc-quote .qf-group.is-error .form-control:focus,
.wc-quote .qf-group.is-error .form-select:focus { box-shadow: 0 0 0 3.5px rgba(var(--wcq-danger-rgb), .16); }
.wc-quote .qf-group.is-error .form-label { color: var(--wcq-danger); }
.wc-quote .qf-choices.is-error { animation: wcqShake .3s; }
@keyframes wcqShake { 10%, 90% { transform: translateX(-1px); } 30%, 70% { transform: translateX(2px); } 50% { transform: translateX(-3px); } }

/* =====================================================================
   ESCOLHAS (radio / checkbox como pílulas selecionáveis)
   ===================================================================== */
.wc-quote .qf-choices { display: flex; flex-wrap: wrap; gap: .55rem; }
.wc-quote .qf-choice { position: relative; margin: 0; cursor: pointer; display: block; }
.wc-quote .qf-choice-input { position: absolute; opacity: 0; width: 0; height: 0; margin: 0; pointer-events: none; }
.wc-quote .qf-choice-face {
    display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem .5rem .7rem;
    border: 1.5px solid var(--wcq-border); border-radius: 40px; background: var(--wcq-surface);
    color: var(--wcq-text); font-size: .9rem; font-weight: 500; line-height: 1.2; transition: .16s ease; user-select: none;
}
.wc-quote .qf-choice-mark {
    width: 18px; height: 18px; border-radius: 50%; flex: none; display: grid; place-items: center;
    border: 1.5px solid var(--wcq-border); background: var(--wcq-field-bg); color: #fff; font-size: .6rem; transition: .16s ease;
}
.wc-quote .qf-choices.is-multi .qf-choice-mark { border-radius: 6px; }
.wc-quote .qf-choice-mark .icon { opacity: 0; transform: scale(.4); transition: .16s ease; }
.wc-quote .qf-choice:hover .qf-choice-face { border-color: rgba(var(--wcq-primary-rgb), .55); }
.wc-quote .qf-choice.is-checked .qf-choice-face,
.wc-quote .qf-choice:has(.qf-choice-input:checked) .qf-choice-face {
    border-color: var(--wcq-primary); background: rgba(var(--wcq-primary-rgb), .08); color: var(--wcq-primary); font-weight: 600;
}
.wc-quote .qf-choice.is-checked .qf-choice-mark,
.wc-quote .qf-choice:has(.qf-choice-input:checked) .qf-choice-mark { background: var(--wcq-primary); border-color: var(--wcq-primary); }
.wc-quote .qf-choice.is-checked .qf-choice-mark .icon,
.wc-quote .qf-choice:has(.qf-choice-input:checked) .qf-choice-mark .icon { opacity: 1; transform: scale(1); }
.wc-quote .qf-choice-input:focus-visible ~ .qf-choice-face { box-shadow: 0 0 0 3.5px rgba(var(--wcq-primary-rgb), .2); }

/* =====================================================================
   RANGE (slider com trilho preenchido + balão de valor)
   ===================================================================== */
.wc-quote .qf-range-wrap { padding-top: .2rem; }
.wc-quote .qf-range {
    -webkit-appearance: none; appearance: none; width: 100%; height: 7px; border-radius: 7px; margin: .4rem 0;
    background: linear-gradient(to right, var(--wcq-primary) 0%, var(--wcq-primary) var(--qf-fill, 50%), rgba(var(--wcq-primary-rgb), .16) var(--qf-fill, 50%), rgba(var(--wcq-primary-rgb), .16) 100%);
    cursor: pointer; outline: none;
}
.wc-quote .qf-range::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
    background: #fff; border: 4px solid var(--wcq-primary); box-shadow: 0 3px 8px rgba(var(--wcq-primary-rgb), .35); cursor: pointer; transition: transform .12s;
}
.wc-quote .qf-range::-webkit-slider-thumb:active { transform: scale(1.15); }
.wc-quote .qf-range::-moz-range-thumb {
    width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--wcq-primary);
    box-shadow: 0 3px 8px rgba(var(--wcq-primary-rgb), .35); cursor: pointer;
}
.wc-quote .qf-range::-moz-range-track { height: 7px; border-radius: 7px; background: rgba(var(--wcq-primary-rgb), .16); }
.wc-quote .qf-range::-moz-range-progress { height: 7px; border-radius: 7px; background: var(--wcq-primary); }
.wc-quote .qf-range:focus-visible { box-shadow: 0 0 0 3.5px rgba(var(--wcq-primary-rgb), .18); }
.wc-quote .qf-range-foot { display: flex; justify-content: space-between; align-items: center; margin-top: .35rem; }
.wc-quote .qf-range-edge { font-size: .75rem; color: var(--wcq-muted); }
.wc-quote .qf-range-out { font-size: .85rem; font-weight: 600; color: var(--wcq-primary); background: rgba(var(--wcq-primary-rgb), .1); padding: .15rem .6rem; border-radius: 30px; }

/* =====================================================================
   NUMBER (spinner com botões − / +)
   ===================================================================== */
.wc-quote .qf-spin { display: flex; align-items: stretch; border: 1.5px solid var(--wcq-border); border-radius: 10px; overflow: hidden; background: var(--wcq-field-bg); transition: border-color .15s, box-shadow .15s; }
.wc-quote .qf-spin:focus-within { border-color: var(--wcq-primary); box-shadow: 0 0 0 3.5px rgba(var(--wcq-primary-rgb), .16); }
.wc-quote .qf-spin .form-control { border: 0 !important; border-radius: 0 !important; text-align: center; box-shadow: none !important; background: transparent; -moz-appearance: textfield; }
.wc-quote .qf-spin .form-control::-webkit-outer-spin-button,
.wc-quote .qf-spin .form-control::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.wc-quote .qf-spin-btn {
    flex: none; width: 44px; border: 0; background: rgba(var(--wcq-primary-rgb), .07); color: var(--wcq-primary);
    cursor: pointer; display: grid; place-items: center; font-size: 1rem; transition: .15s;
}
.wc-quote .qf-spin-btn:hover { background: var(--wcq-primary); color: #fff; }

/* =====================================================================
   FILE (área de upload arrastável)
   ===================================================================== */
.wc-quote .qf-file { position: relative; }
.wc-quote .qf-file-input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; z-index: 2; }
.wc-quote .qf-file-input:focus-visible ~ .qf-file-drop { border-color: var(--wcq-primary); box-shadow: 0 0 0 3.5px rgba(var(--wcq-primary-rgb), .18); }
.wc-quote .qf-file-drop {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: .35rem;
    padding: 1.3rem 1rem; border: 1.5px dashed var(--wcq-border); border-radius: 12px;
    background: rgba(var(--wcq-primary-rgb), .03); color: var(--wcq-muted); transition: .16s ease; cursor: pointer; margin: 0;
}
.wc-quote .qf-file:hover .qf-file-drop,
.wc-quote .qf-file-drop.is-drag { border-color: var(--wcq-primary); background: rgba(var(--wcq-primary-rgb), .08); }
.wc-quote .qf-file-ico { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(var(--wcq-primary-rgb), .12); color: var(--wcq-primary); font-size: 1.25rem; }
.wc-quote .qf-file-text { font-size: .88rem; }
.wc-quote .qf-file-text b { color: var(--wcq-primary); font-weight: 600; }
.wc-quote .qf-file-name { display: none; font-size: .82rem; font-weight: 600; color: var(--wcq-heading); margin-top: .15rem; word-break: break-all; }
.wc-quote .qf-file.has-file .qf-file-drop { border-style: solid; border-color: var(--wcq-primary); background: rgba(var(--wcq-primary-rgb), .07); }
.wc-quote .qf-file.has-file .qf-file-name { display: block; }
.wc-quote .qf-file.has-file .qf-file-ico { background: var(--wcq-grad); color: #fff; }

/* =====================================================================
   NAVEGAÇÃO (voltar / continuar / enviar)
   ===================================================================== */
.wc-quote-nav { display: flex; align-items: center; gap: .6rem; margin-top: 1.6rem; padding-top: 1.3rem; border-top: 1px solid var(--wcq-border); }
.wc-quote-nav-spacer { flex: 1 1 auto; }
.wc-quote-nav button {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: inherit; font-size: .95rem; font-weight: 600; line-height: 1.2; cursor: pointer;
    border-radius: 10px; padding: .72rem 1.4rem; border: 1.5px solid transparent; transition: .16s ease;
}
.wc-quote-btn-prev { background: transparent; color: var(--wcq-text); border-color: var(--wcq-border); }
.wc-quote-btn-prev:hover { background: rgba(var(--wcq-primary-rgb), .07); border-color: rgba(var(--wcq-primary-rgb), .4); color: var(--wcq-primary); }
.wc-quote-btn-next, .wc-quote-btn-submit { background: var(--wcq-grad); color: #fff; box-shadow: 0 10px 26px rgba(var(--wcq-primary-rgb), .32); position: relative; }
.wc-quote-btn-next:hover, .wc-quote-btn-submit:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(var(--wcq-primary-rgb), .42); color: #fff; }
.wc-quote-btn-submit { min-width: 210px; }
.wc-quote-nav button:disabled { opacity: .6; cursor: default; transform: none; }
.wc-quote-nav [hidden] { display: none !important; }

/* Loading do submit — spinner AUTOSSUFICIENTE (não depende da .spinner-border do framework). */
.wc-quote .jwc_quote_submit .wc-quote-spinner { display: none; box-sizing: border-box; width: 1.15rem; height: 1.15rem; border: 2px solid rgba(255, 255, 255, .45); border-top-color: #fff; border-radius: 50%; }
.wc-quote .jwc_quote_submit.is-loading .wc-quote-btn-label { visibility: hidden; }
.wc-quote .jwc_quote_submit.is-loading .wc-quote-spinner { display: inline-block; position: absolute; top: 50%; left: 50%; animation: wcqSpin .65s linear infinite; }
@keyframes wcqSpin { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Honeypot anti-spam: invisível ao usuário, mas ainda no DOM p/ bots. */
.wc-quote .jwc_quote_hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; padding: 0; margin: 0; border: 0; opacity: 0; overflow: hidden; pointer-events: none; }

/* =====================================================================
   ALERTA / SUCESSO / VAZIO
   ===================================================================== */
.wc-quote-alert { display: none; margin-bottom: 1rem; padding: .8rem 1.1rem; border-radius: 12px; background: rgba(var(--wcq-danger-rgb), .12); color: var(--wcq-danger); border: 1px solid rgba(var(--wcq-danger-rgb), .3); font-size: .9rem; }
.wc-quote-alert p, .wc-quote-success p { margin: 0; }
.wc-quote-success { display: none; text-align: center; padding: 22px 6px; animation: wcqFade .35s ease; }
.wc-quote-success-icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.1rem; font-size: 2rem; color: #fff; background: var(--wcq-grad); box-shadow: 0 12px 30px rgba(var(--wcq-primary-rgb), .4); animation: wcqPop .4s cubic-bezier(.2, 1.4, .4, 1); }
@keyframes wcqPop { from { transform: scale(.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wc-quote-success-title { margin: 0 0 .5rem; color: var(--wcq-heading); }
.wc-quote-success p { color: var(--wcq-muted); margin: 0 0 .5rem; }
.wc-quote-success-sign { color: var(--wcq-text) !important; }
.wc-quote-empty { padding: 26px; text-align: center; color: var(--wcq-muted); border: 1px dashed var(--wcq-border); border-radius: 14px; }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 575px) {
    .wc-quote-head { padding: 20px; }
    .wc-quote-body { padding: 20px; }
    .wc-quote-inline { padding: 20px; }
    .wc-quote-services { grid-template-columns: 1fr; }
    .wc-quote-step-sub { display: none; }
    .wc-quote-step-lead { font-size: .78rem; }
    .wc-quote-step-dot { width: 36px; height: 36px; }
    .wc-quote-step::before { top: 17px; }
    .wc-quote-nav button { padding: .68rem 1rem; font-size: .9rem; }
    .wc-quote-btn-submit { min-width: 0; flex: 1; }
    .wc-quote-btn-next { flex: 1; }
}
@media (max-width: 360px) {
    .wc-quote-step-txt { display: none; }
}
