/* ==========================================================
   qTransportes — Solicitar Guincho CSS  ·  Modern Enterprise
   ========================================================== */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --blue        : #00AEEF;
  --blue-hover  : #0099D6;
  --blue-dark   : #006FA0;
  --blue-glass  : rgba(0,174,239,.10);
  --blue-glow   : rgba(0,174,239,.22);
  --green       : #22C55E;
  --green-hover : #16A34A;
  --orange      : #F97316;
  --red         : #EF4444;
  --wa          : #25D366;
  --wa-hover    : #18B956;

  --surface     : #ffffff;
  --surface-2   : #F8FAFC;
  --surface-3   : #F1F5F9;
  --border      : #E2E8F0;
  --border-focus: rgba(0,174,239,.55);

  --text-1      : #0F172A;
  --text-2      : #374151;
  --text-3      : #64748B;
  --text-4      : #94A3B8;

  --shadow-xs   : 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm   : 0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md   : 0 4px 16px rgba(0,0,0,.07), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg   : 0 8px 32px rgba(0,0,0,.09), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl   : 0 20px 60px rgba(0,0,0,.11), 0 8px 24px rgba(0,0,0,.06);

  --r-sm : 8px;
  --r-md : 12px;
  --r-lg : 16px;
  --r-xl : 20px;
  --r-2xl: 24px;
}

/* ── Reset helpers ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.sol-body {
  background : #EEF2F7;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,174,239,.09) 0%, transparent 70%);
  min-height : 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.sol-header {
  position  : fixed; top: 0; left: 0; right: 0; z-index: 200;
  height    : 64px;
  background: linear-gradient(90deg, rgba(0,26,64,.97) 0%, rgba(0,48,120,.97) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  display   : flex; align-items: center; justify-content: space-between;
  padding   : 0 28px;
}

.sol-back {
  display: flex; align-items: center; gap: 8px;
  color  : rgba(255,255,255,.55);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color .2s;
  letter-spacing: -.01em;
}
.sol-back:hover { color: #fff; }
.sol-logo-link  { line-height: 0; }
.sol-logo       { height: 36px; filter: brightness(0) invert(1); opacity: .92; }

.sol-emergency-btn {
  display : flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  color   : #fff;
  padding : 9px 18px; border-radius: 10px;
  text-decoration: none; font-size: 13px; font-weight: 700;
  box-shadow: 0 4px 12px var(--blue-glow);
  transition: all .2s; letter-spacing: -.01em;
}
.sol-emergency-btn:hover {
  background: linear-gradient(135deg, #00BEFD 0%, var(--blue) 100%);
  transform : translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,174,239,.35);
}

/* ═══════════════════════════════════════════════════════════
   PROGRESS BAR + STEP LABELS
   ═══════════════════════════════════════════════════════════ */
.sol-progress-wrap {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.sol-progress-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #00D4FF);
  transition: width .45s cubic-bezier(.4,0,.2,1);
  width: 33.3%;
}

.sol-steps-labels {
  display: flex; max-width: 520px; margin: 0 auto;
}
.slabel {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 0; font-size: 13px; font-weight: 600; color: var(--text-4);
  transition: color .3s; cursor: default; letter-spacing: -.01em;
}
.slabel.active { color: var(--blue); }
.slabel.done   { color: var(--green); }

