/**
 * TattooAE — Carlos Marquez
 * Formulário Comercial Minimal V1
 *
 * Escopo visual:
 * - Step 1: dados do orçamento
 * - Step 2: dados para contato
 * - Step 3: conferência e LGPD
 * - Tela final: obrigado
 *
 * Regras:
 * - Todo o componente fica isolado em .orcamento-minimal
 * - Cinzel deve ser carregada pelo documento
 * - Não contém regra de negócio
 * - Não contém tracking
 * - Não envia formulário
 */

/* =========================================================
   1. PÁGINA E TOKENS
   ========================================================= */

html {
    color-scheme: dark;
}

body.orcamento-minimal-page {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background: #303030;
    color: #b9b7b4;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.orcamento-minimal-page *,
body.orcamento-minimal-page *::before,
body.orcamento-minimal-page *::after {
    box-sizing: border-box;
}

body.orcamento-minimal-page button,
body.orcamento-minimal-page input,
body.orcamento-minimal-page textarea {
    font: inherit;
}

body.orcamento-minimal-page button {
    border: 0;
}

.orcamento-minimal {
    --om-bg-page: #303030;
    --om-bg-shell: #121212;
    --om-bg-control: #141414;
    --om-bg-control-hover: #181818;
    --om-bg-modal: #171717;
    --om-bg-preview: #1a1a1a;

    --om-border: #303030;
    --om-border-soft: #272727;
    --om-border-strong: #44413e;

    --om-text: #b8b5b1;
    --om-text-strong: #d2cfca;
    --om-text-soft: #87847f;
    --om-text-muted: #66635f;

    --om-primary: #aaa7a3;
    --om-primary-hover: #bbb8b3;
    --om-primary-text: #242424;
    --om-danger: #c75c5c;
    --om-success: #7f9d87;
    --om-focus: #cac4ba;

    --om-radius-sm: 4px;
    --om-radius-md: 6px;
    --om-radius-lg: 10px;

    --om-shadow-modal:
        0 24px 80px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(255, 255, 255, 0.035);

    width: min(100%, 430px);
    min-height: 100vh;
    margin-inline: auto;
    padding: 0;
    background: var(--om-bg-shell);
    color: var(--om-text);
    isolation: isolate;
}

.orcamento-minimal a {
    color: inherit;
}

.orcamento-minimal img {
    display: block;
    max-width: 100%;
}

/* =========================================================
   2. ESTRUTURA
   ========================================================= */

.orcamento-minimal__shell {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    padding:
        max(44px, env(safe-area-inset-top))
        18px
        max(20px, env(safe-area-inset-bottom));
}

.orcamento-minimal__content {
    width: 100%;
}

.orcamento-minimal__footer {
    margin-top: auto;
    padding-top: 48px;
}

/* =========================================================
   3. MARCA
   ========================================================= */

.om-brand {
    padding: 34px 12px 25px;
    text-align: center;
}

.om-brand__name,
.om-brand__subtitle {
    margin: 0;
    font-family: "Cinzel", Georgia, serif;
    font-weight: 400;
    text-transform: uppercase;
}

.om-brand__name {
    color: #b8b6b3;
    font-size: clamp(1rem, 5vw, 1.16rem);
    letter-spacing: 0.27em;
    line-height: 1.4;
}

.om-brand__subtitle {
    margin-top: 3px;
    color: #777470;
    font-size: 0.68rem;
    letter-spacing: 0.52em;
    line-height: 1.5;
}

.om-divider {
    width: 100%;
    height: 1px;
    margin: 0 0 17px;
    border: 0;
    background: #2d2d2d;
}

/* =========================================================
   4. ETAPA, ALERTAS E MENSAGENS
   ========================================================= */

.om-step-heading {
    margin: 0 0 18px;
    color: #a34f4f;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    font-size: 0.59rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    line-height: 1.5;
    text-align: left;
    text-transform: uppercase;
}

.om-alert {
    width: 100%;
    margin: 0 0 16px;
    padding: 10px 12px;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-sm);
    background: rgba(255, 255, 255, 0.018);
    color: var(--om-text-soft);
    font-size: 0.75rem;
    line-height: 1.45;
    text-align: left;
}

.om-alert[hidden] {
    display: none;
}

.om-alert--error {
    border-color: rgba(199, 92, 92, 0.48);
    background: rgba(199, 92, 92, 0.07);
    color: #d98686;
}

.om-alert--success {
    border-color: rgba(127, 157, 135, 0.42);
    background: rgba(127, 157, 135, 0.07);
    color: #a6b9ab;
}

/* =========================================================
   5. STEPS
   ========================================================= */

.om-step {
    width: 100%;
    animation: om-step-enter 220ms ease-out both;
}

.om-step[hidden],
.om-step.is-hidden {
    display: none !important;
}

@keyframes om-step-enter {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   6. CAMPOS
   ========================================================= */

.om-field {
    width: 100%;
    margin: 0 0 17px;
}

.om-field:last-child {
    margin-bottom: 0;
}

.om-label {
    display: block;
    margin: 0 0 7px;
    color: #aaa7a3;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.17em;
    line-height: 1.45;
    text-transform: uppercase;
}

.om-label__required {
    margin-left: 2px;
    color: #aaa7a3;
}

.om-control,
.om-input,
.om-textarea,
.om-select-trigger {
    width: 100%;
    min-height: 36px;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-sm);
    outline: none;
    background: var(--om-bg-control);
    color: var(--om-text);
    transition:
        border-color 140ms ease,
        background-color 140ms ease,
        box-shadow 140ms ease,
        color 140ms ease;
}

.om-input,
.om-textarea {
    appearance: none;
    padding: 9px 10px;
    font-size: 1rem;
}

.om-input {
    height: 36px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
}

.om-textarea {
    min-height: 108px;
    resize: vertical;
    color: var(--om-text-strong);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
}

.om-input::placeholder,
.om-textarea::placeholder {
    color: #777470;
    opacity: 1;
}

.om-input:hover,
.om-textarea:hover,
.om-select-trigger:hover {
    border-color: #3a3a3a;
    background: var(--om-bg-control-hover);
}

.om-input:focus,
.om-textarea:focus,
.om-select-trigger:focus-visible {
    border-color: var(--om-border-strong);
    box-shadow: 0 0 0 2px rgba(202, 196, 186, 0.08);
}

.om-field.is-invalid .om-input,
.om-field.is-invalid .om-textarea,
.om-field.is-invalid .om-select-trigger,
.om-input[aria-invalid="true"],
.om-textarea[aria-invalid="true"],
.om-select-trigger[aria-invalid="true"] {
    border-color: rgba(199, 92, 92, 0.7);
}

.om-field.is-valid .om-input,
.om-field.is-valid .om-textarea,
.om-field.is-valid .om-select-trigger {
    border-color: rgba(127, 157, 135, 0.5);
}

.om-field__message {
    display: block;
    min-height: 0;
    margin: 6px 0 0;
    color: var(--om-text-muted);
    font-size: 0.7rem;
    line-height: 1.45;
    text-align: left;
}

.om-field__message:empty {
    display: none;
}

.om-field__message--error,
.om-field.is-invalid .om-field__message {
    color: #d47878;
}

/* =========================================================
   7. SELETOR / COMBO VISUAL
   ========================================================= */

.om-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 36px 8px 10px;
    cursor: pointer;
    color: var(--om-text);
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-align: left;
    text-transform: uppercase;
}

.om-select-trigger::after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    border-top: 8px solid #393939;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: "";
    transform: translateY(-45%);
    transition:
        border-top-color 140ms ease,
        transform 140ms ease;
}

.om-select-trigger:hover::after,
.om-select-trigger:focus-visible::after {
    border-top-color: #5b5956;
}

.om-select-trigger[aria-expanded="true"]::after {
    transform: translateY(-55%) rotate(180deg);
}

