/* MooviPet — CSS puro (sem frameworks) */
:root {
  --orange: #f47a20;
  --orange-dark: #d9631a;
  --yellow: #ffc21a;
  --primary-soft: #fff2e0;
  --accent-soft: #fff6da;
  --cream: #fdf3e3;
  --bg: #fffdfa;
  --ink: #2b2118;
  --muted: #7c6b5c;
  --border: #eee1d2;
  --card: #ffffff;
  --radius: 18px;
  --shadow-soft: 0 2px 10px -4px rgba(80, 55, 30, 0.14);
  --shadow-card: 0 18px 40px -26px rgba(80, 55, 30, 0.35);
  --shadow-cta: 0 14px 30px -14px rgba(244, 122, 32, 0.55);
  --gradient-primary: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  --gradient-hero: radial-gradient(120% 100% at 85% 10%, var(--primary-soft) 0%, transparent 60%);
}

* { box-sizing: border-box; }
* { border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4, .display {
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.shell {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.tiny { font-size: 0.75rem; }
.hidden { display: none !important; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-cta {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-warm { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-cta); }
.btn-warm:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn-outline { background: #fff; border-color: var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--orange); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 250, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.brand { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.brand img { width: 36px; height: 36px; border-radius: 12px; }
.brand-name { font-family: "Outfit", sans-serif; font-size: 1.25rem; font-weight: 800; }
.brand-name span { color: var(--orange); }
.nav { display: none; gap: 1.75rem; }
.nav a { font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.nav a:hover { color: var(--ink); }
@media (min-width: 900px) { .nav { display: flex; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 3.5rem;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; padding-block: 6rem; }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-soft);
  color: var(--orange-dark);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
}
.hero-copy { max-width: 36rem; }
.hero-text { margin-top: 1.25rem; font-size: 1.05rem; color: var(--muted); }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.trust { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.trust li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); }
.tick {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}
.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  height: 66%;
  border-radius: 40px;
  background: var(--cream);
  z-index: -1;
}
.hero-media img { margin-inline: auto; width: 100%; max-width: 36rem; }

/* ---------- Seções ---------- */
.section { padding-block: 4rem; scroll-margin-top: 6rem; }
@media (min-width: 640px) { .section { padding-block: 5rem; } }
.section-cream { background: rgba(253, 243, 227, 0.6); }
.section-head { max-width: 40rem; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 800; }
.section-head p { margin-top: 0.75rem; color: var(--muted); }

.grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.card:hover { box-shadow: var(--shadow-card); }
.card h3 { margin-top: 1rem; font-size: 1.125rem; font-weight: 700; }
.card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); }
.icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 16px;
  background: var(--accent-soft);
  font-size: 1.25rem;
}

/* Como funciona */
.steps { margin-top: 2.5rem; }
.steps li { border-top: 2px solid rgba(244, 122, 32, 0.25); padding-top: 1.25rem; }
.steps .num { font-family: "Outfit", sans-serif; font-size: 0.875rem; font-weight: 800; color: var(--orange); }
.steps h3 { margin-top: 0.5rem; font-size: 1.05rem; font-weight: 700; }
.steps p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }

/* Depoimentos */
.quote { display: flex; flex-direction: column; height: 100%; margin: 0; }
.stars { color: var(--yellow); letter-spacing: 2px; }
.quote-title { margin-top: 0.75rem; font-family: "Outfit", sans-serif; font-size: 1.125rem; font-weight: 700; }
.quote-body { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }
.quote figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.quote figcaption img { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; }
.quote .who { font-size: 0.875rem; font-weight: 600; }
.quote .route { font-size: 0.75rem; color: var(--muted); }
.done-badge {
  grid-column: 1 / -1;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--primary-soft);
  color: var(--orange-dark);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* CTA final + footer */
.cta-band {
  border-radius: 34px;
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
}
.cta-band p { font-family: "Outfit", sans-serif; font-size: clamp(1.5rem, 3vw, 1.875rem); line-height: 1.25; text-wrap: balance; font-weight: 800; max-width: 42rem; margin-inline: auto; }
.cta-band .btn { margin-top: 2rem; }
.footer { border-top: 1px solid var(--border); padding-block: 2.5rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }

/* ---------- Wizard ---------- */
.wizard {
  margin-top: 2.5rem;
  scroll-margin-top: 6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .wizard { padding: 2rem; } }

.step-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.step-tab {
  border: 0;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  background: #f4efe8;
  color: var(--muted);
  cursor: pointer;
}
.step-tab.done { background: var(--primary-soft); color: var(--ink); }
.step-tab.active { background: var(--orange); color: #fff; }

.progress { margin-top: 1.25rem; height: 8px; border-radius: 999px; background: #f4efe8; overflow: hidden; }
.progress > div { height: 100%; border-radius: 999px; background: var(--gradient-primary); transition: width 0.25s ease; }

.step-title { margin-top: 1.75rem; font-size: 1.35rem; font-weight: 700; }
.step-desc { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }
.step-body { margin-top: 1.5rem; display: grid; gap: 1.5rem; }

.field { display: block; }
.field > span { display: block; margin-bottom: 0.4rem; font-size: 0.875rem; font-weight: 600; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.field textarea { min-height: 5.5rem; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid rgba(244, 122, 32, 0.35); outline-offset: 1px; }
.field-wide { grid-column: 1 / -1; }

.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .split { grid-template-columns: 1fr 1fr; } }

.pills-label { display: block; margin-bottom: 0.4rem; font-size: 0.875rem; font-weight: 600; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}
.pill:hover { border-color: rgba(244, 122, 32, 0.5); }
.pill[aria-pressed="true"] { border-color: var(--orange); background: var(--primary-soft); color: var(--ink); }

.choice-cards { display: grid; gap: 1rem; }
@media (min-width: 640px) { .choice-cards.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .choice-cards.three { grid-template-columns: repeat(3, 1fr); } }
.choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.choice:hover { transform: translateY(-3px); }
.choice[aria-pressed="true"] { border-color: var(--orange); box-shadow: var(--shadow-card), 0 0 0 3px rgba(244, 122, 32, 0.25); }
.choice .emoji { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: var(--primary-soft); font-size: 1.5rem; }
.choice .title { font-family: "Outfit", sans-serif; font-size: 1.05rem; font-weight: 700; }
.choice .desc { font-size: 0.875rem; color: var(--muted); }
.choice .tag { margin-top: auto; border-radius: 999px; background: var(--accent-soft); color: var(--orange-dark); padding: 0.25rem 0.75rem; font-size: 0.72rem; font-weight: 700; }

.panel { border: 1px solid var(--border); border-radius: 20px; padding: 1.25rem; }
.panel-title { font-family: "Outfit", sans-serif; font-size: 1rem; font-weight: 700; }
.panel .form-grid { margin-top: 1rem; }

.checks { display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .checks { grid-template-columns: 1fr 1fr; } }
.check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
.check input { width: 18px; height: 18px; accent-color: var(--orange); }

.note { border: 1px solid var(--border); border-radius: 20px; background: rgba(253, 243, 227, 0.6); padding: 1.25rem; }
.note strong { font-family: "Outfit", sans-serif; }
.note p { margin-top: 0.35rem; font-size: 0.875rem; color: var(--muted); }

.estimate-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  border-radius: 18px;
  background: rgba(253, 243, 227, 0.75);
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.summary-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1000px) { .summary-grid { grid-template-columns: minmax(0, 1fr) 320px; } }
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.summary-row:last-child { border-bottom: 0; }
.summary-row span:first-child { color: var(--muted); }
.summary-row span:last-child { font-weight: 600; text-align: right; }
.estimate-card {
  border-radius: 20px;
  padding: 1.25rem;
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1px rgba(244, 122, 32, 0.2);
}
.estimate-card .price { margin-top: 0.75rem; font-family: "Outfit", sans-serif; font-size: 1.5rem; font-weight: 800; }

.wizard-nav {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.wizard-nav p { font-size: 0.875rem; color: var(--muted); }

.sent { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 700; color: var(--orange-dark); }