.sdot {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  background: var(--surface-3); color: var(--text-4);
  transition: all .3s;
}
.slabel.active .sdot {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 0 4px rgba(0,174,239,.14);
}
.slabel.done .sdot { background: var(--green); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   MAIN / PANELS
   ═══════════════════════════════════════════════════════════ */
.sol-main {
  max-width: 980px; margin: 0 auto;
  padding  : 148px 24px 80px;
}
.step-panel        { display: block; }
.step-panel.hidden { display: none; }

/* ═══════════════════════════════════════════════════════════
   STEP CARD
   ═══════════════════════════════════════════════════════════ */
.step-card {
  background   : var(--surface);
  border-radius: var(--r-2xl);
  box-shadow   : var(--shadow-lg);
  border       : 1px solid rgba(255,255,255,.9);
  padding      : 40px;
  animation    : slideUp .38s cubic-bezier(.16,1,.3,1) forwards;
}
.step-card--wide { max-width: 100%; }

@keyframes slideUp {
  from { opacity:0; transform:translateY(24px) scale(.98); }
  to   { opacity:1; transform:translateY(0)    scale(1);   }
}

.step-card-head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 36px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.step-card-head h2 {
  font-size: 22px; font-weight: 800; color: var(--text-1);
  margin-bottom: 3px; letter-spacing: -.03em; line-height: 1.2;
}
.step-card-head p { font-size: 14px; color: var(--text-3); line-height: 1.5; }

.step-icon {
  width: 56px; height: 56px; border-radius: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.step-icon--blue   { background: linear-gradient(135deg, var(--blue), var(--blue-hover));  box-shadow: 0 8px 24px var(--blue-glow); }
.step-icon--orange { background: linear-gradient(135deg, var(--orange), #E8620A);           box-shadow: 0 8px 24px rgba(249,115,22,.3); }
.step-icon--green  { background: linear-gradient(135deg, var(--green), var(--green-hover)); box-shadow: 0 8px 24px rgba(34,197,94,.3); }

/* ═══════════════════════════════════════════════════════════
   FORM FIELDS
   ═══════════════════════════════════════════════════════════ */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 24px;
}
/* Contact Picker */
#contactPickerWrap {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.btn-contact-picker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 100px;
  background: var(--blue-glass); border: 1.5px solid rgba(0,174,239,.35);
  color: var(--blue); font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all .2s;
  white-space: nowrap;
}
.btn-contact-picker:hover { background: rgba(0,174,239,.18); border-color: var(--blue); transform: translateY(-1px); }
.contact-picker-hint { font-size: 11px; color: var(--text-4); }

.field {
  display       : flex; flex-direction: column; gap: 7px;
  margin-bottom : 22px;
}
.field:last-child { margin-bottom: 0; }

label {
  font-size  : 13px; font-weight: 600; color: var(--text-2);
  display    : flex; align-items: center; gap: 7px;
  letter-spacing: -.01em;
}

input, select, textarea {
  font-family: 'Inter', system-ui, sans-serif;
  font-size  : 15px;
  border     : 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding    : 12px 15px;
  outline    : none; width: 100%;
  color      : var(--text-1); background: var(--surface);
  transition : border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2394A3B8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 38px; cursor: pointer;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow  : 0 0 0 3px rgba(0,174,239,.14);
}
input::placeholder, textarea::placeholder { color: var(--text-4); }
textarea { min-height: 96px; resize: vertical; }
small    { font-size: 12px; color: var(--text-4); line-height: 1.5; }

select[disabled] { background-color: var(--surface-3); color: var(--text-4); cursor: not-allowed; }

.input-prefix {
  display: flex; align-items: stretch;
  border     : 1.5px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition : border-color .2s, box-shadow .2s;
}
.input-prefix:focus-within {
  border-color: var(--blue);
  box-shadow  : 0 0 0 3px rgba(0,174,239,.14);
}
.input-prefix span {
  padding: 0 15px; font-size: 14px; font-weight: 700;
  color  : var(--text-3); background: var(--surface-3);
  border-right: 1.5px solid var(--border);
  display: flex; align-items: center; white-space: nowrap;
  letter-spacing: -.01em;
}
.input-prefix input { border: none; box-shadow: none; border-radius: 0; }
.input-prefix input:focus { box-shadow: none; }

.field-err { font-size: 12px; color: var(--red); font-weight: 500; min-height: 16px; }

/* ═══════════════════════════════════════════════════════════
   VEHICLE TYPES
   ═══════════════════════════════════════════════════════════ */
.vehicle-types {
  display : flex; gap: 10px; flex-wrap: wrap;
  padding : 4px 0;
}
.vtype {
  display      : flex; flex-direction: column; align-items: center; gap: 9px;
  padding      : 18px 16px; border-radius: var(--r-lg);
  border       : 1.5px solid var(--border);
  background   : var(--surface);
  font-size    : 12px; font-weight: 700; color: var(--text-3);
  cursor       : pointer; transition: all .22s;
  min-width    : 88px; font-family: inherit;
  letter-spacing: -.01em;
}
.vtype:hover {
  border-color: var(--blue); color: var(--blue);
  background  : rgba(0,174,239,.04);
  box-shadow  : var(--shadow-sm);
  transform   : translateY(-1px);
}
.vtype.active {
  border-color: var(--blue); color: var(--blue);
  background  : rgba(0,174,239,.07);
  box-shadow  : 0 0 0 3px rgba(0,174,239,.14), var(--shadow-sm);
  transform   : translateY(-1px);
}
.vtype svg { opacity: .75; transition: opacity .2s; }
.vtype:hover svg, .vtype.active svg { opacity: 1; }

.vtype-name { font-size: 12px; font-weight: 700; line-height: 1.2; }
.vtype-sub  {
  font-size: 10px; font-weight: 500; color: var(--text-4);
  text-align: center; line-height: 1.3;
}
.vtype.active .vtype-sub { color: rgba(0,174,239,.75); }

.vtype-nota-vazio {
  display: flex; align-items: flex-start; gap: 10px;
  background: #FFF7ED; border: 1.5px solid #FED7AA;
  border-radius: var(--r-md); padding: 12px 16px;
  font-size: 12px; color: #92400E; line-height: 1.6; margin-top: 12px;
}
.vtype-nota-vazio svg    { flex-shrink: 0; color: #D97706; margin-top: 2px; }
.vtype-nota-vazio strong { color: #78350F; }

/* ═══════════════════════════════════════════════════════════
   MODEL AUTOCOMPLETE
   ═══════════════════════════════════════════════════════════ */
.model-wrap { position: relative; }
.model-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 100;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-xl);
  max-height: 220px; overflow-y: auto; display: none;
}
.model-dropdown.open { display: block; }
.model-opt {
  padding: 11px 15px; font-size: 14px; cursor: pointer;
  color  : var(--text-2); transition: background .15s; font-weight: 500;
}
.model-opt:hover { background: var(--blue-glass); color: var(--blue); }

/* ═══════════════════════════════════════════════════════════
   COLOR SWATCHES
   ═══════════════════════════════════════════════════════════ */
.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; padding: 6px 0; }
.swatch {
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  border: 3px solid transparent; transition: all .22s;
  position: relative; box-shadow: 0 2px 8px rgba(0,0,0,.14);
}
.swatch:hover  { transform: scale(1.15); }
.swatch.selected {
  border-color: var(--blue); transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(0,174,239,.25), 0 2px 8px rgba(0,0,0,.14);
}
.swatch[data-cor="Branco"] { border-color: var(--border); box-shadow: inset 0 0 0 1px #E2E8F0, 0 2px 8px rgba(0,0,0,.08); }
.swatch-label {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 10px; white-space: nowrap; color: var(--text-3); font-weight: 500;
  opacity: 0; transition: opacity .15s; pointer-events: none;
}
.swatch:hover .swatch-label, .swatch.selected .swatch-label { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   PROBLEM CARDS
   ═══════════════════════════════════════════════════════════ */
.problems-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }

.problem-card {
  display      : flex; flex-direction: column; align-items: center; gap: 9px;
  padding      : 20px 10px 16px; border-radius: var(--r-lg);
  border       : 1.5px solid var(--border); background: var(--surface);
  font-size    : 11.5px; font-weight: 700; color: var(--text-3);
  cursor       : pointer; transition: all .22s; text-align: center;
  font-family  : inherit; letter-spacing: -.01em;
}
.problem-card:hover {
  border-color: var(--blue); color: var(--blue);
  background  : rgba(0,174,239,.04); transform: translateY(-2px);
  box-shadow  : var(--shadow-md);
}
.problem-card.active {
  border-color: var(--blue); color: var(--blue);
  background  : rgba(0,174,239,.07);
  box-shadow  : 0 0 0 3px rgba(0,174,239,.14), var(--shadow-sm);
  transform   : translateY(-2px);
}
.problem-card svg { flex-shrink: 0; opacity: .8; }
.problem-card:hover svg, .problem-card.active svg { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   LOCATION STEP — LAYOUT
   ═══════════════════════════════════════════════════════════ */
.location-layout {
  display: grid; grid-template-columns: 1fr 420px; gap: 32px;
}
.location-fields { display: flex; flex-direction: column; }

.loc-dot         { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.loc-dot--blue   { background: var(--blue);  box-shadow: 0 0 0 3px rgba(0,174,239,.2); }
.loc-dot--red    { background: var(--red);   box-shadow: 0 0 0 3px rgba(239,68,68,.2); }

.loc-input-wrap {
  position: relative; display: flex; align-items: center;
  border  : 1.5px solid var(--border); border-radius: var(--r-md);
  overflow: visible; transition: border-color .2s, box-shadow .2s;
}
.loc-input-wrap:focus-within {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,174,239,.14);
}
.loc-input-icon { position: absolute; left: 13px; pointer-events: none; flex-shrink: 0; }
.loc-input-wrap input { border: none; box-shadow: none; padding-left: 42px; padding-right: 50px; border-radius: 0; }
.loc-input-wrap input:focus { box-shadow: none; }

.gps-btn {
  position  : absolute; right: 8px;
  background: var(--blue-glass); color: var(--blue);
  border    : none; cursor: pointer; padding: 8px;
  border-radius: 8px; display: flex; align-items: center;
  transition: background .2s; font-size: 0;
}
.gps-btn:hover { background: rgba(0,174,239,.18); }

/* Route info */
.route-info {
  background   : linear-gradient(135deg, rgba(0,174,239,.06), rgba(0,174,239,.02));
  border       : 1px solid rgba(0,174,239,.18);
  border-radius: var(--r-md); padding: 14px 18px; margin: -6px 0 18px;
}
.route-info-inner { display: flex; align-items: center; gap: 16px; }
.ri-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--blue); }
.ri-sep  { width: 1px; height: 22px; background: rgba(0,174,239,.22); }

/* Toggles */
.toggle-group { display: flex; gap: 8px; }
.tog {
  flex: 1; padding: 11px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--surface);
  font-size: 14px; font-weight: 600; color: var(--text-3);
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.tog:hover    { border-color: var(--blue); color: var(--blue); }
.tog-active   { border-color: var(--blue); color: var(--blue); background: var(--blue-glass); }

/* Resumo */
.resumo-box {
  background   : var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; margin: 8px 0 24px;
  display: none;
}
.resumo-box.visible { display: block; }
.resumo-box h4 { font-size: 13px; font-weight: 800; color: var(--text-2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.resumo-row  { display: flex; gap: 9px; font-size: 13px; color: var(--text-3); margin-bottom: 7px; }
.resumo-row svg { flex-shrink: 0; margin-top: 1px; }
.resumo-row strong { color: var(--text-1); }

/* ═══════════════════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════════════════ */
.map-col { position: sticky; top: 134px; height: fit-content; }
.map-container {
  width: 100%; height: 520px; border-radius: var(--r-xl);
  overflow: hidden; border: 1.5px solid var(--border);
  background: #1a1a2e; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder-inner {
  text-align: center; color: rgba(255,255,255,.45); padding: 40px;
}
.map-placeholder-inner p { font-size: 14px; margin-top: 14px; color: rgba(255,255,255,.35); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   STEP NAV BUTTONS
   ═══════════════════════════════════════════════════════════ */
.step-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border);
}

.btn-back {
  display        : inline-flex; align-items: center; gap: 8px;
  background     : var(--surface-3); color: var(--text-2);
  font-size      : 14px; font-weight: 600;
  padding        : 12px 22px; border-radius: var(--r-md);
  border         : 1.5px solid var(--border); cursor: pointer;
  font-family    : inherit; text-decoration: none; transition: all .2s;
}
.btn-back:hover { background: var(--border); border-color: #CBD5E1; }

.btn-next {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; padding: 13px 30px;
}

.btn-submit {
  display    : inline-flex; align-items: center; gap: 10px;
  background : linear-gradient(135deg, var(--wa), var(--wa-hover));
  color      : #fff; font-size: 16px; font-weight: 800;
  padding    : 16px 36px; border-radius: var(--r-md);
  border     : none; cursor: pointer; font-family: inherit;
  transition : all .22s; letter-spacing: -.02em;
  box-shadow : 0 6px 22px rgba(37,211,102,.35), 0 2px 6px rgba(37,211,102,.2);
}
.btn-submit:hover {
  background: linear-gradient(135deg, #2BDE6D, var(--wa));
  transform : translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 4px 10px rgba(37,211,102,.25);
}
.btn-submit:disabled { background: #9CA3AF; cursor: not-allowed; transform: none; box-shadow: none; }

/* Global .btn (usado no HTML como .btn .btn-blue etc) */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-md);
  font-family: inherit; font-weight: 700; font-size: 14px;
  cursor: pointer; border: none; transition: all .22s;
  text-decoration: none; letter-spacing: -.02em;
}
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  color: #fff; box-shadow: 0 4px 14px var(--blue-glow);
}
.btn-blue:hover {
  background: linear-gradient(135deg, #00CCFF, var(--blue));
  transform : translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,174,239,.38);
}
.btn-green {
  background: linear-gradient(135deg, var(--wa), var(--wa-hover));
  color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-green:hover {
  transform : translateY(-1px);
  box-shadow: 0 8px 22px rgba(37,211,102,.4);
}

/* ═══════════════════════════════════════════════════════════
   LOADING OVERLAY
   ═══════════════════════════════════════════════════════════ */
.loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,20,55,.85); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
}
.loading-overlay.hidden { display: none; }
.loading-card {
  background   : var(--surface); border-radius: var(--r-2xl);
  padding      : 52px 64px; text-align: center;
  box-shadow   : var(--shadow-xl); border: 1px solid var(--border);
}
.loading-card h3 { font-size: 20px; font-weight: 800; color: var(--text-1); margin: 22px 0 8px; letter-spacing: -.02em; }
.loading-card p  { color: var(--text-3); font-size: 14px; }
.loading-spinner {
  width: 52px; height: 52px; border-radius: 50%;
  border: 4px solid var(--border); border-top-color: var(--blue);
  margin: 0 auto; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════
   SUCCESS SCREEN
   ═══════════════════════════════════════════════════════════ */
.success-card {
  text-align: center; max-width: 560px; margin: 0 auto; padding: 52px 40px;
}
.success-anim { margin-bottom: 32px; }
.success-circle {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-hover));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 36px rgba(34,197,94,.40), 0 4px 12px rgba(34,197,94,.2);
  animation: popIn .55s cubic-bezier(.17,.67,.35,1.25) forwards;
}
@keyframes popIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }

.success-card h2 { font-size: 28px; font-weight: 900; color: var(--text-1); margin-bottom: 10px; letter-spacing: -.04em; }
.success-sub     { font-size: 16px; color: var(--text-3); margin-bottom: 28px; line-height: 1.5; }

.success-protocol {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface-2); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 13px 22px; margin-bottom: 32px;
  font-size: 14px; color: var(--text-3);
}
.success-protocol strong { font-size: 20px; font-weight: 900; color: var(--blue); letter-spacing: -.02em; }

.success-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; text-align: left; margin-bottom: 32px;
}
.si-card {
  background   : var(--surface-2); border-radius: var(--r-md);
  padding      : 16px 18px; border: 1px solid var(--border);
}
.si-card span   { font-size: 10px; color: var(--text-4); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: 5px; }
.si-card strong { font-size: 14px; color: var(--text-1); font-weight: 700; display: block; letter-spacing: -.01em; }

.success-msg {
  display: flex; align-items: flex-start; gap: 14px;
  background: #F0FDF4; border: 1.5px solid #BBF7D0;
  border-radius: var(--r-lg); padding: 18px; text-align: left;
  margin-bottom: 28px;
}
.success-msg p { font-size: 14px; color: #166534; line-height: 1.7; }

.success-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.success-home {
  display: block; text-align: center; font-size: 13px; color: var(--text-4);
  text-decoration: none; transition: color .2s;
}
.success-home:hover { color: var(--blue); }

/* ═══════════════════════════════════════════════════════════
   GOOGLE PLACES AUTOCOMPLETE OVERRIDE
   ═══════════════════════════════════════════════════════════ */
.pac-container {
  border-radius: var(--r-md)!important; border: 1.5px solid var(--border)!important;
  box-shadow: var(--shadow-xl)!important; font-family: 'Inter', sans-serif!important;
  margin-top: 4px!important;
}
.pac-item { padding: 11px 15px!important; font-size: 14px!important; }
.pac-item:hover, .pac-item-selected { background: var(--blue-glass)!important; }
.pac-item-query { color: var(--text-1)!important; font-weight: 600!important; }

/* ═══════════════════════════════════════════════════════════
   ALERTA / AVISO
   ═══════════════════════════════════════════════════════════ */
.alert-warn {
  display: flex; align-items: flex-start; gap: 12px;
  background: #FFFBEB; border: 1.5px solid #FDE68A;
  border-radius: var(--r-md); padding: 14px 16px;
  font-size: 13px; color: #92400E; line-height: 1.6; margin-bottom: 20px;
}
.alert-warn svg    { flex-shrink: 0; color: #D97706; margin-top: 2px; }
.alert-warn strong { color: #78350F; }

/* ═══════════════════════════════════════════════════════════
   FORM GRID 2 cols (toggles)
   ═══════════════════════════════════════════════════════════ */
.form-grid--2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
@media (max-width: 500px) { .form-grid--2 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   CARDAN / FREIOS
   ═══════════════════════════════════════════════════════════ */
.cardan-horas {
  display: flex; flex-direction: column; gap: 8px;
  background: #F0F9FF; border: 1.5px solid #BAE6FD;
  border-radius: var(--r-md); padding: 16px; margin-top: 12px;
}
.cardan-horas label { font-weight: 700; color: #0369A1; font-size: 12px; }
.cardan-horas small { font-size: 11px; color: #0284C7; }

.pe-row--cardan {
  background: #F0F9FF; border: 1px solid #BAE6FD;
  border-radius: var(--r-sm); padding: 9px 13px;
  font-size: 12px; color: #0369A1; font-weight: 700;
}
.pe-row--cardan span   { color: #0369A1; display: flex; align-items: center; gap: 5px; }
.pe-row--cardan strong { color: #0284C7; }

/* ═══════════════════════════════════════════════════════════
   ATENDIMENTO Imediato / Agendado
   ═══════════════════════════════════════════════════════════ */
.atend-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.atend-btn {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 16px; border-radius: var(--r-lg);
  border: 1.5px solid var(--border); background: var(--surface);
  cursor: pointer; transition: all .22s; font-family: inherit;
}
.atend-btn:hover  { border-color: var(--blue); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.atend-active     { border-color: var(--blue); background: var(--blue-glass); transform: translateY(-1px); box-shadow: 0 0 0 3px rgba(0,174,239,.12); }
.atend-label      { font-size: 14px; font-weight: 800; color: var(--text-1); letter-spacing: -.02em; }
.atend-sub        { font-size: 11px; color: var(--text-4); font-weight: 500; }
.atend-active .atend-label { color: var(--blue); }
.atend-active .atend-sub   { color: rgba(0,174,239,.65); }
.atend-btn svg    { color: var(--text-4); }
.atend-active svg { color: var(--blue); }
.agendado-wrap    { margin-top: 0; }

/* ═══════════════════════════════════════════════════════════
   MÁQUINA ALERT
   ═══════════════════════════════════════════════════════════ */
.maquina-alert {
  display: flex; align-items: flex-start; gap: 18px;
  background: linear-gradient(135deg, #0f2744, #0a1929);
  border: 1.5px solid rgba(0,174,239,.22);
  border-radius: var(--r-xl); padding: 24px; margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.maquina-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(0,174,239,.18); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
}
.maquina-body strong { display: block; font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -.02em; }
.maquina-body p      { font-size: 13px; color: rgba(255,255,255,.70); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   ESTIMATIVA DE CUSTO — Card
   ═══════════════════════════════════════════════════════════ */
.price-estimate {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1.5px solid rgba(0,174,239,.22);
  margin: 0 0 24px; background: var(--surface);
  box-shadow: 0 12px 48px rgba(0,174,239,.14), var(--shadow-md);
}
.pe-loading {
  display: flex; align-items: center; gap: 13px;
  padding: 22px 24px; color: var(--text-3); font-size: 14px;
}
.pe-spinner {
  width: 22px; height: 22px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--blue);
  animation: spin .65s linear infinite; flex-shrink: 0;
}
.pe-content { display: block; }

/* ── Cabeçalho */
.pe-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 12px;
  background: linear-gradient(135deg, rgba(0,174,239,.09), rgba(0,174,239,.02));
  border-bottom: 1px solid rgba(0,174,239,.12);
}
.pe-title     { display: flex; align-items: center; gap: 8px; }
.pe-title h4  { font-size: 13px; font-weight: 800; color: var(--text-1); letter-spacing: -.02em; }
.pe-badge-est {
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-3); background: var(--surface-2);
  padding: 3px 9px; border-radius: 100px; border: 1px solid var(--border);
}

/* ── Bloco total em destaque */
.pe-total-block {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 16px 16px; text-align: center; gap: 6px;
  background: linear-gradient(160deg, rgba(0,174,239,.07) 0%, transparent 80%);
  border-bottom: 1.5px solid rgba(0,174,239,.12);
  position: relative;
}
.pe-total-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,174,239,.11), transparent);
  pointer-events: none;
}
.pe-total-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text-3);
}
.pe-total-value {
  font-size: 38px; font-weight: 900; line-height: 1; letter-spacing: -.05em;
  background: linear-gradient(125deg, #00AEEF 0%, #0080CC 55%, #0058A8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(0,174,239,.28));
}
.pe-period-tag {
  font-size: 10px; font-weight: 600; color: var(--text-2);
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 3px 12px; border-radius: 100px;
  max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── Breakdown de valores */
.pe-price-breakdown {
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 7px;
}
.pe-price-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; border-radius: var(--r-md);
  background: var(--surface-2); border: 1px solid var(--border);
}
.pe-price-row--toll   { border-color: rgba(234,88,12,.2); background: rgba(255,237,213,.12); }
.pe-price-row--cardan { border-color: rgba(124,58,237,.2); background: rgba(237,233,254,.1); }
.pe-price-icon {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px;
  background: rgba(0,174,239,.12); display: flex; align-items: center; justify-content: center;
}
.pe-price-icon--toll   { background: rgba(234,88,12,.12); }
.pe-price-icon--cardan { background: rgba(124,58,237,.12); }
.pe-price-info  { flex: 1; min-width: 0; }
.pe-price-label { display: block; font-size: 12px; font-weight: 700; color: var(--text-1); line-height: 1.25; }
.pe-price-sub   {
  display: block; font-size: 10px; color: var(--text-4); font-weight: 500; margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pe-price-val         { font-size: 14px; font-weight: 800; color: var(--text-1); white-space: nowrap; flex-shrink: 0; }
.pe-price-val--toll   { color: #C2410C; }
.pe-price-val--cardan { color: #6D28D9; }

/* ── Informações da rota */
.pe-route-info {
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.pe-info-row {
  display: flex; align-items: center; gap: 8px;
}
.pe-info-row svg    { flex-shrink: 0; }
.pe-info-row span   { flex: 1; color: var(--text-3); font-size: 11px; }
.pe-info-row strong { font-weight: 800; color: var(--text-1); white-space: nowrap; font-size: 13px; }
.pe-info-row--eta  strong { color: var(--blue); font-size: 14px; }
.pe-info-row--time strong { color: #0369A1; font-size: 14px; }

/* ── Nota de rota */
.pe-route-note {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 9px 14px; font-size: 10px; line-height: 1.6;
  color: var(--text-3); border-bottom: 1px solid rgba(0,174,239,.08);
  background: rgba(0,174,239,.03);
}
.pe-route-note svg    { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.pe-route-note strong { color: var(--text-2); font-weight: 700; }

/* ── Avisos */
.pe-warns-wrap { padding: 0 14px; display: flex; flex-direction: column; gap: 6px; margin: 8px 0 2px; }
.pe-row        { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.pe-row--warn  {
  display: flex; align-items: flex-start; gap: 7px;
  background: #FFFBEB; border: 1px solid #FDE68A; border-radius: var(--r-sm);
  padding: 8px 11px; font-size: 11px; color: #92400E; font-weight: 500;
}
.pe-row--warn svg { flex-shrink: 0; margin-top: 1px; }

/* ── Disclaimer */
.pe-disclaimer {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 11px 18px; background: var(--surface-2);
  border-top: 1px solid rgba(0,174,239,.08);
  font-size: 10px; color: var(--text-3); line-height: 1.65;
}
.pe-disclaimer svg    { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.pe-disclaimer a      { color: var(--blue); font-weight: 600; text-decoration: none; }
.pe-disclaimer a:hover{ text-decoration: underline; }
.pe-disclaimer strong { color: var(--text-2); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .location-layout { grid-template-columns: 1fr; }
  .map-col         { position: static; }
  .map-container   { height: 320px; }
}

@media (max-width: 680px) {
  .sol-main    { padding: 138px 16px 56px; }
  .step-card   { padding: 28px 20px; }
  .form-grid   { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: repeat(2,1fr); }
  .vehicle-types { gap: 8px; }
  .vtype       { min-width: 76px; padding: 14px 10px; }
  .success-info-grid { grid-template-columns: 1fr; }
  .step-nav    { flex-direction: column-reverse; gap: 10px; }
  .btn-next, .btn-submit { width: 100%; justify-content: center; }
  .btn-back    { width: 100%; justify-content: center; }
  .sol-header .sol-back span { display: none; }
  .loading-card { padding: 40px 32px; }
  .success-card { padding: 36px 20px; }
}

@media (max-width: 420px) {
  .sol-header   { padding: 0 16px; }
  .step-card    { padding: 24px 16px; }
  .problems-grid{ grid-template-columns: repeat(2,1fr); gap: 8px; }
  .pe-total-value{ font-size: 28px; }
}