.om-select-trigger__placeholder {
    color: #6f6c68;
}

.om-select-trigger__value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
   8. TEXTO DE APOIO
   ========================================================= */

.om-help {
    margin: -2px 10px 15px;
    color: #8b8884;
    font-size: 0.7rem;
    line-height: 1.35;
    text-align: center;
}

.om-help--left {
    margin-inline: 0;
    text-align: left;
}

/* =========================================================
   9. UPLOAD E THUMBNAILS
   ========================================================= */

.om-upload {
    margin-top: 4px;
}

.om-upload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.om-upload__label {
    display: flex;
    min-height: 107px;
    align-items: center;
    justify-content: center;
    border: 1px dashed #303030;
    border-radius: var(--om-radius-sm);
    background: #131313;
    cursor: pointer;
    transition:
        border-color 150ms ease,
        background-color 150ms ease,
        transform 150ms ease;
}

.om-upload__label:hover,
.om-upload__label:focus-within,
.om-upload.is-dragover .om-upload__label {
    border-color: #474747;
    background: #171717;
}

.om-upload.is-dragover .om-upload__label {
    transform: scale(1.006);
}

.om-upload__content {
    display: grid;
    justify-items: center;
    gap: 9px;
    padding: 18px;
    text-align: center;
}

.om-upload__title {
    color: #bcb9b5;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.34em;
    line-height: 1.5;
    text-transform: uppercase;
}

.om-upload__plus {
    color: #918e8a;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
}

.om-upload__limit {
    color: #696662;
    font-size: 0.67rem;
}

.om-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.om-preview {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-sm);
    background: var(--om-bg-preview);
}

.om-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.om-preview__remove {
    position: absolute;
    top: 5px;
    right: 5px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(12, 12, 12, 0.88);
    color: #dedbd7;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition:
        background-color 140ms ease,
        border-color 140ms ease,
        transform 140ms ease;
}

.om-preview__remove:hover {
    border-color: rgba(199, 92, 92, 0.65);
    background: rgba(101, 35, 35, 0.92);
}

.om-preview__remove:active {
    transform: scale(0.94);
}

.om-preview__remove:focus-visible {
    outline: 2px solid var(--om-focus);
    outline-offset: 2px;
}

/* =========================================================
   10. AÇÕES E BOTÕES
   ========================================================= */

.om-actions {
    display: grid;
    grid-template-columns: minmax(92px, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin-top: 17px;
}

.om-actions--end {
    display: flex;
    justify-content: flex-end;
}

.om-back {
    display: inline-flex;
    min-width: 92px;
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 10px;
    border-radius: var(--om-radius-sm);
    background: transparent;
    color: #686560;
    cursor: pointer;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition:
        color 140ms ease,
        background-color 140ms ease;
}

.om-back:hover {
    background: rgba(255, 255, 255, 0.018);
    color: #9a9792;
}

.om-back:focus-visible {
    outline: 2px solid var(--om-focus);
    outline-offset: 2px;
    color: #aaa7a3;
}

.om-button {
    position: relative;
    display: inline-flex;
    min-width: 109px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 17px;
    border-radius: var(--om-radius-sm);
    background: var(--om-primary);
    color: var(--om-primary-text);
    cursor: pointer;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    transition:
        background-color 140ms ease,
        color 140ms ease,
        opacity 140ms ease,
        transform 140ms ease,
        box-shadow 140ms ease;
}

.om-button:hover:not(:disabled) {
    background: var(--om-primary-hover);
}

.om-button:active:not(:disabled) {
    transform: translateY(1px);
}

.om-button:focus-visible {
    outline: 2px solid var(--om-focus);
    outline-offset: 3px;
}

.om-button:disabled,
.om-button[aria-disabled="true"] {
    background: #777777;
    color: #3d3d3d;
    cursor: not-allowed;
    opacity: 0.72;
}

.om-button--secondary {
    border: 1px solid var(--om-border-strong);
    background: transparent;
    color: #918e89;
}

.om-button--secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.035);
    color: #b7b4af;
}

.om-button--submit {
    min-width: 150px;
}

.om-button.is-loading {
    pointer-events: none;
}

.om-button.is-loading .om-button__label {
    opacity: 0.78;
}

.om-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(36, 36, 36, 0.32);
    border-top-color: #242424;
    border-radius: 50%;
    animation: om-spin 720ms linear infinite;
}

@keyframes om-spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   11. CONFERÊNCIA
   ========================================================= */

.om-review {
    display: grid;
    gap: 12px;
}

.om-review__group {
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-md);
    background: rgba(255, 255, 255, 0.012);
}

.om-review__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 13px 10px;
    border-bottom: 1px solid var(--om-border-soft);
}

.om-review__title {
    margin: 0;
    color: #aaa7a3;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.om-review__edit {
    min-width: 48px;
    min-height: 34px;
    padding: 5px 7px;
    border-radius: var(--om-radius-sm);
    background: transparent;
    color: #77746f;
    cursor: pointer;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.59rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.om-review__edit:hover {
    background: rgba(255, 255, 255, 0.025);
    color: #aaa7a3;
}

.om-review__edit:focus-visible {
    outline: 2px solid var(--om-focus);
    outline-offset: 2px;
}

.om-review__list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 5px 13px 9px;
}

.om-review__row {
    display: grid;
    grid-template-columns: minmax(90px, 0.85fr) minmax(0, 1.4fr);
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.om-review__row:last-child {
    border-bottom: 0;
}

.om-review__term,
.om-review__value {
    margin: 0;
    overflow-wrap: anywhere;
}

.om-review__term {
    color: #6f6c68;
    font-size: 0.69rem;
}

.om-review__value {
    color: #aaa7a3;
    font-size: 0.73rem;
    text-align: right;
}

/* =========================================================
   12. LGPD
   ========================================================= */

.om-consent {
    margin-top: 17px;
    padding: 12px;
    border: 1px solid var(--om-border-soft);
    border-radius: var(--om-radius-sm);
    background: rgba(255, 255, 255, 0.012);
}

.om-consent__label {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.om-consent__input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: #aaa7a3;
}

.om-consent__text {
    color: #77746f;
    font-size: 0.68rem;
    line-height: 1.5;
}

.om-consent__link,
.om-footer__link {
    color: #96928d;
    text-decoration: underline;
    text-decoration-color: #4a4845;
    text-underline-offset: 3px;
}

.om-consent__link:hover,
.om-footer__link:hover {
    color: #bbb7b1;
    text-decoration-color: #7b7771;
}

.om-consent__link:focus-visible,
.om-footer__link:focus-visible {
    border-radius: 2px;
    outline: 2px solid var(--om-focus);
    outline-offset: 3px;
}

/* =========================================================
   13. FOOTER
   ========================================================= */

.om-footer {
    color: #5f5c58;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    font-size: 0.58rem;
    line-height: 1.45;
    text-align: center;
}

.om-footer__legal {
    max-width: 330px;
    margin: 0 auto;
}

.om-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    margin-top: 7px;
}

