:root {
    --bg: #070b14;
    --bg-soft: #0b1120;
    --sidebar: #080d19;
    --surface: #101827;
    --surface-2: #151f31;
    --surface-3: #1a263a;
    --line: #243148;
    --line-soft: rgba(148, 163, 184, .12);
    --text: #f7f9fc;
    --muted: #8f9bb0;
    --muted-2: #64748b;
    --navy: #20255f;
    --blue: #31b7f3;
    --blue-soft: rgba(49, 183, 243, .13);
    --orange: #ff8a1c;
    --orange-soft: rgba(255, 138, 28, .14);
    --green: #36d399;
    --green-soft: rgba(54, 211, 153, .13);
    --yellow: #f7c948;
    --yellow-soft: rgba(247, 201, 72, .13);
    --red: #fb7185;
    --red-soft: rgba(251, 113, 133, .13);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 24px 70px rgba(0, 0, 0, .24);
    --sidebar-width: 270px;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; margin: 0; color: var(--text); background: var(--bg); font-family: Inter, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.app-shell { min-height: 100vh; }
.sidebar { position: fixed; inset: 0 auto 0 0; z-index: 50; display: flex; flex-direction: column; width: var(--sidebar-width); background: linear-gradient(180deg, #0a1020 0%, #080d18 100%); border-right: 1px solid var(--line); }
.sidebar__brand { display: flex; align-items: center; justify-content: space-between; min-height: 86px; padding: 18px 20px; border-bottom: 1px solid var(--line-soft); }
.brand-mark { display: flex; align-items: center; gap: 13px; min-width: 0; }
.brand-mark img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.3), 0 0 0 1px rgba(49,183,243,.18); }
.brand-mark span { display: flex; flex-direction: column; gap: 3px; }
.brand-mark strong { font-size: 13px; letter-spacing: .08em; }
.brand-mark small { color: var(--muted); font-size: 10px; letter-spacing: .04em; }
.sidebar__nav { flex: 1; overflow-y: auto; padding: 18px 13px; scrollbar-width: thin; }
.nav-section { display: block; margin: 20px 12px 8px; color: #526078; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.nav-section:first-child { margin-top: 3px; }
.nav-link { position: relative; display: flex; align-items: center; gap: 12px; min-height: 46px; margin: 3px 0; padding: 8px 12px; color: #98a5ba; border: 1px solid transparent; border-radius: 11px; font-size: 13px; font-weight: 600; transition: .18s ease; }
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.035); }
.nav-link.is-active { color: var(--text); background: linear-gradient(90deg, rgba(49,183,243,.13), rgba(49,183,243,.04)); border-color: rgba(49,183,243,.18); }
.nav-link.is-active::before { content: ""; position: absolute; left: -14px; width: 3px; height: 24px; background: var(--blue); border-radius: 0 5px 5px 0; box-shadow: 0 0 18px rgba(49,183,243,.65); }
.nav-icon { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; color: #a9b7ca; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; font-size: 9px; font-weight: 900; letter-spacing: -.02em; }
.nav-link.is-active .nav-icon { color: var(--blue); background: var(--blue-soft); border-color: rgba(49,183,243,.2); }
.sidebar__footer { padding: 15px; border-top: 1px solid var(--line-soft); }
.user-card { display: flex; align-items: center; gap: 11px; padding: 10px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05); border-radius: 12px; }
.user-avatar { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; color: #07111a; background: linear-gradient(135deg, var(--blue), #7dd3fc); border-radius: 10px; font-size: 12px; font-weight: 900; }
.user-meta { display: flex; flex-direction: column; min-width: 0; }
.user-meta strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.user-meta small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.user-actions { display: flex; justify-content: space-between; gap: 10px; padding: 10px 5px 0; }
.user-actions form { margin: 0; }
.text-link { color: var(--blue); font-size: 12px; font-weight: 700; }
.text-link:hover { color: #86d9ff; }
.text-link--button { padding: 0; background: none; border: 0; cursor: pointer; }

.workspace { min-height: 100vh; margin-left: var(--sidebar-width); background: linear-gradient(rgba(7,11,20,.91), rgba(7,11,20,.96)), url("../img/brand/brand-background.png") center / cover fixed no-repeat; }
.topbar { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 12px clamp(22px, 3vw, 42px); background: rgba(7, 11, 20, .82); border-bottom: 1px solid var(--line-soft); backdrop-filter: blur(18px); }
.topbar__context { display: flex; flex-direction: column; gap: 3px; }
.topbar__context span { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.topbar__context strong { font-size: 14px; }
.topbar__right { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 11px; }
.topbar-site-link { flex: 0 0 auto; }
.live-indicator { display: inline-flex; align-items: center; gap: 7px; }
.live-indicator i { width: 7px; height: 7px; background: var(--green); border-radius: 99px; box-shadow: 0 0 0 5px var(--green-soft); }
.live-indicator.is-offline { color: var(--red); }
.live-indicator.is-offline i { background: var(--red); box-shadow: 0 0 0 5px var(--red-soft); }
.icon-button { display: grid; place-items: center; width: 38px; height: 38px; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.menu-button, .sidebar__close { display: none; }
.content { width: min(1540px, 100%); margin: 0 auto; padding: 36px clamp(20px, 3vw, 44px) 70px; }

.eyebrow { display: block; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.page-hero, .page-header, .detail-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.page-hero { min-height: 190px; padding: 34px 38px; overflow: hidden; background: radial-gradient(circle at 86% 10%, rgba(49,183,243,.14), transparent 30%), linear-gradient(135deg, #111a2d, #0c1423); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.page-hero h1, .page-header h1, .detail-hero h1 { margin: 8px 0 7px; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.04em; }
.page-hero p, .page-header p, .detail-hero p { max-width: 670px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.page-header { align-items: center; margin-bottom: 26px; }
.page-header h1 { font-size: clamp(28px, 3vw, 40px); }
.page-header--form { align-items: flex-start; }
.page-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.back-link { display: inline-flex; margin-bottom: 12px; color: var(--muted); font-size: 12px; font-weight: 700; }
.back-link:hover { color: var(--blue); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 43px; padding: 10px 16px; border: 1px solid transparent; border-radius: 10px; font-size: 12px; font-weight: 800; cursor: pointer; transition: transform .16s ease, border-color .16s ease, background .16s ease; }
.button:hover { transform: translateY(-1px); }
.button--primary { color: #07111a; background: linear-gradient(135deg, var(--orange), #ffb057); box-shadow: 0 10px 28px rgba(255,138,28,.16); }
.button--primary:hover { background: linear-gradient(135deg, #ff9a3d, #ffc077); }
.button--secondary { color: var(--text); background: var(--surface-2); border-color: var(--line); }
.button--secondary:hover { border-color: #40506b; background: var(--surface-3); }
.button--ghost { color: var(--muted); background: transparent; border-color: var(--line); }
.button--small { min-height: 35px; padding: 7px 12px; font-size: 11px; }
.button--wide { width: 100%; }

.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 18px; }
.metric-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metric-card { position: relative; min-height: 125px; padding: 21px; overflow: hidden; background: linear-gradient(145deg, var(--surface), #0e1726); border: 1px solid var(--line); border-radius: var(--radius); }
.metric-card span { display: block; color: var(--muted); font-size: 11px; font-weight: 700; }
.metric-card strong { display: block; margin-top: 16px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.04em; }
.metric-card i { position: absolute; right: -20px; bottom: -30px; width: 95px; height: 95px; border: 22px solid currentColor; border-radius: 99px; opacity: .06; }
.metric-card--blue { color: var(--blue); }
.metric-card--blue strong, .metric-card--orange strong, .metric-card--yellow strong, .metric-card--green strong { color: var(--text); }
.metric-card--orange { color: var(--orange); }
.metric-card--yellow { color: var(--yellow); }
.metric-card--green { color: var(--green); }

.dashboard-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(290px, .75fr); gap: 18px; margin-top: 18px; }
.dashboard-layout > *, .panel { min-width: 0; }
.dashboard-layout--bottom { align-items: start; }
.panel { padding: 22px; background: linear-gradient(155deg, rgba(16,24,39,.96), rgba(12,19,32,.96)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(0,0,0,.11); }
.panel__header { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 19px; }
.panel h2, .panel__header h2 { margin: 5px 0 0; font-size: 18px; letter-spacing: -.02em; }
.status-distribution { display: grid; gap: 16px; }
.status-row > div:first-child { display: flex; justify-content: space-between; margin-bottom: 7px; color: #c7d0df; font-size: 12px; }
.progress { height: 7px; overflow: hidden; background: #202b3d; border-radius: 99px; }
.progress i { display: block; min-width: 7px; height: 100%; background: var(--blue); border-radius: inherit; }
.progress .progress--warning { background: var(--yellow); }
.progress .progress--success { background: var(--green); }
.progress .progress--danger { background: var(--red); }
.compact-list, .card-list { display: grid; gap: 9px; }
.compact-item, .stock-item, .entity-card { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.055); border-radius: 11px; transition: .16s ease; }
.compact-item:hover, .stock-item:hover, .entity-card:hover { background: rgba(255,255,255,.05); border-color: rgba(49,183,243,.25); transform: translateX(2px); }
.compact-item__date { display: grid; place-items: center; width: 40px; height: 42px; flex: 0 0 40px; color: var(--orange); background: var(--orange-soft); border-radius: 9px; font-size: 15px; font-weight: 900; line-height: 1; }
.compact-item__date small { color: #d69a63; font-size: 8px; text-transform: uppercase; }
.compact-item > span:last-child, .stock-item > span, .entity-card > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; gap: 4px; min-width: 0; }
.compact-item strong, .stock-item strong, .entity-card strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.compact-item small, .stock-item small, .entity-card small { color: var(--muted); font-size: 10px; line-height: 1.4; }
.stock-item { justify-content: space-between; }
.stock-item b { display: grid; place-items: center; min-width: 31px; height: 31px; color: var(--orange); background: var(--orange-soft); border-radius: 8px; font-size: 11px; }
.entity-card__icon { display: grid !important; place-items: center; width: 40px; height: 40px; flex: 0 0 40px !important; color: var(--blue); background: var(--blue-soft); border-radius: 10px; font-size: 10px; font-weight: 900; }

.list-panel { padding: 0; overflow: hidden; }
.filter-bar { display: flex; align-items: flex-end; gap: 12px; padding: 17px 18px; border-bottom: 1px solid var(--line-soft); }
.search-box { position: relative; display: flex; align-items: center; flex: 1; min-width: 220px; }
.search-box > span { position: absolute; left: 13px; color: var(--muted); font-size: 18px; }
.search-box input { width: 100%; height: 42px; padding: 0 14px 0 40px; color: var(--text); background: #0c1422; border: 1px solid var(--line); border-radius: 10px; outline: none; }
.search-box input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.select-filter { display: flex; flex-direction: column; gap: 5px; }
.select-filter > span { color: var(--muted-2); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.select-filter select { min-width: 160px; height: 42px; padding: 0 34px 0 12px; color: var(--text); background: #0c1422; border: 1px solid var(--line); border-radius: 10px; outline: none; }
.table-wrap { width: 100%; overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.data-table th { padding: 12px 15px; color: var(--muted-2); background: rgba(255,255,255,.015); border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.data-table td { padding: 14px 15px; color: #cdd5e2; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr[data-href] { cursor: pointer; transition: background .14s ease; }
.data-table tbody tr[data-href]:hover { background: rgba(49,183,243,.035); }
.data-table td strong, .cell-main { color: var(--text); font-size: 12px; font-weight: 750; }
.data-table td small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.data-table tfoot td { color: var(--text); background: rgba(255,255,255,.025); font-size: 14px; font-weight: 800; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; color: #bdc8d8; background: rgba(148,163,184,.11); border: 1px solid rgba(148,163,184,.15); border-radius: 99px; font-size: 9px; font-weight: 800; white-space: nowrap; }
.badge::before { content: ""; width: 5px; height: 5px; background: currentColor; border-radius: 99px; }
.badge--success, .badge--aprovada, .badge--pronta, .badge--entregue, .badge--concluido, .badge--confirmado, .badge--aprovado, .badge--aprovado_parcial { color: var(--green); background: var(--green-soft); border-color: rgba(54,211,153,.18); }
.badge--warning, .badge--aguardando_aprovacao, .badge--aguardando_peca, .badge--pendente, .badge--rascunho, .badge--enviado { color: var(--yellow); background: var(--yellow-soft); border-color: rgba(247,201,72,.18); }
.badge--info, .badge--em_diagnostico, .badge--em_servico, .badge--em_testes, .badge--em_andamento, .badge--recebida { color: var(--blue); background: var(--blue-soft); border-color: rgba(49,183,243,.18); }
.badge--danger, .badge--cancelada, .badge--nao_aprovada, .badge--estornado, .badge--recusado, .badge--cancelado { color: var(--red); background: var(--red-soft); border-color: rgba(251,113,133,.18); }
.pagination { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; color: var(--muted); border-top: 1px solid var(--line-soft); font-size: 11px; }
.pagination div { display: flex; gap: 8px; }
.pagination a { padding: 7px 10px; color: var(--text); background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; }
.empty-state { display: grid; justify-items: center; padding: 45px 20px; color: var(--muted); text-align: center; }
.empty-state > span { margin-bottom: 10px; color: #4b5a72; font-size: 28px; }
.empty-state strong { color: var(--text); }
.empty-state p { margin: 6px 0 0; font-size: 11px; }
.empty-state.compact { padding: 21px 12px; }

.form-panel { max-width: 1060px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.form-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.form-field--wide { grid-column: 1 / -1; }
.form-field > label { color: #b7c1d1; font-size: 10px; font-weight: 800; letter-spacing: .03em; }
.form-field > label b { color: var(--orange); }
.form-control { width: 100%; min-height: 43px; padding: 10px 12px; color: var(--text); background: #0b1321; border: 1px solid var(--line); border-radius: 9px; outline: none; transition: .15s ease; }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
textarea.form-control { min-height: 92px; resize: vertical; line-height: 1.5; }
select.form-control { padding-right: 35px; }
.form-field--checkbox { flex-direction: row; align-items: center; gap: 10px; min-height: 43px; padding: 10px 12px; background: rgba(255,255,255,.025); border: 1px solid var(--line-soft); border-radius: 9px; }
.form-field--checkbox label { order: 2; }
.form-check-input { width: 17px; height: 17px; accent-color: var(--orange); }
.form-field ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0; padding: 0; list-style: none; }
.form-field li label { display: flex; align-items: center; gap: 8px; color: #c7d0df; font-size: 11px; }
.field-help { color: var(--muted-2); font-size: 9px; line-height: 1.4; }
.field-error { color: #ff91a1; font-size: 10px; }
.form-alert { margin-bottom: 16px; padding: 12px 14px; color: #ffc2cb; background: var(--red-soft); border: 1px solid rgba(251,113,133,.2); border-radius: 10px; font-size: 11px; }
.form-alert p { margin: 0; }
.form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.formset-section { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.section-title { margin-bottom: 15px; }
.section-title h2 { margin: 6px 0 0; }
.formset-list { display: grid; gap: 12px; }
.formset-card { padding: 15px; background: rgba(255,255,255,.02); border: 1px solid var(--line-soft); border-radius: 12px; }
.formset-card__title { display: flex; justify-content: space-between; margin-bottom: 13px; font-size: 11px; }
.delete-check { display: flex; align-items: center; gap: 6px; color: var(--red); }
.form-grid--item { grid-template-columns: 90px 120px repeat(2, minmax(120px, 1fr)); }

.detail-hero { align-items: center; padding: 10px 0 3px; }
.detail-identity { display: flex; align-items: center; gap: 18px; }
.identity-avatar { display: grid; place-items: center; width: 68px; height: 68px; flex: 0 0 68px; color: #07111a; background: linear-gradient(135deg, var(--blue), #90e2ff); border-radius: 20px; font-size: 20px; font-weight: 900; box-shadow: 0 16px 40px rgba(49,183,243,.13); }
.detail-hero h1 { margin: 2px 0 6px; font-size: clamp(28px, 4vw, 42px); }
.order-title { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.order-title > span:first-child { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.order-title h1 { margin: 2px 0; }
.summary-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.summary-strip > div { min-width: 0; padding: 17px 19px; border-right: 1px solid var(--line-soft); }
.summary-strip > div:last-child { border-right: 0; }
.summary-strip span { display: block; margin-bottom: 7px; color: var(--muted-2); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.summary-strip strong { display: block; overflow: hidden; color: #dce3ed; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.accent-money { color: var(--green) !important; }
.status-text--success { color: var(--green) !important; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 18px; align-items: start; }
.detail-main { display: grid; gap: 18px; min-width: 0; }
.detail-aside { display: grid; gap: 18px; position: sticky; top: 90px; }
.aside-title { margin: 6px 0 16px !important; }
.tracking-code { display: block; padding: 14px; color: var(--blue); background: rgba(49,183,243,.08); border: 1px solid rgba(49,183,243,.28); border-radius: 10px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 20px; letter-spacing: .12em; text-align: center; user-select: all; }
.tracking-code__help { margin: 12px 0 0; color: var(--muted-2); font-size: 11px; line-height: 1.6; }
.narrative-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.narrative-grid article { min-height: 125px; padding: 15px; background: rgba(255,255,255,.025); border: 1px solid var(--line-soft); border-radius: 11px; }
.narrative-grid span { color: var(--muted-2); font-size: 9px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.narrative-grid p { margin: 10px 0 0; color: #c5cfdd; font-size: 11px; line-height: 1.65; }
.info-list { margin: 13px 0 0; }
.info-list > div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.info-list > div:last-child { border-bottom: 0; }
.info-list dt { color: var(--muted); font-size: 10px; }
.info-list dd { margin: 0; color: #d5dce7; font-size: 10px; font-weight: 700; text-align: right; }
.budget-card { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px; color: inherit; background: rgba(255,255,255,.025); border: 1px solid var(--line-soft); border-radius: 11px; text-decoration: none; }
.budget-card:hover { background: rgba(49,183,243,.055); border-color: rgba(49,183,243,.24); }
.budget-card > div { display: flex; flex-direction: column; gap: 5px; }
.budget-card > div .badge { align-self: flex-start; }
.budget-card strong { font-size: 12px; }
.budget-card small { color: var(--muted); font-size: 10px; }
.budget-card > b { color: var(--green); font-size: 15px; white-space: nowrap; }
.timeline { position: relative; display: grid; gap: 0; }
.timeline article { display: grid; grid-template-columns: 17px 1fr; gap: 12px; padding-bottom: 18px; }
.timeline article > i { position: relative; width: 9px; height: 9px; margin-top: 5px; background: var(--blue); border: 2px solid #0e1726; border-radius: 50%; box-shadow: 0 0 0 3px var(--blue-soft); }
.timeline article > i::after { content: ""; position: absolute; top: 10px; left: 2px; width: 1px; height: calc(100% + 17px); background: var(--line); }
.timeline article:last-child > i::after { display: none; }
.timeline article > div { display: flex; flex-direction: column; gap: 4px; }
.timeline span, .timeline small { color: var(--muted-2); font-size: 9px; }
.timeline strong { font-size: 11px; }
.timeline p { margin: 0; color: var(--muted); font-size: 10px; }
.stack-form { display: grid; gap: 13px; }
.document-list { display: grid; gap: 2px; margin-top: 12px; }
.document-list a { display: flex; align-items: center; justify-content: space-between; padding: 9px 2px; color: #bfc9d8; border-bottom: 1px solid var(--line-soft); font-size: 10px; font-weight: 700; }
.document-list a:hover { color: var(--blue); }
.document-list b { font-size: 11px; }

.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 18px; }
.admin-card { display: grid; grid-template-columns: auto 1fr; gap: 17px; align-items: start; }
.admin-card > .button { grid-column: 1 / -1; justify-self: start; }
.admin-card__icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--blue); background: var(--blue-soft); border: 1px solid rgba(49,183,243,.18); border-radius: 13px; font-size: 11px; font-weight: 900; }
.admin-card__icon--orange { color: var(--orange); background: var(--orange-soft); border-color: rgba(255,138,28,.18); }
.admin-card h2 { margin-top: 6px; }
.admin-card p { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

.messages { display: grid; gap: 8px; margin-bottom: 17px; }
.message { padding: 12px 14px; color: #bcead9; background: var(--green-soft); border: 1px solid rgba(54,211,153,.18); border-radius: 10px; font-size: 11px; }
.message--error { color: #ffc1cb; background: var(--red-soft); border-color: rgba(251,113,133,.18); }

.login-page { position: relative; display: grid; place-items: center; min-height: 100vh; padding: 30px; overflow: hidden; background: linear-gradient(90deg, rgba(7,11,20,.94), rgba(7,11,20,.74)), url("../img/brand/brand-background.png") center / cover no-repeat fixed; }
.login-ambient { position: fixed; width: 360px; height: 360px; opacity: .22; filter: blur(70px); border-radius: 50%; pointer-events: none; }
.login-ambient--one { top: -150px; right: 10%; background: var(--orange); }
.login-ambient--two { bottom: -190px; left: 12%; background: var(--blue); }
.login-shell { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .62fr); width: min(1050px, 100%); min-height: 610px; overflow: hidden; background: rgba(10,16,30,.82); border: 1px solid rgba(148,163,184,.16); border-radius: 26px; box-shadow: 0 40px 110px rgba(0,0,0,.48); backdrop-filter: blur(20px); }
.login-story { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 7vw, 80px); background: linear-gradient(150deg, rgba(32,37,95,.35), transparent 70%); border-right: 1px solid var(--line-soft); }
.login-logo { width: 132px; height: 132px; margin-bottom: 38px; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 18px 28px rgba(0,0,0,.35)); }
.login-story h1 { margin: 14px 0 20px; font-size: clamp(38px, 5vw, 62px); line-height: .98; letter-spacing: -.055em; }
.login-story h1 em { color: var(--orange); font-style: normal; }
.login-story > p { max-width: 520px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.login-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; }
.login-features span { padding: 7px 10px; color: #afbacb; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07); border-radius: 99px; font-size: 9px; font-weight: 700; }
.login-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 58px); background: rgba(7,11,20,.48); }
.login-card__header { display: flex; align-items: center; gap: 13px; margin-bottom: 30px; }
.mini-mark { display: grid; place-items: center; width: 43px; height: 43px; color: #07111a; background: var(--orange); border-radius: 12px; font-size: 11px; font-weight: 900; }
.mini-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.28), 0 0 0 1px rgba(49,183,243,.18); }
.login-card__header > div { display: flex; flex-direction: column; gap: 4px; }
.login-card__header strong { font-size: 18px; }
.login-card__header small { color: var(--muted); font-size: 10px; }
.login-form { display: grid; gap: 17px; }
.login-help { margin: 23px 0 0; color: var(--muted-2); font-size: 9px; line-height: 1.5; text-align: center; }
.login-back { display: inline-flex; margin: -5px 0 18px; color: var(--blue); font-size: 11px; font-weight: 700; }
.login-back:hover { color: #86d9ff; }

/* Portal público */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.public-page { overflow-x: hidden; background: linear-gradient(rgba(7,11,20,.94), rgba(7,11,20,.97)), url("../img/brand/brand-background.png") center / cover fixed no-repeat; }
.public-container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.public-header { position: sticky; top: 0; z-index: 30; min-height: 76px; background: rgba(7,11,20,.86); border-bottom: 1px solid var(--line-soft); backdrop-filter: blur(18px); }
.public-header__inner { display: flex; align-items: center; justify-content: space-between; width: min(1480px, calc(100% - 40px)); min-height: 76px; gap: 24px; }
.public-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.public-brand img { width: 49px; height: 49px; object-fit: contain; border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.3), 0 0 0 1px rgba(49,183,243,.18); }
.public-brand span { display: flex; flex-direction: column; }
.public-brand strong { font-size: 13px; letter-spacing: .1em; }
.public-brand small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.public-header__actions, .public-health { display: flex; align-items: center; gap: 10px; }
.public-health { padding-right: 8px; }
.health-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: var(--muted); background: rgba(255,255,255,.025); border: 1px solid var(--line-soft); border-radius: 99px; font-size: 10px; white-space: nowrap; }
.health-pill i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px var(--green-soft); }
.health-pill.is-offline { color: var(--red); }
.health-pill.is-offline i { background: var(--red); box-shadow: 0 0 0 4px var(--red-soft); }
.public-hero { position: relative; display: grid; place-items: center; min-height: 620px; overflow: hidden; background: url("../img/brand/brand-background.png") center / cover no-repeat; border-bottom: 1px solid var(--line-soft); }
.public-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,11,20,.98) 0%, rgba(7,11,20,.89) 42%, rgba(7,11,20,.42) 76%, rgba(7,11,20,.55) 100%), linear-gradient(180deg, rgba(7,11,20,.08), #070b14 100%); }
.public-glow { position: absolute; width: 280px; height: 280px; filter: blur(90px); opacity: .14; border-radius: 50%; }
.public-glow--blue { top: 15%; left: 8%; background: var(--blue); }
.public-glow--orange { right: 7%; bottom: 5%; background: var(--orange); }
.public-hero__content { position: relative; z-index: 2; padding: 84px 0 92px; text-align: left; }
.public-hero__logo { display: block; width: 112px; height: 112px; margin: 0 0 25px; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 18px 32px rgba(0,0,0,.38)); }
.public-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.public-kicker i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px var(--green-soft); }
.public-hero h1 { max-width: 760px; margin: 25px 0 18px; font-size: clamp(42px, 6.5vw, 76px); line-height: .98; letter-spacing: -.055em; }
.public-hero h1 em { color: var(--orange); font-style: normal; }
.public-hero__content > p { max-width: 620px; margin: 0; color: #aab5c7; font-size: 16px; line-height: 1.7; }
.public-hero__actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; width: min(760px, 100%); margin-top: 27px; }
.social-action { display: flex; align-items: center; min-width: 0; min-height: 64px; gap: 11px; padding: 10px 12px; background: rgba(16,24,39,.9); border: 1px solid #30405b; border-radius: 13px; box-shadow: 0 14px 32px rgba(0,0,0,.18); transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.social-action:hover { transform: translateY(-2px); background: rgba(21,31,49,.97); box-shadow: 0 19px 38px rgba(0,0,0,.28); }
.social-action__icon { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; }
.social-action__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-action__icon .social-action__icon-dot { fill: currentColor; stroke: none; }
.social-action__text { display: flex; flex: 1; flex-direction: column; min-width: 0; gap: 3px; }
.social-action__text strong, .social-action__text small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.social-action__text strong { font-size: 11px; }
.social-action__text small { color: var(--muted); font-size: 8px; letter-spacing: .04em; }
.social-action__arrow { color: var(--muted-2); font-size: 13px; transition: color .18s ease, transform .18s ease; }
.social-action:hover .social-action__arrow { color: var(--text); transform: translate(1px, -1px); }
.social-action--whatsapp:hover { border-color: rgba(54,211,153,.55); }
.social-action--whatsapp .social-action__icon { color: var(--green); background: var(--green-soft); }
.social-action--instagram:hover { border-color: rgba(255,138,28,.55); }
.social-action--instagram .social-action__icon { color: #fff; background: linear-gradient(135deg, #7c3aed, #e1306c 52%, #ff9b3d); }
.social-action--google:hover { border-color: rgba(49,183,243,.55); }
.social-action--google .social-action__icon { color: var(--yellow); background: var(--yellow-soft); }
.social-action--google .social-action__icon svg { fill: currentColor; stroke: none; }
.public-search { position: relative; display: grid; grid-template-columns: 1fr auto; width: min(760px, 100%); margin: 39px 0 0; padding: 7px; background: rgba(16,24,39,.94); border: 1px solid #30405b; border-radius: 15px; box-shadow: 0 24px 70px rgba(0,0,0,.38), 0 0 0 5px rgba(49,183,243,.035); }
.public-search__icon { position: absolute; left: 22px; top: 50%; color: var(--blue); font-size: 22px; transform: translateY(-50%); }
.public-search input { min-width: 0; min-height: 52px; padding: 0 18px 0 50px; color: var(--text); background: transparent; border: 0; outline: 0; font-size: 14px; }
.public-search input::placeholder { color: #69778d; }
.public-search .button { min-height: 52px; padding-inline: 22px; }
.public-search__help { display: block; margin-top: 14px; color: var(--muted-2); font-size: 10px; }
.public-results { padding: 64px 0 72px; background: #080d17; border-bottom: 1px solid var(--line-soft); }
.public-section-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.public-section-title h2 { margin: 7px 0 0; font-size: clamp(27px, 3.2vw, 38px); letter-spacing: -.035em; }
.public-section-title p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.public-section-title--center { justify-content: center; text-align: center; }
.public-notice { display: flex; align-items: center; gap: 13px; padding: 18px; color: #cbd5e1; background: rgba(49,183,243,.07); border: 1px solid rgba(49,183,243,.18); border-radius: 13px; }
.public-notice span { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; color: var(--blue); background: var(--blue-soft); border-radius: 8px; font-weight: 900; }
.public-notice p { margin: 0; font-size: 12px; }
.public-order-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.public-order-card { min-width: 0; padding: 24px; background: linear-gradient(145deg, #111a2b, #0c1422); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 48px rgba(0,0,0,.15); }
.public-order-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.public-order-card__top h3 { margin: 6px 0 0; font-size: 26px; letter-spacing: -.035em; }
.public-order-card__identity { display: flex; align-items: center; gap: 13px; margin: 24px 0 19px; }
.public-order-icon { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; color: var(--blue); background: var(--blue-soft); border: 1px solid rgba(49,183,243,.14); border-radius: 12px; font-size: 10px; font-weight: 900; }
.public-order-card__identity div { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.public-order-card__identity strong { font-size: 14px; }
.public-order-card__identity small { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.public-progress { height: 7px; overflow: hidden; background: #202b3d; border-radius: 99px; }
.public-progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: inherit; box-shadow: 0 0 18px rgba(54,211,153,.24); }
.public-order-dates { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 20px; background: rgba(255,255,255,.018); border: 1px solid var(--line-soft); border-radius: 11px; }
.public-order-dates div { min-width: 0; padding: 13px; border-right: 1px solid var(--line-soft); }
.public-order-dates div:last-child { border: 0; }
.public-order-dates span, .public-order-dates strong { display: block; }
.public-order-dates span { color: var(--muted-2); font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.public-order-dates strong { margin-top: 5px; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.public-order-card__privacy { margin: 16px 0 0; color: var(--muted-2); font-size: 9px; line-height: 1.5; }
.public-services { padding: 82px 0 92px; background: rgba(8,13,23,.94); border-bottom: 1px solid var(--line-soft); }
.rating-badge { width: min(255px, 100%); height: auto; object-fit: contain; border-radius: 10px; }
.rating-badge--large { width: min(360px, 100%); margin-top: 28px; box-shadow: 0 14px 36px rgba(0,0,0,.25); }
.service-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-showcase__card { min-width: 0; overflow: hidden; background: linear-gradient(155deg, rgba(17,26,43,.98), rgba(10,17,30,.98)); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 20px 48px rgba(0,0,0,.18); }
.service-showcase__card > a { display: block; overflow: hidden; background: #060b17; }
.service-showcase__card img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.service-showcase__card:hover img { transform: scale(1.025); filter: saturate(1.08); }
.service-showcase__card > div { display: flex; flex-direction: column; gap: 5px; padding: 17px 18px 19px; }
.service-showcase__card span { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.service-showcase__card strong { font-size: 13px; }
.public-reputation { padding: 90px 0; background: linear-gradient(135deg, rgba(10,17,30,.97), rgba(15,14,43,.94)); border-bottom: 1px solid var(--line-soft); }
.reputation-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(390px, 1.05fr); gap: clamp(35px, 7vw, 86px); align-items: center; }
.reputation-copy h2 { margin: 13px 0 20px; font-size: clamp(34px, 4.5vw, 58px); line-height: 1.02; letter-spacing: -.05em; }
.reputation-copy p { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.review-art { margin: 0; overflow: hidden; background: #090e1b; border: 1px solid #30405b; border-radius: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.36); }
.review-art img { display: block; width: 100%; height: auto; }
.public-brand-banner { padding: 82px 0; background: rgba(6,10,18,.96); border-bottom: 1px solid var(--line-soft); }
.public-brand-banner img { display: block; width: 100%; height: auto; border: 1px solid #30405b; border-radius: 20px; box-shadow: 0 28px 80px rgba(0,0,0,.32); }
.public-journey { padding: 80px 0 92px; background: linear-gradient(180deg, #070b14, #090f1c); }
.journey-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 38px; }
.journey-grid::before { content: ""; position: absolute; top: 22px; left: 11%; right: 11%; height: 1px; background: linear-gradient(90deg, var(--blue), var(--orange)); opacity: .32; }
.journey-grid article { position: relative; z-index: 2; padding: 24px 20px; text-align: center; background: rgba(16,24,39,.7); border: 1px solid var(--line-soft); border-radius: 15px; }
.journey-grid article > span { display: grid; place-items: center; width: 44px; height: 44px; margin: -3px auto 17px; color: #07111a; background: linear-gradient(135deg, var(--blue), #8be1ff); border: 5px solid #0b1220; border-radius: 50%; font-size: 9px; font-weight: 900; }
.journey-grid article:nth-child(3) > span, .journey-grid article:nth-child(4) > span { background: linear-gradient(135deg, var(--orange), #ffc477); }
.journey-grid strong { font-size: 14px; }
.journey-grid p { margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.public-footer { padding: 24px 0; color: var(--muted-2); background: #060a12; border-top: 1px solid var(--line-soft); font-size: 10px; }
.public-footer .public-container { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 1180px) {
    .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .form-grid--item { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .sidebar { transform: translateX(-100%); transition: transform .22s ease; }
    body.sidebar-open .sidebar { transform: translateX(0); box-shadow: 24px 0 70px rgba(0,0,0,.45); }
    .workspace { margin-left: 0; }
    .menu-button, .sidebar__close { display: grid; }
    .sidebar-overlay { position: fixed; inset: 0; z-index: 40; display: none; background: rgba(0,0,0,.58); backdrop-filter: blur(3px); }
    body.sidebar-open .sidebar-overlay { display: block; }
    .topbar { justify-content: flex-start; gap: 13px; }
    .topbar__right { margin-left: auto; }
    .dashboard-layout, .detail-layout { grid-template-columns: minmax(0, 1fr); }
    .detail-aside { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .login-shell { grid-template-columns: 1fr 390px; }
    .login-story { padding: 45px; }
    .public-health .health-pill:first-child { display: none; }
    .public-order-grid { grid-template-columns: 1fr; }
    .service-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .reputation-layout { grid-template-columns: minmax(0, 1fr); }
    .reputation-copy { text-align: center; }
    .reputation-copy p { margin-inline: auto; }
}

@media (max-width: 760px) {
    .content { padding: 25px 16px 55px; }
    .page-hero, .page-header, .detail-hero { align-items: flex-start; flex-direction: column; }
    .page-hero { min-height: 0; padding: 27px 23px; }
    .page-actions, .page-actions .button { width: 100%; }
    .metric-grid, .metric-grid--compact, .summary-strip, .admin-grid, .narrative-grid, .detail-aside { grid-template-columns: 1fr; }
    .summary-strip > div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
    .summary-strip > div:last-child { border-bottom: 0; }
    .filter-bar { align-items: stretch; flex-direction: column; }
    .select-filter select { width: 100%; }
    .form-grid, .form-grid--item { grid-template-columns: 1fr; }
    .form-field--wide { grid-column: auto; }
    .form-actions { flex-direction: column-reverse; }
    .form-actions .button { width: 100%; }
    .login-page { padding: 15px; }
    .login-shell { grid-template-columns: 1fr; min-height: 0; }
    .login-story { display: none; }
    .login-card { min-height: 560px; padding: 32px; }
    .identity-avatar { width: 55px; height: 55px; flex-basis: 55px; border-radius: 16px; }
    .topbar__date { display: none; }
    .topbar__right { gap: 10px; }
    .topbar-site-link { min-height: 36px; padding: 6px 10px; font-size: 9px; }
    .live-indicator { font-size: 0; }
    .public-container { width: min(100% - 30px, 1160px); }
    .public-header__inner { min-height: 68px; }
    .public-header__actions { gap: 7px; }
    .public-health { padding: 0; }
    .health-pill { padding: 7px; font-size: 0; }
    .public-brand img { width: 43px; height: 43px; }
    .public-brand small { display: none; }
    .public-header .button { min-height: 38px; padding: 7px 11px; font-size: 10px; }
    .public-hero { min-height: 590px; background-position: 64% center; }
    .public-hero::before { background: linear-gradient(180deg, rgba(7,11,20,.78), rgba(7,11,20,.93)); }
    .public-hero__content { padding: 67px 0 73px; text-align: center; }
    .public-hero__logo { width: 96px; height: 96px; margin: 0 auto 23px; }
    .public-hero h1 { font-size: clamp(39px, 12vw, 56px); }
    .public-hero__content > p { margin-inline: auto; font-size: 14px; }
    .public-hero__actions { grid-template-columns: 1fr; margin: 25px auto 0; }
    .social-action { min-height: 58px; text-align: left; }
    .social-action__text strong { font-size: 12px; }
    .public-search { grid-template-columns: 1fr; gap: 6px; padding: 7px; }
    .public-search { margin-inline: auto; }
    .public-search__icon { top: 34px; }
    .public-search .button { width: 100%; }
    .public-results { padding: 48px 0 55px; }
    .public-section-title { align-items: flex-start; flex-direction: column; }
    .rating-badge { width: min(280px, 100%); }
    .public-services, .public-reputation, .public-brand-banner { padding: 55px 0; }
    .public-order-card { padding: 20px; }
    .public-order-dates { grid-template-columns: 1fr; }
    .public-order-dates div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
    .public-order-dates div:last-child { border-bottom: 0; }
    .journey-grid { grid-template-columns: 1fr 1fr; }
    .journey-grid::before { display: none; }
    .public-footer .public-container { align-items: center; flex-direction: column; text-align: center; }
}

@media (max-width: 430px) {
    .topbar__context span { display: none; }
    .metric-grid { grid-template-columns: 1fr; }
    .metric-card { min-height: 105px; }
    .detail-identity { align-items: flex-start; }
    .order-title { align-items: flex-start; flex-direction: column; }
    .public-brand strong { font-size: 11px; }
    .public-header .button span { display: none; }
    .public-order-card__top { align-items: flex-start; flex-direction: column; }
    .service-showcase { grid-template-columns: 1fr; }
    .service-showcase__card > div { padding: 15px 16px 17px; }
    .journey-grid { grid-template-columns: 1fr; }
}

/* Experiência comercial pública */
.marketing-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.marketing-nav a { color: #aeb9ca; font-size: 14px; font-weight: 700; transition: color .18s ease; }
.marketing-nav a:hover { color: var(--text); }
.marketing-menu { display: none; position: relative; }
.marketing-menu summary { min-height: 42px; padding: 10px 12px; color: #d8e0eb; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; font-size: 12px; font-weight: 800; list-style: none; }
.marketing-menu summary::-webkit-details-marker { display: none; }
.marketing-menu[open] summary { color: var(--blue); border-color: rgba(49,183,243,.45); }
.marketing-menu nav { position: absolute; top: calc(100% + 10px); right: 0; z-index: 50; display: grid; width: min(270px, calc(100vw - 30px)); overflow: hidden; padding: 7px; background: rgba(10,17,30,.99); border: 1px solid #31415d; border-radius: 13px; box-shadow: 0 22px 55px rgba(0,0,0,.48); }
.marketing-menu nav a { padding: 12px 13px; color: #c9d2df; border-radius: 8px; font-size: 13px; font-weight: 750; }
.marketing-menu nav a:hover { color: var(--text); background: rgba(49,183,243,.1); }
.header-actions { display: flex; align-items: center; gap: 7px; margin-left: auto; }
.header-cta { margin-left: 0; }
.header-actions .header-action { min-height: 40px; color: #0b0e14; background: linear-gradient(135deg, var(--orange), #ffb351); border-color: rgba(255,179,81,.82); box-shadow: 0 10px 28px rgba(255,138,28,.15); white-space: nowrap; }
.header-actions .header-action:hover { color: #070b14; background: linear-gradient(135deg, #ff9f35, #ffc16f); border-color: #ffc16f; }
.header-actions .header-action.is-current { box-shadow: 0 0 0 2px rgba(49,183,243,.5), 0 10px 28px rgba(255,138,28,.18); }
.header-location svg, .header-instagram svg { width: 17px; height: 17px; flex: 0 0 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-instagram .instagram-dot { fill: currentColor; stroke: none; }
.marketing-section { scroll-margin-top: 76px; }
.marketing-section__title { margin-bottom: 34px; }
.marketing-section__title .eyebrow { font-size: 11px; }
.marketing-section__title h2 { font-size: clamp(32px, 4vw, 48px); }
.marketing-section__title p { max-width: 720px; font-size: 16px; line-height: 1.65; }

.marketing-hero { position: relative; min-height: 690px; overflow: hidden; background: linear-gradient(90deg, rgba(7,11,20,.99) 0%, rgba(7,11,20,.91) 54%, rgba(7,11,20,.7) 100%), url("../img/brand/brand-background.png") center / cover no-repeat; border-bottom: 1px solid var(--line-soft); }
.marketing-hero::after { content: ""; position: absolute; right: -10%; bottom: -50%; width: 55vw; height: 55vw; background: radial-gradient(circle, rgba(49,183,243,.12), transparent 67%); pointer-events: none; }
.marketing-hero__layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr); gap: clamp(48px, 8vw, 110px); align-items: center; min-height: 690px; padding-block: 82px; }
.marketing-hero__copy h1 { max-width: 760px; margin: 24px 0 22px; font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; }
.marketing-hero__copy h1 em { color: var(--orange); font-style: normal; }
.marketing-hero__copy > p { max-width: 720px; margin: 0; color: #b6c1d2; font-size: 18px; line-height: 1.7; }
.marketing-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.marketing-button { min-height: 52px; padding: 13px 20px; font-size: 14px; }
.tracking-shortcut { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: #b7c2d2; font-size: 14px; font-weight: 700; }
.tracking-shortcut span { display: grid; place-items: center; width: 23px; height: 23px; color: var(--green); background: var(--green-soft); border: 1px solid rgba(54,211,153,.25); border-radius: 50%; font-size: 12px; }
.tracking-shortcut:hover { color: var(--blue); }
.marketing-hero__proof { padding: 28px; background: linear-gradient(155deg, rgba(18,29,47,.94), rgba(10,17,30,.95)); border: 1px solid #2d3d58; border-radius: 24px; box-shadow: 0 34px 90px rgba(0,0,0,.38); }
.marketing-hero__proof > img:first-child { width: 86px; height: 86px; margin: -69px 0 24px; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 14px 25px rgba(0,0,0,.45)); }
.marketing-hero__proof h2 { margin: 10px 0 23px; font-size: clamp(25px, 3vw, 34px); line-height: 1.1; letter-spacing: -.035em; }
.marketing-hero__proof ul { display: grid; gap: 0; margin: 0 0 24px; padding: 0; list-style: none; border-top: 1px solid var(--line-soft); }
.marketing-hero__proof li { display: flex; align-items: center; gap: 12px; padding: 15px 0; color: #c6cfdb; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.marketing-hero__proof li span { color: var(--orange); font-size: 12px; font-weight: 900; }

.service-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.service-link-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 17px; align-items: center; min-height: 150px; padding: 25px; background: linear-gradient(145deg, rgba(17,26,43,.98), rgba(10,17,30,.98)); border: 1px solid var(--line); border-radius: 18px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.service-link-card:hover { transform: translateY(-3px); border-color: rgba(49,183,243,.48); box-shadow: 0 22px 48px rgba(0,0,0,.24); }
.service-link-card__index { display: grid; place-items: center; width: 48px; height: 48px; color: var(--blue); background: var(--blue-soft); border: 1px solid rgba(49,183,243,.25); border-radius: 14px; font-size: 13px; font-weight: 900; }
.service-link-card small { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .09em; }
.service-link-card h3 { margin: 7px 0 6px; font-size: 21px; letter-spacing: -.025em; }
.service-link-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.service-link-card > b { color: var(--orange); font-size: 22px; }
.service-gallery-heading { margin: 58px 0 24px; }
.service-gallery-heading h3 { margin: 9px 0 0; font-size: clamp(25px, 3vw, 34px); letter-spacing: -.035em; }
.service-showcase--marketing { margin-top: 0; }
.public-banners { padding: 82px 0 92px; background: linear-gradient(180deg, rgba(7,11,20,.97), rgba(10,16,28,.97)); border-bottom: 1px solid var(--line-soft); }
.public-banners .service-gallery-heading { margin: 0 0 24px; }

.reputation-button { margin-top: 20px; }
.reviews-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 34px; margin-bottom: 30px; }
.reviews-heading h2 { max-width: 760px; margin: 11px 0 13px; font-size: clamp(34px, 4.5vw, 56px); line-height: 1.04; letter-spacing: -.05em; }
.reviews-heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.reviews-heading .rating-badge--large { flex: 0 0 auto; margin-top: 0; }
.live-rating { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 13px; min-width: 250px; padding: 18px 20px; background: rgba(16,24,39,.8); border: 1px solid var(--line); border-radius: 16px; }
.live-rating strong { font-size: 38px; line-height: 1; }
.live-rating span { color: var(--yellow); font-size: 18px; letter-spacing: .05em; }
.live-rating small { grid-column: 1 / 3; margin-top: 8px; color: var(--muted); font-size: 13px; }
.live-reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.live-review-card { display: flex; flex-direction: column; min-height: 255px; padding: 22px; background: linear-gradient(145deg, rgba(17,26,43,.96), rgba(9,16,28,.96)); border: 1px solid var(--line); border-radius: 17px; }
.live-review-card header { display: flex; align-items: center; gap: 12px; }
.live-review-card header img, .review-avatar { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; }
.live-review-card header img { object-fit: cover; }
.review-avatar { display: grid; place-items: center; color: #07111a; background: linear-gradient(135deg, var(--blue), #8be1ff); font-weight: 900; }
.live-review-card header div { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.live-review-card header strong { overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.live-review-card header span { color: var(--yellow); font-size: 12px; }
.live-review-card p { margin: 21px 0; color: #bcc6d5; font-size: 15px; line-height: 1.65; }
.live-review-card > a { margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 800; }
.review-fallback { display: grid; grid-template-columns: minmax(280px, 410px) minmax(0, 1fr); gap: clamp(30px, 6vw, 75px); align-items: center; }
.review-fallback h3 { margin: 11px 0 14px; font-size: clamp(27px, 3.5vw, 40px); letter-spacing: -.04em; }
.review-fallback p { max-width: 650px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.tracking-section { padding: 82px 0; background: #080d17; border-bottom: 1px solid var(--line-soft); }
.tracking-section__layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr); gap: clamp(45px, 8vw, 100px); align-items: center; }
.tracking-section h2 { margin: 10px 0 14px; font-size: clamp(32px, 4vw, 48px); letter-spacing: -.04em; }
.tracking-section p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.tracking-section .public-search { margin-top: 0; }
.tracking-section .public-search__help { font-size: 13px; line-height: 1.5; }
.tracking-launch { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 18px; align-items: center; min-height: 116px; padding: 23px 25px; background: linear-gradient(145deg, rgba(16,24,39,.94), rgba(11,19,33,.96)); border: 1px solid #34445f; border-radius: 18px; box-shadow: 0 24px 65px rgba(0,0,0,.3); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.tracking-launch:hover { transform: translateY(-3px); border-color: rgba(255,138,28,.58); box-shadow: 0 30px 75px rgba(0,0,0,.38); }
.tracking-launch__icon { display: grid; place-items: center; width: 58px; height: 58px; color: #08111c; background: linear-gradient(135deg, var(--orange), #ffc36b); border-radius: 16px; font-size: 14px; font-weight: 950; box-shadow: 0 13px 30px rgba(255,138,28,.2); }
.tracking-launch > span:nth-child(2) { display: flex; flex-direction: column; gap: 7px; }
.tracking-launch strong { font-size: 19px; }
.tracking-launch small { color: var(--muted); font-size: 13px; line-height: 1.5; }
.tracking-launch b { color: var(--orange); font-size: 25px; }

.contact-cta { padding: 72px 0; background: linear-gradient(135deg, #0b1221, #13152d); }
.contact-cta__box { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 38px 42px; background: radial-gradient(circle at 86% 10%, rgba(255,138,28,.15), transparent 33%), rgba(16,24,39,.82); border: 1px solid #33405a; border-radius: 23px; box-shadow: 0 28px 70px rgba(0,0,0,.23); }
.contact-cta h2 { margin: 9px 0 10px; font-size: clamp(29px, 3.4vw, 43px); letter-spacing: -.04em; }
.contact-cta p { max-width: 650px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.contact-cta__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 40; display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 11px 17px; color: #06120d; background: #36d399; border: 1px solid #79e9bd; border-radius: 99px; box-shadow: 0 16px 40px rgba(0,0,0,.4); font-size: 14px; font-weight: 900; }
.floating-whatsapp:hover { transform: translateY(-2px); }
.floating-whatsapp svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.marketing-footer { padding: 32px 0; }
.marketing-footer .public-container { align-items: center; }
.marketing-footer .public-container > div { display: flex; flex-direction: column; gap: 5px; }
.marketing-footer strong { color: var(--text); font-size: 14px; }
.marketing-footer span, .marketing-footer a { font-size: 13px; }
.marketing-footer nav { display: flex; gap: 20px; }
.marketing-footer a:hover { color: var(--blue); }

/* Fundo fixo da página inicial */
.public-home { position: relative; min-height: 100vh; background: #070b14; }
.public-home::before, .public-home::after { content: ""; position: fixed; inset: 0; pointer-events: none; }
.public-home::before { z-index: 0; background: url("../img/brand/brand-background.png") center / cover no-repeat; }
.public-home::after { z-index: 0; background: linear-gradient(90deg, rgba(5,9,17,.9), rgba(7,11,20,.69) 55%, rgba(8,10,24,.76)), linear-gradient(180deg, rgba(7,11,20,.2), rgba(7,11,20,.68)); }
.public-home > main, .public-home > .public-footer { position: relative; z-index: 1; }
.public-home .marketing-hero { background: linear-gradient(90deg, rgba(7,11,20,.92) 0%, rgba(7,11,20,.73) 54%, rgba(7,11,20,.46) 100%); }
.public-home .public-journey { background: linear-gradient(180deg, rgba(7,11,20,.86), rgba(9,15,28,.8)); backdrop-filter: blur(2px); }
.public-home .public-reputation { background: linear-gradient(135deg, rgba(10,17,30,.84), rgba(15,14,43,.78)); backdrop-filter: blur(2px); }
.public-home .public-services { background: rgba(8,13,23,.84); backdrop-filter: blur(2px); }
.public-home .public-banners { background: linear-gradient(180deg, rgba(7,11,20,.85), rgba(10,16,28,.8)); backdrop-filter: blur(2px); }
.public-home .tracking-section { background: rgba(8,13,23,.82); backdrop-filter: blur(2px); }
.public-home .contact-cta { background: linear-gradient(135deg, rgba(11,18,33,.84), rgba(19,21,45,.78)); backdrop-filter: blur(2px); }
.public-home .public-footer { background: rgba(6,10,18,.9); backdrop-filter: blur(10px); }

/* Consulta pública isolada da ordem de serviço */
.tracking-page { display: flex; min-height: 100vh; flex-direction: column; }
.tracking-page__header { flex: 0 0 auto; background: rgba(7,11,20,.88); border-bottom: 1px solid var(--line-soft); backdrop-filter: blur(18px); }
.tracking-page__header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.tracking-page__main { display: grid; flex: 1 0 auto; place-items: center; padding: 64px 0 78px; }
.tracking-page__shell { width: min(1120px, calc(100% - 40px)); }
.tracking-lookup { padding: clamp(28px, 6vw, 58px); text-align: center; background: linear-gradient(145deg, rgba(15,24,40,.96), rgba(9,16,28,.95)); border: 1px solid #30415c; border-radius: 25px; box-shadow: 0 35px 100px rgba(0,0,0,.43); }
.tracking-lookup__icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 25px; color: #07111a; background: linear-gradient(135deg, var(--blue), #8be1ff); border: 6px solid rgba(49,183,243,.11); border-radius: 20px; background-clip: padding-box; font-size: 16px; font-weight: 950; box-shadow: 0 18px 40px rgba(49,183,243,.18); }
.tracking-lookup h1 { margin: 13px 0 15px; font-size: clamp(36px, 6vw, 58px); line-height: 1.02; letter-spacing: -.052em; }
.tracking-lookup > p { max-width: 610px; margin: 0 auto; color: #b6c1d2; font-size: 16px; line-height: 1.7; }
.tracking-lookup__form { margin: 32px auto 0; text-align: left; }
.tracking-lookup .public-search__help { max-width: 640px; margin: 14px auto 0; font-size: 12px; line-height: 1.55; }
.tracking-page__result { scroll-margin-top: 25px; margin-top: 24px; padding: clamp(24px, 5vw, 40px); background: rgba(8,13,23,.94); border: 1px solid #2e3d56; border-radius: 22px; box-shadow: 0 28px 80px rgba(0,0,0,.36); }
.tracking-page__result-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; margin-bottom: 23px; }
.tracking-page__result-heading h2 { margin: 8px 0 0; font-size: clamp(28px, 4vw, 38px); letter-spacing: -.04em; }
.tracking-order-card { padding: clamp(22px, 4vw, 32px); }
.tracking-order-card__progress-label { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 10px; color: var(--muted); font-size: 12px; }
.tracking-order-card__progress-label strong { color: var(--green); }
.tracking-page__footer { flex: 0 0 auto; padding: 22px 0; color: var(--muted-2); background: rgba(6,10,18,.9); border-top: 1px solid var(--line-soft); font-size: 11px; backdrop-filter: blur(12px); }
.tracking-page__footer .public-container { display: flex; justify-content: space-between; gap: 20px; }
.tracking-page__footer a:hover { color: var(--blue); }

.service-hero { position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(7,11,20,.99), rgba(11,18,32,.88)), url("../img/brand/brand-background.png") center / cover no-repeat; border-bottom: 1px solid var(--line-soft); }
.service-hero__layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: clamp(45px, 8vw, 100px); align-items: center; min-height: 590px; padding-block: 75px; }
.service-back { display: block; margin-bottom: 31px; color: var(--muted); font-size: 14px; font-weight: 800; }
.service-back:hover { color: var(--blue); }
.service-hero h1 { max-width: 850px; margin: 23px 0 21px; font-size: clamp(45px, 6vw, 72px); line-height: 1; letter-spacing: -.055em; }
.service-hero p { max-width: 720px; margin: 0; color: #b6c1d2; font-size: 18px; line-height: 1.7; }
.service-hero__brand { display: grid; place-items: center; padding: 35px; text-align: center; background: rgba(15,24,40,.88); border: 1px solid #2d3d58; border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.service-hero__brand img { width: 135px; height: 135px; object-fit: contain; border-radius: 50%; }
.service-hero__brand .service-hero__art { width: 100%; height: auto; aspect-ratio: 1; margin: -16px -16px 2px; object-fit: cover; border: 1px solid var(--line); border-radius: 17px; }
.service-hero__brand strong { margin-top: 22px; font-size: 20px; line-height: 1.35; }
.service-hero__brand span { margin-top: 11px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.service-details { padding: 88px 0; background: rgba(8,13,23,.96); }
.service-details__layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.service-details h2 { margin: 12px 0 17px; font-size: clamp(32px, 4vw, 49px); line-height: 1.08; letter-spacing: -.045em; }
.service-details p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.service-checklist { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.service-checklist li { display: flex; align-items: center; gap: 14px; min-height: 62px; padding: 14px 17px; color: #d4dce7; background: rgba(16,24,39,.8); border: 1px solid var(--line); border-radius: 14px; font-size: 16px; line-height: 1.45; }
.service-checklist span { display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 30px; color: var(--green); background: var(--green-soft); border-radius: 9px; font-weight: 900; }

.service-guide { padding: 88px 0; background: linear-gradient(145deg, #0b1321, #0e1728); border-block: 1px solid var(--line-soft); }
.service-guide__heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(35px, 7vw, 95px); align-items: end; margin-bottom: 38px; }
.service-guide__heading h2 { max-width: 700px; margin: 12px 0 0; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.service-guide__heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.service-guide__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.service-guide__grid article { min-height: 245px; padding: 25px; background: rgba(9,16,28,.82); border: 1px solid var(--line); border-radius: 18px; }
.service-guide__grid article > span { display: grid; place-items: center; width: 42px; height: 42px; color: var(--orange); background: rgba(255,138,28,.1); border: 1px solid rgba(255,138,28,.26); border-radius: 12px; font-size: 12px; font-weight: 900; }
.service-guide__grid h3 { margin: 24px 0 12px; font-size: 20px; line-height: 1.25; }
.service-guide__grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.instagram-work { padding: 88px 0; overflow: hidden; background: radial-gradient(circle at 94% 8%, rgba(211,45,116,.16), transparent 31%), radial-gradient(circle at 4% 90%, rgba(49,183,243,.1), transparent 35%), #090f1a; }
.instagram-work__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 34px; }
.instagram-work__heading h2 { max-width: 780px; margin: 12px 0 10px; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.instagram-work__heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.instagram-work__heading p strong { color: #dce5f2; }
.instagram-preview-grid, .instagram-embed-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.instagram-preview-card { position: relative; display: flex; min-height: 270px; overflow: hidden; padding: 25px; flex-direction: column; background: linear-gradient(155deg, rgba(80,32,112,.8), rgba(14,23,40,.96) 62%); border: 1px solid rgba(228,64,130,.34); border-radius: 20px; box-shadow: 0 24px 55px rgba(0,0,0,.22); }
.instagram-preview-card::after { content: ""; position: absolute; top: -55px; right: -55px; width: 175px; height: 175px; background: radial-gradient(circle, rgba(255,138,28,.28), transparent 66%); pointer-events: none; }
.instagram-preview-card__icon { display: grid; place-items: center; width: 50px; height: 50px; color: #fff; background: linear-gradient(135deg, #7c3aed, #db2777 55%, #f59e0b); border-radius: 15px; box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.instagram-preview-card__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.instagram-preview-card > span { margin-top: 29px; color: #ff9fcc; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.instagram-preview-card h3 { max-width: 320px; margin: 10px 0 22px; font-size: 22px; line-height: 1.25; }
.instagram-preview-card > a { margin-top: auto; color: #fff; font-size: 14px; font-weight: 850; }
.instagram-preview-card > a b { color: var(--orange); }
.instagram-preview-grid[hidden], .instagram-embed-grid[hidden], .instagram-auto-status[hidden] { display: none; }
.instagram-auto-status { margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.instagram-embed-grid { align-items: start; }
.instagram-embed-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: 0 22px 48px rgba(0,0,0,.28); }
.instagram-embed-frame { position: relative; min-height: 560px; overflow: hidden; background: #fff; }
.instagram-embed-frame blockquote[class*="instagram-media"] { position: absolute; inset: 0; width: 100% !important; min-width: 0 !important; height: 1px; overflow: hidden; margin: 0 !important; opacity: 0; pointer-events: none; }
.instagram-embed-frame iframe { position: relative; z-index: 2; display: block; width: 100% !important; max-width: 100% !important; min-width: 0 !important; margin: 0 !important; background: #fff; border: 0 !important; opacity: 0; transition: opacity .2s ease; }
.instagram-embed-card--loaded iframe { opacity: 1; }
.instagram-embed-placeholder { position: absolute; inset: 0; z-index: 1; display: grid; place-content: center; gap: 13px; color: #273246; background: #fff; text-align: center; }
.instagram-embed-spinner { width: 34px; height: 34px; margin-inline: auto; border: 3px solid #e2e7ef; border-top-color: #db2777; border-radius: 50%; animation: instagram-spin .8s linear infinite; }
.instagram-embed-placeholder strong { font-size: 13px; }
.instagram-embed-card--loaded .instagram-embed-placeholder { display: none; }
.instagram-embed-card > a { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 54px; padding: 14px 18px; color: #111827; background: #fff; border-top: 1px solid #e5e7eb; font-size: 13px; font-weight: 850; }
.instagram-embed-card > a b { color: #e1306c; }
@keyframes instagram-spin { to { transform: rotate(360deg); } }

.service-faq { padding: 88px 0; background: #0a101c; border-block: 1px solid var(--line-soft); }
.service-faq__layout { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(420px, 1.32fr); gap: clamp(45px, 8vw, 105px); align-items: start; }
.service-faq__heading { position: sticky; top: 105px; }
.service-faq__heading h2 { margin: 12px 0 14px; font-size: clamp(34px, 4vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.service-faq__heading p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.service-faq__list { display: grid; gap: 11px; }
.service-faq__list details { overflow: hidden; background: rgba(16,24,39,.78); border: 1px solid var(--line); border-radius: 15px; }
.service-faq__list details[open] { border-color: rgba(49,183,243,.38); }
.service-faq__list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 21px; cursor: pointer; font-size: 16px; font-weight: 800; line-height: 1.4; list-style: none; }
.service-faq__list summary::-webkit-details-marker { display: none; }
.service-faq__list summary span { color: var(--orange); font-size: 25px; font-weight: 400; transition: transform .18s ease; }
.service-faq__list details[open] summary span { transform: rotate(45deg); }
.service-faq__list details p { margin: 0; padding: 0 21px 21px; color: var(--muted); font-size: 15px; line-height: 1.7; }

.related-services { padding: 80px 0; background: #080d17; }
.related-services__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.related-services__grid a { display: flex; flex-direction: column; min-height: 190px; padding: 24px; background: linear-gradient(145deg, var(--surface), #0d1626); border: 1px solid var(--line); border-radius: 17px; transition: transform .18s ease, border-color .18s ease; }
.related-services__grid a:hover { transform: translateY(-3px); border-color: rgba(255,138,28,.48); }
.related-services__grid span { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.related-services__grid strong { margin-top: 14px; font-size: 20px; line-height: 1.3; }
.related-services__grid b { margin-top: auto; padding-top: 24px; color: var(--orange); font-size: 14px; }

.legal-page { padding: 78px 0 90px; background: linear-gradient(rgba(7,11,20,.94), rgba(7,11,20,.98)), url("../img/brand/brand-background.png") center / cover fixed no-repeat; }
.legal-page__layout { width: min(900px, calc(100% - 40px)); }
.legal-page header { margin-bottom: 34px; }
.legal-page h1 { margin: 12px 0; font-size: clamp(42px, 6vw, 66px); letter-spacing: -.055em; }
.legal-page header p, .legal-note { color: var(--muted); font-size: 15px; }
.legal-card { padding: clamp(27px, 5vw, 52px); background: rgba(13,21,35,.95); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.legal-card section + section { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.legal-card h2 { margin: 0 0 13px; font-size: 22px; }
.legal-card p { margin: 0; color: #aeb9ca; font-size: 16px; line-height: 1.75; }
.legal-card .button { margin-top: 20px; }
.legal-note { margin: 22px 0 0; line-height: 1.6; }

/* Localização pública */
.location-page { min-height: 100vh; }
.location-page__main { min-height: calc(100vh - 176px); padding: 74px 0 88px; }
.location-intro { margin-bottom: 35px; }
.location-intro h1 { max-width: 850px; margin: 17px 0 15px; font-size: clamp(42px, 6vw, 68px); line-height: 1; letter-spacing: -.055em; }
.location-intro > p { max-width: 790px; margin: 0; color: #b8c2d2; font-size: 17px; line-height: 1.7; }
.location-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr); gap: 22px; align-items: stretch; }
.location-map { position: relative; min-height: 560px; overflow: hidden; background: #101827; border: 1px solid #33445e; border-radius: 24px; box-shadow: 0 30px 85px rgba(0,0,0,.34); }
.location-map::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(49,183,243,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(49,183,243,.055) 1px, transparent 1px), radial-gradient(circle at 48% 43%, rgba(49,183,243,.2), transparent 38%); background-size: 46px 46px, 46px 46px, auto; }
.location-map__fallback { position: absolute; inset: 0; display: grid; z-index: 0; place-content: center; justify-items: center; gap: 11px; padding: 30px; text-align: center; }
.location-map__fallback > span { display: grid; place-items: center; width: 74px; height: 74px; color: #08111c; background: linear-gradient(135deg, var(--orange), #ffc36b); border-radius: 23px 23px 23px 7px; box-shadow: 0 18px 45px rgba(255,138,28,.25); transform: rotate(-45deg); }
.location-map__fallback svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transform: rotate(45deg); }
.location-map__fallback strong { margin-top: 14px; font-size: 24px; }
.location-map__fallback small { max-width: 390px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.location-map iframe { position: absolute; inset: 0; z-index: 1; display: block; width: 100%; height: 100%; min-height: 560px; background: transparent; border: 0; }
.location-details { display: flex; flex-direction: column; align-items: flex-start; padding: 33px; background: linear-gradient(155deg, rgba(18,29,47,.96), rgba(10,17,30,.97)); border: 1px solid #30415c; border-radius: 24px; box-shadow: 0 30px 85px rgba(0,0,0,.32); }
.location-details > img { width: 76px; height: 76px; margin-bottom: 22px; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 13px 22px rgba(0,0,0,.35)); }
.location-details h2 { margin: 10px 0 14px; font-size: clamp(27px, 3vw, 36px); line-height: 1.08; letter-spacing: -.04em; }
.location-details > p { margin: 0; color: #b8c2d2; font-size: 14px; line-height: 1.65; }
.location-details ul { display: grid; width: 100%; gap: 0; margin: 24px 0 28px; padding: 0; list-style: none; border-top: 1px solid var(--line-soft); }
.location-details li { padding: 14px 0; color: #c5cfdd; border-bottom: 1px solid var(--line-soft); font-size: 13px; line-height: 1.5; }
.location-details li strong { color: var(--text); }
.location-details .button { width: 100%; margin-top: auto; }

.privacy-banner { position: fixed; right: 16px; bottom: 16px; left: 50%; z-index: 1000; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px; align-items: center; width: min(1180px, calc(100% - 32px)); padding: 24px; color: var(--text); background: linear-gradient(135deg, rgba(11,18,32,.985), rgba(16,24,39,.985)); border: 1px solid rgba(49,183,243,.35); border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.58), 0 0 0 1px rgba(255,138,28,.08); transform: translateX(-50%); }
.privacy-banner[hidden] { display: none; }
.privacy-banner__copy > span, .privacy-dialog header span { display: block; margin-bottom: 8px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.privacy-banner h2 { margin: 0; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.15; letter-spacing: -.025em; }
.privacy-banner p { max-width: 780px; margin: 9px 0 7px; color: #b7c2d2; font-size: 14px; line-height: 1.55; }
.privacy-banner__copy > a { color: #d8e6f5; font-size: 13px; font-weight: 750; text-decoration: underline; text-decoration-color: rgba(49,183,243,.65); text-underline-offset: 3px; }
.privacy-banner__actions { display: grid; grid-template-columns: repeat(3, max-content); gap: 9px; }
.privacy-banner__actions .button { min-height: 45px; }
.privacy-button--settings { color: #dce6f3; background: transparent; border-color: #3b4b64; }
.privacy-button--settings:hover { background: rgba(255,255,255,.045); border-color: #57708f; }
.privacy-preferences-link { padding: 0; color: inherit; background: none; border: 0; cursor: pointer; font-size: inherit; }
.privacy-preferences-link:hover { color: var(--blue); }
.st-consent-visible .floating-whatsapp { opacity: 0; visibility: hidden; pointer-events: none; }
.privacy-dialog { width: min(650px, calc(100% - 28px)); padding: 0; color: var(--text); background: #0c1422; border: 1px solid #31415c; border-radius: 20px; box-shadow: 0 35px 110px rgba(0,0,0,.7); }
.privacy-dialog::backdrop { background: rgba(1,5,12,.76); backdrop-filter: blur(6px); }
.privacy-dialog__content { padding: 27px; }
.privacy-dialog header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.privacy-dialog h2 { margin: 0; font-size: 28px; letter-spacing: -.035em; }
.privacy-dialog__close { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 40px; padding: 0; color: var(--text); background: var(--surface-2); border: 1px solid var(--line); border-radius: 11px; cursor: pointer; font-size: 26px; line-height: 1; }
.privacy-dialog__content > p { margin: 19px 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.privacy-choice { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 82px; margin-top: 11px; padding: 17px; background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 14px; }
.privacy-choice > div { display: flex; flex-direction: column; gap: 6px; }
.privacy-choice strong { font-size: 15px; }
.privacy-choice small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.privacy-choice--required > span { flex: 0 0 auto; padding: 7px 10px; color: var(--green); background: var(--green-soft); border-radius: 99px; font-size: 11px; font-weight: 850; }
.privacy-choice input { width: 24px; height: 24px; flex: 0 0 24px; accent-color: var(--orange); cursor: pointer; }
.privacy-dialog footer { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.privacy-banner button:focus-visible, .privacy-dialog button:focus-visible, .privacy-dialog input:focus-visible, .privacy-preferences-link:focus-visible { outline: 3px solid rgba(49,183,243,.72); outline-offset: 3px; }

/* Conteúdo liberado ao cliente na consulta da OS */
.client-os-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.35fr); gap: 14px; margin-top: 25px; }
.client-os-panel { min-width: 0; padding: 18px; background: rgba(255,255,255,.022); border: 1px solid var(--line-soft); border-radius: 14px; }
.client-os-panel__heading { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.client-os-panel__heading > div { min-width: 0; }
.client-os-panel__heading small, .client-os-panel__heading h4 { display: block; }
.client-os-panel__heading small { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .11em; }
.client-os-panel__heading h4 { margin: 4px 0 0; font-size: 16px; }
.client-os-panel__icon { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; color: #07111a; background: linear-gradient(135deg, var(--blue), #8be1ff); border-radius: 11px; font-size: 9px; font-weight: 950; }
.client-os-list, .client-budget__items { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.client-os-list li { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.client-os-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.client-os-list div { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.client-os-list strong { font-size: 11px; line-height: 1.45; }
.client-os-list small { color: var(--muted); font-size: 9px; line-height: 1.45; }
.client-os-list li > span { flex: 0 0 auto; color: var(--orange); font-size: 10px; font-weight: 900; white-space: nowrap; }
.client-os-empty { margin: 15px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.client-budget__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 14px 0; }
.client-budget__top > div { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.client-budget__top strong { font-size: 11px; }
.client-budget__top small { color: var(--muted); font-size: 9px; }
.client-budget__items { border-block: 1px solid var(--line-soft); }
.client-budget__items li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.client-budget__items li:last-child { border-bottom: 0; }
.client-budget__items li > div { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.client-budget__items small, .client-budget__items span { color: var(--muted-2); font-size: 8px; }
.client-budget__items strong { font-size: 10px; line-height: 1.4; }
.client-budget__items b { flex: 0 0 auto; color: var(--text); font-size: 10px; white-space: nowrap; }
.client-budget__totals { display: grid; gap: 7px; margin: 14px 0 0; }
.client-budget__totals div { display: flex; justify-content: space-between; gap: 18px; }
.client-budget__totals dt { color: var(--muted); font-size: 9px; }
.client-budget__totals dd { margin: 0; font-size: 9px; font-weight: 800; text-align: right; }
.client-budget__totals .client-budget__grand-total { margin-top: 4px; padding-top: 10px; border-top: 1px solid var(--line-soft); }
.client-budget__grand-total dt, .client-budget__grand-total dd { color: var(--green); font-size: 13px; font-weight: 950; }

/* Blog e novidades */
.public-home .public-news { background: linear-gradient(135deg, rgba(8,15,27,.86), rgba(20,16,40,.8)); backdrop-filter: blur(2px); }
.public-blog { min-height: 100vh; background: #070b14; }
.public-blog::before { content: ""; position: fixed; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(125deg, rgba(7,11,20,.94), rgba(13,16,35,.82)), url("../img/brand/brand-background.png") center / cover no-repeat; }
.public-blog > main, .public-blog > footer { position: relative; z-index: 1; }
.blog-public-main, .blog-post-main { min-height: 70vh; }
.blog-hero { padding: 90px 0 64px; border-bottom: 1px solid var(--line-soft); }
.blog-hero h1 { max-width: 780px; margin: 20px 0 17px; font-size: clamp(48px, 8vw, 82px); line-height: .98; letter-spacing: -.058em; }
.blog-hero h1 em { color: var(--orange); font-style: normal; }
.blog-hero p { max-width: 720px; margin: 0; color: #b7c1d2; font-size: 17px; line-height: 1.7; }
.blog-index-section, .public-news, .blog-related { padding: 74px 0; }
.blog-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.blog-card { min-width: 0; overflow: hidden; background: linear-gradient(145deg, rgba(18,27,44,.96), rgba(10,17,30,.96)); border: 1px solid var(--line); border-radius: 19px; box-shadow: 0 22px 55px rgba(0,0,0,.18); }
.blog-card__media { display: grid; width: 100%; aspect-ratio: 16 / 9; place-items: center; overflow: hidden; color: #07111a; background: radial-gradient(circle at 80% 20%, rgba(255,135,30,.55), transparent 30%), linear-gradient(135deg, #31b7f3, #ff8a1c); text-decoration: none; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.035); }
.blog-card__media > span { font-size: 34px; font-weight: 950; letter-spacing: -.05em; }
.blog-card__body { display: flex; min-height: 245px; padding: 22px; flex-direction: column; }
.blog-card__body h2, .blog-card__body h3 { margin: 9px 0; font-size: 21px; line-height: 1.2; letter-spacing: -.025em; }
.blog-card__body h2 a, .blog-card__body h3 a { color: var(--text); text-decoration: none; }
.blog-card__body h2 a:hover, .blog-card__body h3 a:hover { color: var(--blue); }
.blog-card__body p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.blog-card__body footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 20px; }
.blog-card__body time { color: var(--muted-2); font-size: 9px; font-weight: 800; }
.blog-card__body footer a { color: var(--orange); font-size: 10px; font-weight: 900; text-decoration: none; }
.blog-pagination { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; color: var(--muted); font-size: 11px; }
.blog-pagination div { display: flex; gap: 9px; }
.blog-empty { padding: 68px 25px; text-align: center; background: rgba(13,21,35,.75); border: 1px solid var(--line); border-radius: 20px; }
.blog-empty > span { display: grid; width: 58px; height: 58px; margin: 0 auto 20px; place-items: center; color: #07111a; background: var(--blue); border-radius: 17px; font-weight: 950; }
.blog-empty h2 { margin: 0; font-size: clamp(26px, 4vw, 38px); }
.blog-empty p { margin: 12px auto 23px; color: var(--muted); }
.blog-article { width: min(920px, calc(100% - 40px)); padding-block: 70px 85px; }
.blog-article__header { max-width: 800px; }
.blog-article__header .back-link { display: inline-block; margin-bottom: 35px; }
.blog-article__header h1 { margin: 15px 0 18px; font-size: clamp(42px, 7vw, 72px); line-height: 1.02; letter-spacing: -.052em; }
.blog-article__header p { margin: 0; color: #b7c1d2; font-size: 18px; line-height: 1.65; }
.blog-article__header time { display: block; margin-top: 18px; color: var(--muted-2); font-size: 10px; font-weight: 800; }
.blog-article__cover { margin: 42px 0; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; }
.blog-article__cover img { display: block; width: 100%; max-height: 590px; object-fit: cover; }
.blog-article__content { color: #c8d0dc; font-size: 16px; line-height: 1.85; }
.blog-article__content p { margin: 0 0 1.35em; }
.blog-google-link { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 42px; padding: 24px; background: rgba(49,183,243,.055); border: 1px solid rgba(49,183,243,.2); border-radius: 16px; }
.blog-google-link > div { display: flex; flex-direction: column; gap: 7px; }
.blog-related { background: rgba(5,9,17,.55); border-top: 1px solid var(--line-soft); }

@media (max-width: 1240px) {
    .public-header__inner { flex-wrap: wrap; gap: 8px; padding-block: 8px 10px; }
    .public-brand span { display: none; }
    .header-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); order: 3; width: 100%; gap: 8px; margin-left: 0; }
    .header-actions .header-action, .public-header .header-team, .public-header .header-order, .public-header .header-location, .public-header .header-instagram, .public-header .header-cta { width: 100%; min-height: 42px; justify-content: center; padding: 6px 8px; font-size: 10px; line-height: 1.15; text-align: center; white-space: normal; }
    .public-header .header-location .header-action__label, .public-header .header-instagram span { display: inline; }
    .header-cta { display: inline-flex; }
    .marketing-section { scroll-margin-top: 176px; }
}

@media (max-width: 1040px) {
    .marketing-nav { display: none; }
    .marketing-menu { display: none; }
    .public-header__inner { gap: 12px; }
    .public-brand span { display: none; }
    .header-actions { gap: 6px; margin-left: auto; }
    .header-actions .header-action { padding-inline: 9px; font-size: 10px; }
    .header-cta { margin-left: 0; }
    .marketing-hero__layout, .service-hero__layout { grid-template-columns: minmax(0, 1fr); }
    .marketing-hero__layout { padding-top: 112px; }
    .marketing-hero__proof { max-width: 600px; }
    .tracking-section__layout, .service-details__layout, .service-guide__heading, .service-faq__layout { grid-template-columns: minmax(0, 1fr); gap: 35px; }
    .service-guide__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-faq__heading { position: static; }
    .related-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .live-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-cta__box { align-items: flex-start; flex-direction: column; }
    .location-layout { grid-template-columns: 1fr; }
    .location-details { min-height: 0; }
    .client-os-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .client-os-panel--budget { grid-column: 1 / -1; }
    .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .public-header__inner { flex-wrap: wrap; gap: 8px; padding-block: 8px 10px; }
    .public-brand { margin-right: auto; }
    .header-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); order: 3; width: 100%; gap: 8px; margin-left: 0; }
    .header-actions .header-action, .public-header .header-team, .public-header .header-order, .public-header .header-location, .public-header .header-instagram, .public-header .header-cta { width: 100%; min-height: 42px; justify-content: center; padding: 6px 8px; font-size: 10px; line-height: 1.15; text-align: center; white-space: normal; }
    .public-header .header-location .header-action__label, .public-header .header-instagram span { display: inline; }
    .header-cta { display: inline-flex; }
    .marketing-section { scroll-margin-top: 176px; }
}

@media (max-width: 760px) {
    .marketing-hero, .marketing-hero__layout { min-height: 0; }
    .public-header__inner { flex-wrap: wrap; gap: 8px; padding-block: 8px 10px; }
    .public-brand { margin-right: auto; }
    .header-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); order: 3; width: 100%; gap: 8px; }
    .header-actions .header-action, .public-header .header-team, .public-header .header-order, .public-header .header-location, .public-header .header-instagram, .public-header .header-cta { width: 100%; min-height: 42px; justify-content: center; padding: 6px 8px; font-size: 10px; line-height: 1.15; text-align: center; white-space: normal; }
    .public-header .header-location .header-action__label, .public-header .header-instagram span { display: inline; }
    .header-cta { display: inline-flex; }
    .marketing-hero__layout { padding-block: 90px 65px; }
    .marketing-hero__copy { text-align: left; }
    .marketing-hero__copy h1 { font-size: clamp(42px, 13vw, 60px); }
    .marketing-hero__copy > p, .service-hero p { font-size: 16px; }
    .marketing-hero__actions, .contact-cta__actions { align-items: stretch; flex-direction: column; }
    .marketing-button { width: 100%; }
    .marketing-hero__proof { margin-top: 35px; padding: 24px; }
    .marketing-hero__proof > img:first-child { margin-top: -57px; }
    .service-link-grid, .related-services__grid, .service-guide__grid, .instagram-preview-grid, .instagram-embed-grid { grid-template-columns: 1fr; }
    .live-reviews-grid, .review-fallback { grid-template-columns: 1fr; }
    .reviews-heading { align-items: flex-start; flex-direction: column; }
    .reviews-heading .rating-badge--large { width: min(360px, 100%); }
    .service-link-card { grid-template-columns: auto minmax(0, 1fr); min-height: 0; padding: 21px 18px; }
    .service-link-card > b { display: none; }
    .service-link-card h3 { font-size: 19px; }
    .tracking-section, .public-banners, .service-details, .service-guide, .instagram-work, .service-faq, .related-services { padding: 60px 0; }
    .tracking-section .public-search { margin-inline: 0; }
    .tracking-page__main { align-items: start; padding: 38px 0 55px; }
    .tracking-page__shell { width: min(100% - 28px, 1120px); }
    .tracking-page__header-inner { min-height: 68px; }
    .tracking-page__header .button { min-height: 40px; padding-inline: 13px; font-size: 10px; }
    .tracking-lookup { padding: 30px 19px; border-radius: 20px; }
    .tracking-lookup h1 { font-size: clamp(35px, 11vw, 48px); }
    .tracking-lookup > p { font-size: 14px; }
    .tracking-page__result { padding: 21px 17px; }
    .tracking-page__result-heading { align-items: flex-start; flex-direction: column; }
    .tracking-page__footer .public-container { flex-direction: column; gap: 9px; }
    .public-home::before { background-position: 62% center; }
    .public-home::after { background: linear-gradient(180deg, rgba(7,11,20,.73), rgba(7,11,20,.84)); }
    .contact-cta { padding: 54px 0; }
    .contact-cta__box { padding: 28px 23px; }
    .floating-whatsapp { right: 15px; bottom: 15px; }
    .floating-whatsapp span { display: none; }
    .floating-whatsapp { width: 54px; padding: 0; justify-content: center; }
    .marketing-footer .public-container { align-items: flex-start; }
    .marketing-footer nav { flex-direction: column; gap: 11px; }
    .service-hero__layout { min-height: 0; padding-block: 55px 65px; }
    .service-hero h1 { font-size: clamp(40px, 12vw, 58px); }
    .service-hero__brand { display: none; }
    .service-guide__grid article { min-height: 0; }
    .instagram-work__heading { align-items: stretch; flex-direction: column; }
    .privacy-banner { bottom: 10px; width: calc(100% - 20px); max-height: calc(100dvh - 20px); overflow-y: auto; grid-template-columns: 1fr; gap: 18px; padding: 20px; border-radius: 17px; }
    .privacy-banner p { font-size: 13px; }
    .privacy-banner__actions { grid-template-columns: 1fr; }
    .privacy-banner__actions .button { width: 100%; min-height: 47px; }
    .privacy-dialog__content { padding: 21px; }
    .privacy-dialog h2 { font-size: 24px; }
    .privacy-choice { align-items: flex-start; }
    .privacy-dialog footer { flex-direction: column-reverse; }
    .privacy-dialog footer .button { width: 100%; }
    .location-page__main { padding: 48px 0 64px; }
    .location-intro { margin-bottom: 27px; }
    .location-intro h1 { font-size: clamp(38px, 12vw, 52px); }
    .location-intro > p { font-size: 15px; }
    .location-map, .location-map iframe { min-height: 430px; }
    .location-details { padding: 27px 22px; }
    .client-os-grid, .blog-card-grid { grid-template-columns: 1fr; }
    .client-os-panel--budget { grid-column: auto; }
    .blog-index-section, .public-news, .blog-related { padding: 55px 0; }
    .blog-hero { padding: 65px 0 48px; }
    .blog-hero h1 { font-size: clamp(43px, 14vw, 62px); }
    .blog-article { width: min(100% - 28px, 920px); padding-block: 48px 64px; }
    .blog-article__header h1 { font-size: clamp(38px, 12vw, 58px); }
    .blog-article__header p { font-size: 15px; }
    .blog-google-link { align-items: stretch; flex-direction: column; }
    .blog-google-link .button { width: 100%; }
}

@media (max-width: 430px) {
    .public-brand span { display: none; }
    .header-actions { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
    .header-actions .header-action, .public-header .header-team, .public-header .header-order, .public-header .header-location, .public-header .header-instagram, .public-header .header-cta { min-height: 40px; padding-inline: 4px; font-size: 8px; }
    .public-header .header-location .header-action__label, .public-header .header-instagram span { display: inline; }
    .header-location svg, .header-instagram svg { display: none; }
    .marketing-hero__copy h1 { font-size: 40px; }
    .marketing-hero__proof h2 { font-size: 26px; }
    .service-link-card { grid-template-columns: 1fr; }
    .service-link-card__index { width: 42px; height: 42px; }
}
