/* ═══════════════════════════════════════════════════════════
   PAGE: ORÇAMENTO (orcamento.html / -arte / -video)
   3 variantes do formulário, mesma estrutura.
   accent muda pela página correspondente.
═══════════════════════════════════════════════════════════ */

[data-page="orcamento-web"]   { --accent: var(--c-front);  --accent-2: #5B8Cff; --accent-deep: #1B49B8; }
[data-page="orcamento-arte"]  { --accent: var(--c-tattoo); --accent-2: #E0596E; --accent-deep: #8E1530; }
[data-page="orcamento-video"] { --accent: var(--c-film);   --accent-2: #F0BC5A; --accent-deep: #B27A12; }

.shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 150px 38px 90px;
  position: relative;
  overflow: hidden;
}

.page-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .1;
}

html[data-theme="light"] .page-svg {
  mix-blend-mode: multiply;
  opacity: .06;
}

.head {
  max-width: 680px;
  margin-bottom: 54px;
}

.head h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -.01em;
}

.head h1 .it {
  font-style: italic;
  color: var(--accent);
}

.head p {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dim);
  max-width: 560px;
}

.layout {
  display: grid;
  grid-template-columns: 1.55fr .95fr;
  gap: 34px;
  align-items: start;
}

@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .shell { padding: 130px 24px 70px; }
}

/* Aside lateral — métricas, garantias, contato */
.aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.aside-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px;
}

.aside-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
}

.aside-card .row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dim);
}

.aside-card .row svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.aside-card .row b {
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
}

/* Mensagem após envio */
.thanks {
  display: none;
  background: var(--panel);
  border: 1px solid var(--accent);
  border-radius: var(--r-xl);
  padding: 60px 30px;
  text-align: center;
}

.thanks.show { display: block; }

.thanks .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--green) 18%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.thanks .check svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.thanks h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.thanks p {
  color: var(--dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   SIDE CARD — timeline + contato (lateral direita)
═══════════════════════════════════════════════════════════ */
.side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 120px;
}

@media (max-width: 920px) {
  .side { position: static; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}

.card .sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; }

.ti {
  display: flex;
  gap: 15px;
  padding-bottom: 22px;
  position: relative;
}

.ti:last-child { padding-bottom: 0; }

.ti::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 30px;
  bottom: 2px;
  width: 1.5px;
  background: var(--hair);
}

.ti:last-child::before { display: none; }

.ti .dot {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--panel);
  z-index: 1;
}

.ti .tx h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
}

.ti .tx p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--dim);
}

/* Contato */
.contact { display: flex; flex-direction: column; gap: 14px; }

.cline {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14.5px;
}

.cline svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--accent);
}

.cline.wa svg { color: var(--whatsapp); }

.cline a {
  color: var(--fg);
  transition: color .2s ease;
}

.cline a:hover { color: var(--accent); }

.cline .l {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1px;
}

/* Reassurance */
.reassure {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.5;
}

.reassure svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--green);
}

/* Submit + nota */
.submit svg { width: 17px; height: 17px; }

.note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PICKER — cards de seleção Aquarela / Tatuagem
═══════════════════════════════════════════════════════════ */
.service-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

@media (max-width: 560px) {
  .service-pick { grid-template-columns: 1fr; }
}

.spick {
  cursor: pointer;
  position: relative;
}

.spick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.spick-card {
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  text-align: center;
  transition: border-color .2s ease, background .2s ease;
}

.spick:hover .spick-card {
  border-color: var(--fg);
}

.spick input:checked ~ .spick-card {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.spick-icon {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}

.spick-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 5px;
}

.spick-desc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ═══════════════════════════════════════════════════════════
   SUBMIT ROW — dois botões lado a lado no desktop
═══════════════════════════════════════════════════════════ */
.submit-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.submit-row .submit {
  flex: 1;
  width: auto;
}

@media (max-width: 560px) {
  .submit-row { flex-direction: column; }
  .submit-row .submit { width: 100%; }
}