.om-footer__copyright {
    margin: 7px 0 0;
    color: #44423f;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.49rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =========================================================
   14. MODAL DE SELEÇÃO E EDIÇÃO
   ========================================================= */

.om-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding:
        max(18px, env(safe-area-inset-top))
        18px
        max(18px, env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
    animation: om-modal-backdrop 160ms ease-out both;
}

.om-modal[hidden] {
    display: none;
}

.om-modal__dialog {
    width: min(100%, 390px);
    max-height: min(82vh, 650px);
    overflow: hidden;
    border: 1px solid #373737;
    border-radius: var(--om-radius-lg);
    background: var(--om-bg-modal);
    box-shadow: var(--om-shadow-modal);
    animation: om-modal-dialog 190ms ease-out both;
}

.om-modal__header {
    padding: 18px 18px 13px;
    border-bottom: 1px solid var(--om-border-soft);
}

.om-modal__title {
    margin: 0;
    color: #bbb8b4;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.77rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1.45;
    text-transform: uppercase;
}

.om-modal__description {
    margin: 7px 0 0;
    color: #77746f;
    font-size: 0.71rem;
    line-height: 1.45;
}

.om-modal__body {
    max-height: min(52vh, 420px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px;
    scrollbar-color: #494949 #1a1a1a;
    scrollbar-width: thin;
}

.om-modal__options {
    display: grid;
    gap: 7px;
}

.om-option {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 48px;
    grid-template-columns: minmax(0, 1fr) 20px;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-sm);
    background: #141414;
    color: #96938e;
    cursor: pointer;
    text-align: left;
    transition:
        border-color 140ms ease,
        background-color 140ms ease,
        color 140ms ease;
}

.om-option:hover {
    border-color: #414141;
    background: #191919;
    color: #b3b0ab;
}

.om-option:focus-visible {
    outline: 2px solid var(--om-focus);
    outline-offset: 2px;
}

.om-option.is-selected,
.om-option[aria-selected="true"] {
    border-color: #5b5752;
    background: #1b1a19;
    color: #c1bdb7;
}

.om-option__label {
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.7rem;
    letter-spacing: 0.11em;
    line-height: 1.45;
    text-transform: uppercase;
}

.om-option__meta {
    display: block;
    margin-top: 3px;
    color: #6d6965;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0;
    text-transform: none;
}

.om-option__check {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 1px solid #44413e;
    border-radius: 50%;
    color: transparent;
    font-size: 0.68rem;
}

.om-option.is-selected .om-option__check,
.om-option[aria-selected="true"] .om-option__check {
    border-color: #aaa7a3;
    background: #aaa7a3;
    color: #202020;
}

.om-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 13px 14px 15px;
    border-top: 1px solid var(--om-border-soft);
}

@keyframes om-modal-backdrop {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes om-modal-dialog {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================================================
   15. TELA DE OBRIGADO
   ========================================================= */

.om-success {
    display: grid;
    min-height: 370px;
    align-content: center;
    justify-items: center;
    padding: 42px 20px;
    text-align: center;
}

.om-success__mark {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    place-items: center;
    border: 1px solid #4b4844;
    border-radius: 50%;
    color: #aaa7a3;
    font-size: 1.1rem;
}

.om-success__title {
    max-width: 320px;
    margin: 0;
    color: #bebbb6;
    font-family: "Cinzel", Georgia, serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    line-height: 1.65;
    text-transform: uppercase;
}

.om-success__text {
    max-width: 310px;
    margin: 17px 0 0;
    color: #85817c;
    font-size: 0.78rem;
    line-height: 1.65;
}

/* =========================================================
   16. TOAST
   ========================================================= */

.om-toast-region {
    position: fixed;
    z-index: 1200;
    top: max(18px, env(safe-area-inset-top));
    right: 18px;
    left: 18px;
    display: grid;
    justify-items: center;
    pointer-events: none;
}

.om-toast {
    width: min(100%, 390px);
    padding: 11px 13px;
    border: 1px solid #3c3936;
    border-radius: var(--om-radius-sm);
    background: rgba(24, 24, 24, 0.97);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
    color: #aaa7a3;
    font-size: 0.73rem;
    line-height: 1.45;
    text-align: left;
    pointer-events: auto;
}

.om-toast--error {
    border-color: rgba(199, 92, 92, 0.55);
    color: #d98686;
}

/* =========================================================
   17. ACESSIBILIDADE
   ========================================================= */

.om-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

.orcamento-minimal :focus:not(:focus-visible) {
    outline: none;
}

/* =========================================================
   18. RESPONSIVIDADE
   ========================================================= */

@media (max-width: 370px) {
    .orcamento-minimal__shell {
        padding-inline: 14px;
    }

    .om-brand {
        padding-inline: 6px;
    }

    .om-brand__name {
        font-size: 0.92rem;
        letter-spacing: 0.22em;
    }

    .om-actions {
        gap: 15px;
    }

    .om-button {
        padding-inline: 13px;
    }

    .om-review__row {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .om-review__value {
        text-align: left;
    }
}

@media (min-width: 600px) {
    body.orcamento-minimal-page {
        padding-block: 3px;
    }

    .orcamento-minimal {
        min-height: calc(100vh - 6px);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.015);
    }

    .orcamento-minimal__shell {
        min-height: calc(100vh - 6px);
    }
}

@media (min-width: 900px) {
    .orcamento-minimal {
        width: min(100%, 460px);
    }

    .orcamento-minimal__shell {
        padding-inline: 20px;
    }
}

/* =========================================================
   19. MOVIMENTO REDUZIDO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .orcamento-minimal *,
    .orcamento-minimal *::before,
    .orcamento-minimal *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   PATCH-FUNIL-MINIMAL-VISUAL-FIX1
   ========================================================= */

.orcamento-minimal {
    --om-accent: #9a7b50;
    --om-accent-soft: rgba(154, 123, 80, 0.16);
    --om-focus: #9a7b50;
}

.om-brand__subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
}

.om-step-heading {
    color: var(--om-text-soft);
}

.om-input:focus,
.om-textarea:focus,
.om-select-trigger:focus-visible {
    border-color: var(--om-accent);
    box-shadow: 0 0 0 2px rgba(154, 123, 80, 0.14);
}

.om-select-trigger {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.om-select-trigger__value:not(.om-select-trigger__placeholder) {
    color: #b69a70;
}

.om-select-trigger:hover::after,
.om-select-trigger:focus-visible::after,
.om-select-trigger[aria-expanded="true"]::after {
    border-top-color: var(--om-accent);
}

.om-upload {
    overflow: hidden;
    border: 1px dashed #303030;
    border-radius: var(--om-radius-sm);
    background: #131313;
    transition:
        border-color 150ms ease,
        background-color 150ms ease;
}

.om-upload:hover,
.om-upload:focus-within,
.om-upload.is-dragover {
    border-color: rgba(154, 123, 80, 0.72);
    background: #171614;
}

.om-upload__label {
    min-height: 107px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.om-upload__label:hover,
.om-upload__label:focus-within,
.om-upload.is-dragover .om-upload__label {
    border-color: transparent;
    background: transparent;
}

.om-preview-grid {
    margin: 0;
    padding: 0 10px 10px;
}

.om-preview-grid:empty {
    display: none;
}

.om-option {
    color: #aaa7a3;
}

.om-option__label {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 1.5;
    text-transform: none;
}

.om-option__meta {
    color: #85817c;
    font-size: 0.68rem;
}

.om-option:hover {
    border-color: rgba(154, 123, 80, 0.52);
    background: #191817;
    color: #c6c0b6;
}

.om-option.is-selected,
.om-option[aria-selected="true"] {
    border-color: var(--om-accent);
    background: var(--om-accent-soft);
    color: #d0c4b1;
}

.om-option.is-selected .om-option__check,
.om-option[aria-selected="true"] .om-option__check {
    border-color: var(--om-accent);
    background: var(--om-accent);
    color: #17130f;
}

.om-success__mark {
    border-color: rgba(127, 157, 135, 0.68);
    background: rgba(127, 157, 135, 0.08);
    color: var(--om-success);
}

/* FIM PATCH-FUNIL-MINIMAL-VISUAL-FIX1 */

/* =========================================================
   PATCH-FUNIL-MINIMAL-VISUAL-FIX2
   Hierarquia, contraste, viewport mobile e contrato visual.
   ========================================================= */

html {
    min-height: 100%;
    background: #121212;
}

body.orcamento-minimal-page {
    min-height: 100svh;
    background: #121212;
}

.orcamento-minimal {
    --om-radius-sm: 3px;
    --om-radius-md: 3px;
    --om-radius-lg: 3px;

    --om-bg-shell: #121212;
    --om-bg-control: #101010;
    --om-bg-control-hover: #151515;

    --om-border: #343434;
    --om-border-soft: #292929;
    --om-border-strong: #55504a;

    min-height: 100svh;
    background: #121212;
}

.orcamento-minimal__shell {
    min-height: 100svh;
    background: #121212;
}

@supports (height: 100dvh) {
    body.orcamento-minimal-page,
    .orcamento-minimal,
    .orcamento-minimal__shell {
        min-height: 100dvh;
    }
}

.om-step-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 14px;
    margin: 0 0 19px;
    padding-bottom: 11px;
    border-bottom: 1px solid #2d2d2d;
}

.om-step-title {
    margin: 0;
    color: #d0cdc8;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.35;
    text-align: left;
}

.om-step-marker {
    color: var(--om-accent);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    font-size: 0.57rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: right;
    text-transform: uppercase;
    white-space: nowrap;
}

.om-field {
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid #2d2d2d;
    border-radius: 3px;
    background: #151515;
}

.om-field:last-child {
    margin-bottom: 0;
}

.om-label {
    margin-bottom: 8px;
    color: #ad8b5b;
    font-size: 0.64rem;
    letter-spacing: 0.105em;
}

.om-label__required {
    color: #ad8b5b;
}

.om-label__alternative {
    display: block;
    margin-top: 3px;
    color: #77736e;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    font-size: 0.67rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: none;
}

.om-input,
.om-textarea,
.om-select-trigger {
    border-color: #48443f;
    border-radius: 3px;
    background: #101010;
}

.om-input:hover,
.om-textarea:hover,
.om-select-trigger:hover {
    border-color: #625a50;
    background: #131313;
}

.om-input,
.om-textarea,
.om-select-trigger__value:not(.om-select-trigger__placeholder) {
    color: #c9c6c1;
}

.om-select-trigger {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.025em;
    text-transform: none;
}

.om-select-trigger__placeholder {
    color: #706d69;
}

.om-help {
    margin: 0 0 13px;
    color: #8b8781;
    font-size: 0.69rem;
    line-height: 1.45;
    text-align: left;
}

.om-upload {
    border-color: #48443f;
    border-radius: 3px;
}

.om-upload__label {
    border-radius: 3px 3px 0 0;
}

.om-preview {
    border-radius: 3px;
}

.om-button {
    min-height: 40px;
    border: 1px solid #d2cec7;
    border-radius: 3px;
    box-shadow:
        inset 0 0 0 1px rgba(18, 18, 18, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.025);
}

.om-button:hover:not(:disabled) {
    border-color: #eeeae3;
}

.om-button:disabled,
.om-button[aria-disabled="true"] {
    border-color: #595959;
    background: #666666;
    color: #333333;
    box-shadow: none;
}

.om-back,
.om-review__edit,
.om-consent,
.om-review__group,
.om-modal__dialog,
.om-option,
.om-toast,
.om-alert {
    border-radius: 3px;
}

.om-consent {
    border-color: #343434;
    background: #151515;
}

.om-consent__input {
    accent-color: #6f9b78;
}

.om-consent__input:checked {
    filter: saturate(1.15);
}

.om-consent:has(.om-consent__input:checked) {
    border-color: rgba(111, 155, 120, 0.58);
}

.om-option__label {
    color: #c2bfba;
}

.om-option.is-selected,
.om-option[aria-selected="true"] {
    border-color: var(--om-accent);
    background: rgba(154, 123, 80, 0.13);
}

.om-option.is-selected .om-option__label,
.om-option[aria-selected="true"] .om-option__label {
    color: #d0cdc7;
}

@media (min-width: 600px) {
    body.orcamento-minimal-page {
        background: #303030;
    }
}

@media (max-width: 370px) {
    .om-step-header {
        gap: 9px;
    }

    .om-step-title {
        font-size: 0.8rem;
    }

    .om-step-marker {
        font-size: 0.52rem;
        letter-spacing: 0.075em;
    }

    .om-field {
        padding: 10px;
    }
}

/* FIM PATCH-FUNIL-MINIMAL-VISUAL-FIX2 */

/* =========================================================
   PATCH-FUNIL-MINIMAL-VISUAL-FIX3
   Tipografia operacional, upload, modal, revisão e sucesso.
   ========================================================= */

.om-step-title,
.om-step-marker {
    color: var(--om-accent);
}

.om-step-title {
    font-size: 0.82rem;
    font-weight: 500;
}

.om-label,
.om-input,
.om-textarea,
.om-select-trigger,
.om-upload__title,
.om-upload__limit,
.om-back,
.om-button,
.om-review__title,
.om-review__edit,
.om-modal__title,
.om-modal__description,
.om-option__label,
.om-option__meta {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.om-label {
    letter-spacing: 0.07em;
}

.om-input,
.om-textarea {
    letter-spacing: 0.025em;
}

.om-briefing-rule {
    margin: 1px 3px 14px;
    color: #827e78;
    font-size: 0.69rem;
    line-height: 1.5;
    text-align: left;
}

.om-label--static {
    display: block;
    margin: 0 0 9px;
}

.om-textarea-meta {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.om-character-counter {
    color: #4f4c48;
    font-size: 0.61rem;
    letter-spacing: 0.025em;
    line-height: 1.3;
}

.om-field--references {
    padding: 12px;
}

.om-upload__icon {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--om-accent);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.om-upload__title {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.om-upload.has-references {
    overflow: visible;
    border: 0;
    background: transparent;
}

.om-upload.has-references .om-upload__label {
    display: none;
}

.om-upload.has-references .om-preview-grid {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.om-preview-grid[hidden] {
    display: none !important;
}

.om-preview {
    position: relative;
    overflow: hidden;
    min-width: 0;
    aspect-ratio: 1 / 1;
    border-radius: 3px;
}

.om-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.om-preview--add {
    display: grid;
    place-items: center;
    border: 1px dashed rgba(154, 123, 80, 0.7);
    background: #101010;
    color: var(--om-accent);
    cursor: pointer;
}

.om-preview--add:hover {
    border-color: #c1a06f;
    background: rgba(154, 123, 80, 0.1);
}

.om-preview--add:focus-visible {
    outline: 2px solid var(--om-accent);
    outline-offset: 2px;
}

.om-preview--add svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.5;
}

.om-sr-only {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.om-modal {
    background: rgba(4, 4, 4, 0.97);
    backdrop-filter: none;
}

.om-modal__dialog {
    background: #151515;
    opacity: 1;
}

.om-option__check {
    visibility: visible;
    border-color: #55504a;
    background: transparent;
    color: transparent;
}

.om-option.is-selected .om-option__check,
.om-option[aria-selected="true"] .om-option__check {
    border-color: var(--om-accent);
    background: var(--om-accent);
    box-shadow: 0 0 0 2px rgba(154, 123, 80, 0.12);
    color: #17130f;
}

.om-review__value {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 7px;
}

.om-review__text {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.om-review__row[data-review-field="idea"] .om-review__text {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.om-review__row[data-review-field="instagram"] .om-review__text {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.om-review__edit {
    align-self: start;
    font-size: 0.58rem;
    letter-spacing: 0.055em;
}

.om-button:not(:disabled):not([aria-disabled="true"]) {
    border-color: #c9ad82;
    background: var(--om-accent);
    color: #17130f;
}

.om-button:hover:not(:disabled) {
    border-color: #e0c59b;
    background: #ad8b5c;
}

.om-button:disabled,
.om-button[aria-disabled="true"] {
    border-color: #4d4d4d;
    background: #515151;
    color: #292929;
    opacity: 0.72;
}

.orcamento-minimal.is-success .om-brand,
.orcamento-minimal.is-success .om-divider,
.orcamento-minimal.is-success .orcamento-minimal__footer {
    display: none;
}

.orcamento-minimal.is-success .orcamento-minimal__shell {
    min-height: 100svh;
    justify-content: center;
    padding-top: max(24px, env(safe-area-inset-top));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
}

.orcamento-minimal.is-success .orcamento-minimal__content {
    display: grid;
    align-items: center;
}

.orcamento-minimal.is-success .om-success {
    min-height: min(76svh, 610px);
    padding: 32px 18px;
}

.om-success__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 30px;
}

.om-social-placeholder {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(154, 123, 80, 0.62);
    border-radius: 50%;
    color: var(--om-accent);
    opacity: 0.82;
}

.om-social-placeholder svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.om-social-placeholder:nth-child(2) svg,
.om-social-placeholder:nth-child(3) svg {
    fill: currentColor;
    stroke: none;
}

.om-social-placeholder .om-social-placeholder__play {
    fill: #121212;
}

@supports (height: 100dvh) {
    .orcamento-minimal.is-success .orcamento-minimal__shell {
        min-height: 100dvh;
    }

    .orcamento-minimal.is-success .om-success {
        min-height: min(76dvh, 610px);
    }
}

/* FIM PATCH-FUNIL-MINIMAL-VISUAL-FIX3 */

/* =========================================================
   PATCH-FUNIL-MINIMAL-VISUAL-FIX4
   Modal mobile, foco, revisão e links sociais.
   ========================================================= */

.om-modal__dialog {
    display: grid;
    max-height: calc(100vh - 28px);
    grid-template-rows: auto minmax(0, 1fr) auto;
}

.om-modal__dialog:focus,
.om-modal__dialog:focus-visible {
    outline: none;
}

.om-modal__body {
    min-height: 0;
    max-height: none;
    overflow-y: auto;
}

.om-modal__footer {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    padding:
        13px
        14px
        max(15px, env(safe-area-inset-bottom));
    background: #151515;
    box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.18);
}

#om-modal-confirm {
    display: inline-flex;
    min-width: 124px;
    min-height: 42px;
    flex: 0 0 auto;
    visibility: visible;
    opacity: 1;
}

.om-modal__footer .om-back {
    min-height: 42px;
}

.om-modal__dialog,
.om-modal__footer button,
.om-option {
    -webkit-tap-highlight-color: transparent;
}

.om-modal .om-option:focus-visible,
.om-modal .om-back:focus-visible,
.om-modal .om-button:focus-visible {
    border-color: #c5a36f;
    outline: 2px solid rgba(197, 163, 111, 0.78);
    outline-offset: 2px;
    box-shadow: none;
}

.om-option.is-selected .om-option__check,
.om-option[aria-selected="true"] .om-option__check {
    color: #fff0c9;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
}

.om-review__value {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 54px;
    align-items: start;
}

.om-review__text {
    text-align: right;
}

.om-review__edit {
    width: 54px;
    min-width: 54px;
    min-height: 24px;
    align-self: start;
    justify-self: end;
    margin: 0;
    padding: 2px 0;
    line-height: 1.25;
    text-align: right;
}

.om-success__socials .om-social-placeholder {
    cursor: pointer;
    text-decoration: none;
    transition:
        border-color 140ms ease,
        background-color 140ms ease,
        color 140ms ease,
        opacity 140ms ease,
        transform 140ms ease;
}

.om-success__socials .om-social-placeholder:hover {
    border-color: #c5a36f;
    background: rgba(154, 123, 80, 0.1);
    color: #c5a36f;
    opacity: 1;
    transform: translateY(-1px);
}

.om-success__socials .om-social-placeholder:focus-visible {
    border-color: #c5a36f;
    outline: 2px solid rgba(197, 163, 111, 0.78);
    outline-offset: 3px;
    opacity: 1;
}

@supports (height: 100svh) {
    .om-modal__dialog {
        max-height:
            calc(
                100svh
                - 20px
                - env(safe-area-inset-top)
                - env(safe-area-inset-bottom)
            );
    }
}

@supports (height: 100dvh) {
    .om-modal__dialog {
        max-height:
            calc(
                100dvh
                - 20px
                - env(safe-area-inset-top)
                - env(safe-area-inset-bottom)
            );
    }
}

@media (max-width: 599px) {
    .om-modal {
        padding:
            max(10px, env(safe-area-inset-top))
            12px
            max(10px, env(safe-area-inset-bottom));
    }

    .om-modal__dialog {
        width: 100%;
    }

    .om-modal__footer {
        gap: 14px;
    }
}

@media (max-width: 370px) {
    .om-review__value {
        grid-template-columns: minmax(0, 1fr) 54px;
    }

    .om-review__text {
        text-align: left;
    }
}

/* FIM PATCH-FUNIL-MINIMAL-VISUAL-FIX4 */

/* =========================================================
   PATCH-FUNIL-MINIMAL-VISUAL-FIX5
   Estado normal explícito do botão Confirmar no mobile.
   ========================================================= */

#om-modal-confirm {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    min-width: 124px;
    min-height: 42px;
    flex: 0 0 auto;
    border: 1px solid #c9ad82;
    background: #ad8b5c;
    background-color: #ad8b5c;
    background-image: none;
    box-shadow: none;
    color: #17130f;
    -webkit-text-fill-color: #17130f;
    visibility: visible;
    opacity: 1;
}

#om-modal-confirm:hover {
    border-color: #e0c59b;
    background: #bd9865;
    background-color: #bd9865;
    color: #17130f;
    -webkit-text-fill-color: #17130f;
}

#om-modal-confirm:focus-visible {
    border-color: #ecd09f;
    outline: 2px solid rgba(224, 197, 155, 0.78);
    outline-offset: 2px;
    background: #ad8b5c;
    background-color: #ad8b5c;
    color: #17130f;
    -webkit-text-fill-color: #17130f;
}

#om-modal-confirm:active {
    border-color: #c9ad82;
    background: #987447;
    background-color: #987447;
    color: #17130f;
    -webkit-text-fill-color: #17130f;
    transform: translateY(1px);
}

/* FIM PATCH-FUNIL-MINIMAL-VISUAL-FIX5 */

/* =========================================================
   PATCH-FUNIL-MINIMAL-VISUAL-FIX6
   Linha de ações e botão Voltar com largura compacta.
   ========================================================= */

.om-actions:not(.om-actions--end) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.om-actions:not(.om-actions--end) .om-back {
    width: auto;
    min-width: 78px;
    max-width: 96px;
    min-height: 44px;
    flex: 0 0 auto;
    justify-content: flex-start;
    padding-right: 10px;
    padding-left: 10px;
}

.om-actions:not(.om-actions--end) .om-button {
    flex: 0 0 auto;
    margin-left: auto;
}

@media (max-width: 370px) {
    .om-actions:not(.om-actions--end) {
        gap: 12px;
    }

    .om-actions:not(.om-actions--end) .om-back {
        min-width: 72px;
        padding-right: 8px;
        padding-left: 8px;
    }
}

/* FIM PATCH-FUNIL-MINIMAL-VISUAL-FIX6 */

/* =========================================================
   PATCH-FUNIL-MINIMAL-FIX7-CONSOLIDADO
   ========================================================= */

.orcamento-minimal .om-field__help {
    margin: 7px 0 0;
    color: #77746f;
    font-size: 0.69rem;
    line-height: 1.48;
}

.orcamento-minimal .om-body-navigation {
    display: grid;
    gap: 8px;
}

.orcamento-minimal .om-body-navigation__back {
    display: inline-flex;
    width: auto;
    min-height: 36px;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 12px;
    padding: 6px 0;
    border: 0;
    background: transparent;
    color: #a8895c;
    cursor: pointer;
    font: inherit;
    font-size: 0.7rem;
    text-align: left;
}

.orcamento-minimal .om-body-navigation__back:hover,
.orcamento-minimal .om-body-navigation__back:focus-visible {
    color: #c5a36f;
}

.orcamento-minimal .om-review-references {
    display: grid;
    gap: 12px;
}

.orcamento-minimal .om-review-references__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.orcamento-minimal .om-review-references__count,
.orcamento-minimal .om-review-references__empty {
    margin: 5px 0 0;
    color: #77746f;
    font-size: 0.68rem;
    line-height: 1.45;
}

.orcamento-minimal .om-review-references__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.orcamento-minimal .om-review-reference {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid #303030;
    border-radius: 7px;
    background: #171717;
}

.orcamento-minimal .om-review-reference__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orcamento-minimal .om-reference-editor {
    display: grid;
    gap: 14px;
}

.orcamento-minimal .om-reference-editor__count {
    margin: 0;
    color: #77746f;
    font-size: 0.69rem;
}

.orcamento-minimal .om-reference-editor__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.orcamento-minimal .om-reference-editor__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid #343434;
    border-radius: 8px;
    background: #121212;
}

.orcamento-minimal .om-reference-editor__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orcamento-minimal .om-reference-editor__remove {
    position: absolute;
    top: 5px;
    right: 5px;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.88);
    color: #f0ece6;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.orcamento-minimal .om-reference-editor__add {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 14px;
    border: 1px dashed rgba(197, 163, 111, 0.58);
    border-radius: 8px;
    color: #b59668;
    cursor: pointer;
    font-size: 0.72rem;
    text-align: center;
}

.orcamento-minimal .om-reference-editor__add:hover,
.orcamento-minimal .om-reference-editor__add:focus-visible {
    border-color: #c5a36f;
    color: #c5a36f;
}

@media (max-width: 370px) {
    .orcamento-minimal .om-review-references__grid,
    .orcamento-minimal .om-reference-editor__grid {
        gap: 5px;
    }
}

/* FIM PATCH-FUNIL-MINIMAL-FIX7-CONSOLIDADO */

/* =========================================================
   PATCH-FUNIL-MINIMAL-FIX7-1-FECHAMENTO-CAMPANHA
   ========================================================= */

.orcamento-minimal .om-body-navigation__back {
    display: none !important;
}

.orcamento-minimal .om-review-references {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.orcamento-minimal .om-review-references__header {
    width: 100%;
    min-width: 0;
    padding: 13px 12px 0;
}

.orcamento-minimal .om-review-references__header > div {
    min-width: 0;
    flex: 1 1 auto;
}

.orcamento-minimal
.om-review-references__header
.om-review__edit {
    width: 54px;
    min-width: 54px;
    max-width: 54px;
    flex: 0 0 54px;
    margin-left: auto;
    overflow: hidden;
    text-align: right;
}

.orcamento-minimal .om-review-references__grid {
    width: 100%;
    min-width: 0;
    padding: 0 12px 12px;
}

.orcamento-minimal .om-reference-editor.om-upload {
    width: 100%;
    min-width: 0;
    margin: 0;
    overflow: hidden;
}

.orcamento-minimal
.om-reference-editor
.om-preview-grid {
    width: 100%;
    min-width: 0;
    padding: 10px;
}

.orcamento-minimal
.om-reference-editor
.om-preview {
    min-width: 0;
}

.orcamento-minimal
.om-reference-editor
.om-preview--add {
    cursor: pointer;
}

@media (max-width: 599px) {
    .orcamento-minimal__shell {
        padding-top:
            max(
                32px,
                env(safe-area-inset-top)
            );
    }

    .om-modal {
        min-height: 100svh;
        height: 100dvh;
        overflow: hidden;
        padding:
            max(6px, env(safe-area-inset-top))
            10px
            max(6px, env(safe-area-inset-bottom));
    }

    .om-modal__dialog {
        max-height:
            calc(
                100dvh
                - 12px
                - env(safe-area-inset-top)
                - env(safe-area-inset-bottom)
            );
        overflow: hidden;
    }

    .om-modal__body {
        min-height: 0;
        overscroll-behavior: contain;
    }

    .om-modal__footer {
        position: relative;
        bottom: auto;
        z-index: 4;
        padding-bottom:
            max(
                12px,
                env(safe-area-inset-bottom)
            );
    }

    .orcamento-minimal
    .om-review-references__header {
        gap: 8px;
    }

    .orcamento-minimal
    .om-review-references__grid {
        gap: 6px;
    }
}

@supports not (height: 100dvh) {
    @media (max-width: 599px) {
        .om-modal {
            height: 100svh;
        }

        .om-modal__dialog {
            max-height:
                calc(
                    100svh
                    - 12px
                    - env(safe-area-inset-top)
                    - env(safe-area-inset-bottom)
                );
        }
    }
}

/* FIM PATCH-FUNIL-MINIMAL-FIX7-1-FECHAMENTO-CAMPANHA */

/* =========================================================
   PATCH-FUNIL-MINIMAL-FIX7-2-RESUMO-WEBSITE
   ========================================================= */

.orcamento-minimal .om-review-references__header,
.orcamento-minimal .om-review-references__grid {
    box-sizing: border-box;
}

.orcamento-minimal
.om-review-references__header
.om-review__edit {
    box-sizing: border-box;
    width: 54px;
    min-width: 54px;
    max-width: 54px;
    flex: 0 0 54px;
    overflow: visible;
    white-space: nowrap;
}

.orcamento-minimal.is-success .om-success__socials {
    gap: 14px;
    margin-top: 36px;
}

.orcamento-minimal.is-success
.om-success__socials
.om-social-placeholder {
    animation:
        om-success-social-reveal
        420ms
        cubic-bezier(0.22, 0.8, 0.3, 1)
        both;
}

.orcamento-minimal.is-success
.om-success__socials
.om-social-placeholder:nth-child(1) {
    animation-delay: 80ms;
}

.orcamento-minimal.is-success
.om-success__socials
.om-social-placeholder:nth-child(2) {
    animation-delay: 140ms;
}

.orcamento-minimal.is-success
.om-success__socials
.om-social-placeholder:nth-child(3) {
    animation-delay: 200ms;
}

.orcamento-minimal.is-success
.om-success__socials
.om-social-placeholder:nth-child(4) {
    animation-delay: 260ms;
}

.om-social-placeholder__website {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

@keyframes om-success-social-reveal {
    from {
        opacity: 0;
        transform:
            translateY(9px)
            scale(0.94);
    }

    to {
        opacity: 0.82;
        transform:
            translateY(0)
            scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .orcamento-minimal.is-success
    .om-success__socials
    .om-social-placeholder {
        animation: none !important;
        opacity: 0.82;
        transform: none;
    }
}

/* FIM PATCH-FUNIL-MINIMAL-FIX7-2-RESUMO-WEBSITE */
/* PATCH-FUNIL-MINIMAL-FIX7-2-PRODUCTION-READY */

/* PATCH_TEXTOS_IMPORTANTES_GOLD_V1_START
   Ajuste visual cir?rgico:
   - Apenas t?tulos, labels, valores e textos importantes.
   - N?o altera placeholders, textos de ajuda, LGPD ou textos secund?rios.
   - N?o altera regra de neg?cio, Pixel, submit ou CRM.
*/
.orcamento-minimal {
    --om-gold-title: #f0d28a;
    --om-gold-main: #d0ad70;
    --om-gold-soft: #ad8b5b;
    --om-gold-muted: #8f744b;
    --om-gold-border: rgba(197, 163, 111, 0.68);
    --om-gold-bg-soft: rgba(154, 123, 80, 0.13);

    --om-accent: #c5a36f;
    --om-accent-soft: rgba(154, 123, 80, 0.13);
}

/* Marca principal */
.orcamento-minimal .om-brand__name {
    color: var(--om-gold-title);
    text-shadow:
        0 0 18px rgba(197, 163, 111, 0.18),
        0 1px 0 rgba(0, 0, 0, 0.85);
}

.orcamento-minimal .om-brand__subtitle {
    color: var(--om-gold-muted);
}

/* T?tulos de etapa e hierarquia principal */
.orcamento-minimal .om-step-heading,
.orcamento-minimal .om-step-title,
.orcamento-minimal .om-step-marker,
.orcamento-minimal .om-review__title,
.orcamento-minimal .om-modal__title,
.orcamento-minimal .om-success__title {
    color: var(--om-gold-title);
}

/* Labels dos campos */
.orcamento-minimal .om-label,
.orcamento-minimal .om-label__required,
.orcamento-minimal .om-label--static {
    color: var(--om-gold-soft);
}

/* Valores escolhidos nos campos ? n?o afeta placeholder */
.orcamento-minimal .om-select-trigger__value:not(.om-select-trigger__placeholder) {
    color: var(--om-gold-title);
}

/* Upload: t?tulo importante */
.orcamento-minimal .om-upload__title {
    color: var(--om-gold-title);
}

/* Modal: op??es s?o texto importante de decis?o */
.orcamento-minimal .om-option__label {
    color: #c8b58e;
}

.orcamento-minimal .om-option.is-selected,
.orcamento-minimal .om-option[aria-selected="true"] {
    border-color: var(--om-gold-border);
    background: var(--om-gold-bg-soft);
}

.orcamento-minimal .om-option.is-selected .om-option__label,
.orcamento-minimal .om-option[aria-selected="true"] .om-option__label {
    color: var(--om-gold-title);
}

.orcamento-minimal .om-option.is-selected .om-option__check,
.orcamento-minimal .om-option[aria-selected="true"] .om-option__check {
    border-color: var(--om-gold-title);
    background: var(--om-gold-title);
    color: #17130f;
}

/* Revis?o: valor principal deve ganhar presen?a */
.orcamento-minimal .om-review__text {
    color: #d8c8a2;
}

.orcamento-minimal .om-review__label {
    color: var(--om-gold-soft);
}

/* Bot?es principais */
.orcamento-minimal .om-button:not(:disabled):not([aria-disabled="true"]),
.orcamento-minimal #om-modal-confirm:not(:disabled):not([aria-disabled="true"]) {
    border-color: #d9bd88;
    background: #b9935f;
    background-color: #b9935f;
    color: #17130f;
    -webkit-text-fill-color: #17130f;
}

.orcamento-minimal .om-button:hover:not(:disabled),
.orcamento-minimal #om-modal-confirm:hover:not(:disabled) {
    border-color: #f0d28a;
    background: #c9a36c;
    background-color: #c9a36c;
}

/* Sucesso */
.orcamento-minimal .om-success__mark {
    border-color: var(--om-gold-border);
    background: rgba(154, 123, 80, 0.10);
    color: var(--om-gold-title);
}

.orcamento-minimal .om-social-placeholder {
    border-color: var(--om-gold-border);
    color: var(--om-gold-title);
}

/* Foco visual premium */
.orcamento-minimal .om-select-trigger:focus-visible,
.orcamento-minimal .om-input:focus-visible,
.orcamento-minimal .om-textarea:focus-visible,
.orcamento-minimal .om-modal .om-option:focus-visible,
.orcamento-minimal .om-modal .om-back:focus-visible,
.orcamento-minimal .om-modal .om-button:focus-visible {
    border-color: var(--om-gold-title);
    box-shadow: 0 0 0 1px rgba(240, 210, 138, 0.26);
}
/* PATCH_TEXTOS_IMPORTANTES_GOLD_V1_END */

/* PATCH_LGPD_GOLD_FINAL_V1_START
   LGPD visual gold:
   - Mant?m consentimento manual.
   - Apenas troca verde por dourado/champagne.
*/
.orcamento-minimal .om-consent__input {
    accent-color: var(--om-gold-title);
}

.orcamento-minimal .om-consent:has(.om-consent__input:checked) {
    border-color: var(--om-gold-border);
    background: rgba(154, 123, 80, 0.10);
    box-shadow: 0 0 0 1px rgba(240, 210, 138, 0.08);
}

.orcamento-minimal .om-consent:has(.om-consent__input:checked) .om-consent__text {
    color: #bfae8c;
}

.orcamento-minimal .om-consent__link {
    color: var(--om-gold-title);
    text-decoration-color: rgba(240, 210, 138, 0.42);
}
/* PATCH_LGPD_GOLD_FINAL_V1_END */

/* PATCH_BUTTONS_SQUARE_FINAL_V1_START
   Bot?es retos para alinhar com o visual premium do formul?rio.
   N?o altera campos, cards, previews ou modais.
*/
.orcamento-minimal .om-button,
.orcamento-minimal #om-modal-confirm,
.orcamento-minimal .om-modal__footer button {
    border-radius: 0 !important;
}
/* PATCH_BUTTONS_SQUARE_FINAL_V1_END */

/* PATCH_SIZE_CUSTOM_MODAL_RADIUS_FINAL_V1_START
   Visual final simples:
   input real vis?vel + unidade cm fora do input.
   Sem overlay, sem n?mero duplicado, sem helper text.
*/
.orcamento-minimal .om-modal__description:empty {
    display: none !important;
}

.orcamento-minimal .om-custom-size {
    margin: 18px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.orcamento-minimal .om-custom-size[hidden] {
    display: none !important;
}

.orcamento-minimal .om-custom-size__label,
.orcamento-minimal .om-custom-size__hint,
.orcamento-minimal .om-custom-size__suffix,
.orcamento-minimal .om-custom-size__display,
.orcamento-minimal .om-custom-size__control {
    display: none !important;
}

.orcamento-minimal .om-custom-size__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.orcamento-minimal .om-custom-size__input {
    display: block;
    width: 160px !important;
    max-width: 60%;
    height: 50px;
    padding: 0 14px !important;
    border: 1px solid rgba(197, 163, 111, 0.62) !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: rgba(0, 0, 0, 0.28) !important;
    color: #d8d2c6 !important;
    font: inherit;
    font-size: 1.04rem;
    line-height: 1;
    box-shadow:
        inset 1px 1px 1px rgba(197, 163, 111, 0.20),
        0 0 0 1px rgba(197, 163, 111, 0.03) !important;
    caret-color: #d1ae76;
}

.orcamento-minimal .om-custom-size__input:focus,
.orcamento-minimal .om-custom-size__input:focus-visible {
    border-color: rgba(209, 174, 118, 0.86) !important;
    outline: 0 !important;
    box-shadow:
        inset 1px 1px 1px rgba(209, 174, 118, 0.30),
        0 0 0 2px rgba(209, 174, 118, 0.14) !important;
}

.orcamento-minimal .om-custom-size__input::placeholder {
    color: rgba(216, 210, 198, 0.22) !important;
    font-size: 0.96rem !important;
}

.orcamento-minimal .om-custom-size__unit {
    color: rgba(216, 210, 198, 0.68);
    font-size: 0.95rem;
    line-height: 1;
    text-transform: lowercase;
    user-select: none;
}

.orcamento-minimal .om-textarea::placeholder,
.orcamento-minimal textarea::placeholder {
    color: rgba(216, 210, 198, 0.32) !important;
    font-size: 0.92rem !important;
    line-height: 1.5;
}

.orcamento-minimal .om-modal .om-option,
.orcamento-minimal .om-modal .om-back,
.orcamento-minimal .om-modal .om-button,
.orcamento-minimal .om-modal__footer button,
.orcamento-minimal #om-modal-confirm,
.orcamento-minimal .om-preview--add,
.orcamento-minimal .om-upload__label {
    border-radius: 0 !important;
}

.orcamento-minimal #om-modal-confirm,
.orcamento-minimal .om-modal__footer .om-button--primary,
.orcamento-minimal .om-modal__footer button:last-child {
    box-shadow:
        inset 1px 1px 1px rgba(255, 226, 166, 0.30),
        0 0 10px rgba(197, 163, 111, 0.06) !important;
}
/* PATCH_SIZE_CUSTOM_MODAL_RADIUS_FINAL_V1_END */

/* PATCH_SIZE_INPUT_POLISH_FINAL_V1_START
   Polimento final do input manual de tamanho:
   fundo mais escuro, padding melhor, gap com cm e highlight dourado.
   N?o altera JS, tracking, submit ou CRM.
*/
.orcamento-minimal .om-custom-size__row {
    display: flex;
    align-items: center;
    gap: 14px !important;
}

.orcamento-minimal .om-custom-size__input {
    width: 168px !important;
    max-width: 62%;
    height: 52px !important;
    padding: 0 16px !important;
    border: 1px solid rgba(197, 163, 111, 0.66) !important;
    border-radius: 2px !important;
    background:
        linear-gradient(
            180deg,
            rgba(18, 18, 18, 0.98) 0%,
            rgba(8, 8, 8, 0.98) 100%
        ) !important;
    color: #d8d2c6 !important;
    font-size: 1.04rem !important;
    line-height: 1 !important;
    box-shadow:
        inset 1px 1px 1px rgba(255, 226, 166, 0.16),
        inset 0 -1px 0 rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(197, 163, 111, 0.035) !important;
    caret-color: #d1ae76;
}

.orcamento-minimal .om-custom-size__input:hover {
    border-color: rgba(209, 174, 118, 0.76) !important;
    background:
        linear-gradient(
            180deg,
            rgba(20, 20, 20, 0.98) 0%,
            rgba(9, 9, 9, 0.98) 100%
        ) !important;
}

.orcamento-minimal .om-custom-size__input:focus,
.orcamento-minimal .om-custom-size__input:focus-visible {
    border-color: rgba(209, 174, 118, 0.92) !important;
    outline: 0 !important;
    box-shadow:
        inset 1px 1px 1px rgba(255, 226, 166, 0.24),
        inset 0 -1px 0 rgba(0, 0, 0, 0.52),
        0 0 0 2px rgba(209, 174, 118, 0.14) !important;
}

.orcamento-minimal .om-custom-size__input::placeholder {
    color: rgba(216, 210, 198, 0.24) !important;
    font-size: 0.94rem !important;
}

.orcamento-minimal .om-custom-size__unit {
    color: rgba(216, 210, 198, 0.62) !important;
    font-size: 0.92rem !important;
    letter-spacing: 0.02em;
    line-height: 1;
    transform: translateY(1px);
}
/* PATCH_SIZE_INPUT_POLISH_FINAL_V1_END */

/* PATCH_HEADER_CTA_QUESTION_V2_START
   Pergunta curta no topo do formul?rio.
   Sem avatar, sem bras?o, sem imagem.
*/
.orcamento-minimal .om-brand-question {
    max-width: 520px;
    margin: 18px auto 0;
    padding: 0;
    text-align: center;
}

.orcamento-minimal .om-brand-question__title,
.orcamento-minimal .om-brand-question__subtitle {
    margin: 0;
}

.orcamento-minimal .om-brand-question__title {
    color: #e6d0a6;
    font-family: var(--om-font-display, Cinzel, Georgia, "Times New Roman", serif);
    font-size: clamp(1.28rem, 4.8vw, 1.82rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0.015em;
    text-transform: none;
    text-wrap: balance;
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.55),
        0 0 16px rgba(197, 163, 111, 0.08);
}

.orcamento-minimal .om-brand-question__subtitle {
    max-width: 420px;
    margin: 8px auto 0;
    color: rgba(216, 210, 198, 0.58);
    font-family: var(--om-font-body, Inter, system-ui, sans-serif);
    font-size: clamp(0.86rem, 2.7vw, 0.98rem);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

@media (max-width: 480px) {
    .orcamento-minimal .om-brand-question {
        margin-top: 16px;
    }

    .orcamento-minimal .om-brand-question__title {
        font-size: clamp(1.18rem, 5.6vw, 1.52rem);
        line-height: 1.2;
    }

    .orcamento-minimal .om-brand-question__subtitle {
        margin-top: 7px;
        font-size: 0.88rem;
    }
}
/* PATCH_HEADER_CTA_QUESTION_V2_END */

/* PATCH_HEADER_SAFE_WRAP_LABEL_V1_START
   Corrige overflow do CTA do header.
   A frase pode quebrar de forma controlada quando a tela n?o comportar uma linha.
*/
.orcamento-minimal .om-brand-question {
    max-width: 100%;
    overflow: visible;
}

.orcamento-minimal .om-brand-question__title {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: balance;
}

.orcamento-minimal .om-brand-question__subtitle {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: balance;
}

@media (max-width: 640px) {
    .orcamento-minimal .om-brand-question {
        margin-top: 14px;
    }

    .orcamento-minimal .om-brand-question__title {
        font-size: clamp(1.12rem, 5.15vw, 1.48rem) !important;
        line-height: 1.16 !important;
        letter-spacing: 0.005em !important;
    }

    .orcamento-minimal .om-brand-question__subtitle {
        margin-top: 7px;
        font-size: clamp(0.84rem, 3vw, 0.94rem) !important;
        line-height: 1.32 !important;
    }
}

@media (min-width: 560px) {
    .orcamento-minimal .om-brand-question__title,
    .orcamento-minimal .om-brand-question__subtitle {
        white-space: nowrap !important;
    }
}
/* PATCH_HEADER_SAFE_WRAP_LABEL_V1_END */

/* PATCH_FINAL_COPY_DESKTOP_BODYORDER_RETRY_V1_START
   Ajuste final:
   - background externo escuro
   - formul?rio centralizado no desktop
   - header mais compacto
   - copy curta para caber melhor
*/
html,
body.orcamento-minimal-page {
    background: #111111 !important;
}

body.orcamento-minimal-page {
    overflow-x: hidden !important;
}

.orcamento-minimal {
    width: 100% !important;
    min-height: 100vh;
    background: #111111 !important;
    overflow-x: hidden !important;
}

.orcamento-minimal__shell {
    width: min(100%, 560px) !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

.orcamento-minimal__content {
    max-width: 100% !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
}

.orcamento-minimal .om-brand {
    margin-top: -10px !important;
}

.orcamento-minimal .om-brand-question {
    max-width: 100% !important;
    margin-top: 12px !important;
    overflow: visible !important;
}

.orcamento-minimal .om-brand-question__title {
    max-width: 100% !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    font-size: clamp(1.08rem, 4.3vw, 1.42rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0.005em !important;
}

.orcamento-minimal .om-brand-question__subtitle {
    max-width: 100% !important;
    margin-top: 7px !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    font-size: clamp(0.72rem, 2.55vw, 0.9rem) !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
}

@media (min-width: 700px) {
    body.orcamento-minimal-page {
        padding: 18px 0 56px !important;
    }

    .orcamento-minimal__shell {
        width: 560px !important;
    }
}

@media (max-width: 420px) {
    .orcamento-minimal .om-brand {
        margin-top: -8px !important;
    }

    .orcamento-minimal .om-brand-question__title {
        font-size: clamp(0.98rem, 4.8vw, 1.2rem) !important;
    }

    .orcamento-minimal .om-brand-question__subtitle {
        font-size: clamp(0.66rem, 2.6vw, 0.78rem) !important;
    }
}
/* PATCH_FINAL_COPY_DESKTOP_BODYORDER_RETRY_V1_END */
