/* ═══════════════════════════════════════════
   ABRACE DEUS — Design System
   Editorial bold, high-contrast, expressive
═══════════════════════════════════════════ */

:root {
  --cream:    #F9F6F0;
  --white:    #FFFFFF;
  --dark:     #0D0D0B;
  --dark2:    #1A1A16;
  --ink:      #1C1C1A;
  --primary:  #245F7A;
  --primary-l:#3A8EAB;
  --gold:     #9A7230;
  --muted:    #6B6B5E;
  --border:   rgba(0,0,0,.1);
  --border-d: rgba(255,255,255,.08);
  --r:        6px;
  --shadow:   0 20px 60px rgba(0,0,0,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TIPOGRAFIA ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(3.5rem, 9vw, 8rem); }
h2 { font-size: clamp(2.6rem, 6vw, 5.5rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }

h2 em, h3 em { font-style: italic; color: var(--primary); }
.bloco-dark h2 em { color: color-mix(in srgb, var(--primary-l), white 40%); }

p { color: var(--muted); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow.light { color: rgba(255,255,255,.45); }

/* ── BOTÕES ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: .9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--dark); }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: var(--cream); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.full { width: 100%; }

/* ── HEADER ─────────────────────────────────── */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 64px;
  padding: 0 clamp(16px, 4vw, 56px);
  background: rgba(13, 13, 11, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-d);
}
.hdr-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.hdr-brand img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }
.hdr-nav { display: flex; gap: 4px; }
.hdr-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color .15s, background .15s;
}
.hdr-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.hdr-end { display: flex; align-items: center; gap: 14px; }
.hdr-sobem {
  width: 68px;
  height: 38px;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  padding: 4px 6px;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: 64px;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.hero-texto {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(56px, 8vw, 100px) clamp(24px, 5vw, 80px);
}
.hero-texto h1 {
  color: #fff;
  line-height: 1;
}
.hero-texto h1 em {
  font-style: italic;
  color: color-mix(in srgb, var(--primary-l), white 30%);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.5);
  max-width: 460px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: calc(100svh - 64px);
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--primary), black 30%) 0%,
    var(--dark2) 100%);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 60px);
  gap: 32px;
}
.hero-kit-wrap {
  width: min(420px, 90%);
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.6));
  transition: transform .4s ease;
}
.hero-kit-wrap:hover { transform: translateY(-6px) scale(1.01); }
.hero-kit-wrap img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.hero-detalhe {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-detalhe span {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

/* ── BLOCOS (SEÇÕES) ─────────────────────────── */
.bloco {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 90px);
}
.bloco-light  { background: var(--white); }
.bloco-cream  { background: var(--cream); }
.bloco-dark   { background: var(--dark); color: #fff; }
.bloco-dark p { color: rgba(255,255,255,.55); }
.bloco-dark h3 { color: #fff; }
.bloco-dark h3 em { color: var(--primary-l); }

.center { text-align: center; }

/* ── SEÇÃO DOR ─────────────────────────────── */
.bloco-dark#dor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.dor-titulo h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .95;
  color: #fff;
}
.dor-titulo h2 em {
  display: block;
  color: color-mix(in srgb, var(--primary-l), white 30%);
  font-style: italic;
}
.dor-intro {
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.dor-lista {
  list-style: none;
  border-top: 1px solid var(--border-d);
}
.dor-lista li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-d);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: rgba(255,255,255,.75);
  line-height: 1.3;
}
.dor-quote {
  margin-top: 40px;
  padding-left: 24px;
  border-left: 3px solid var(--primary-l);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ── STEPS (COMO FUNCIONA) ─────────────────── */
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.steps-head h2 { margin-top: 8px; }
.steps-lista {
  list-style: none;
  border-top: 2px solid var(--border);
}
.steps-lista li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step-num {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: color-mix(in srgb, var(--primary), transparent 70%);
}
.step-texto h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step-texto p { font-size: .95rem; }

/* ── KITS ────────────────────────────────────── */
.kits-head {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}
.kits-head p { margin-top: 12px; font-size: 1.05rem; }

/* kit showcase injected by app.js */
.kit-showcase {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 44px;
}
.kit-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary), white 85%), #fff);
  box-shadow: var(--shadow);
}
.kit-image-wrap img { width: 100%; display: block; object-fit: contain; }
.kit-intro { display: grid; gap: 14px; }
.kit-intro h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); }
.kit-intro .category { margin-bottom: 4px; }
.kit-intro p { font-size: 1rem; }
.kit-intro .btn { align-self: start; margin-top: 8px; }

.category {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  background: color-mix(in srgb, var(--primary), transparent 88%);
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary), transparent 70%);
}

/* products table */
.products-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.products-table { width: 100%; border-collapse: collapse; background: #fff; }
.products-table thead th {
  padding: 14px 20px;
  background: var(--ink);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-align: left;
}
.products-table tbody tr { border-bottom: 1px solid var(--border); transition: background .13s; }
.products-table tbody tr:last-child { border-bottom: none; }
.products-table tbody tr:hover { background: color-mix(in srgb, var(--primary), transparent 95%); }
.products-table td { padding: 18px 20px; vertical-align: middle; }
.row-tag {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary), transparent 88%);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 800;
  margin-bottom: 5px;
}
.row-name { display: block; font-family: "Playfair Display", serif; font-size: .95rem; color: var(--ink); font-weight: 600; }
.row-desc { color: var(--muted); font-size: .88rem; line-height: 1.5; max-width: 380px; }
.row-price { font-family: "Playfair Display", serif; font-size: 1.3rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.row-action { text-align: right; }
.table-btn { min-height: 38px; padding: 0 18px; font-size: .82rem; }

/* ── RITUAL ─────────────────────────────────── */
.ritual-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.ritual-head h2 { color: #fff; margin-top: 8px; }
.ritual-lista {
  list-style: none;
  border-top: 1px solid var(--border-d);
}
.ritual-lista li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-d);
}
.rn {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--primary-l), transparent 40%);
  min-width: 52px;
}
.rt {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,.75);
}

/* ── FORMS ───────────────────────────────────── */
.form-bloco {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}
.form-lado h2 { margin-top: 8px; margin-bottom: 16px; }
.form-lado p { font-size: 1rem; }

.form-painel {
  display: grid;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 36px);
  box-shadow: var(--shadow);
}
.form-painel h3 {
  font-size: 1.1rem;
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-weight: 800;
}

.form-row { display: flex; gap: 12px; }
.form-row > label { flex: 1; }
.form-row.three { display: grid; grid-template-columns: 1fr 1.2fr 70px; gap: 10px; }

label { display: grid; gap: 6px; font-size: .84rem; font-weight: 700; color: var(--ink); }

input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 10px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}
textarea { resize: vertical; min-height: 80px; }

.donation-options { display: flex; flex-wrap: wrap; gap: 8px; }
.donation-options button {
  height: 42px;
  padding: 0 20px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  transition: all .15s;
}
.donation-options button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── IMPACTO ─────────────────────────────────── */
.impacto-bloco {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.impacto-head h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 4.5rem); }
.impacto-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border-d);
  border-radius: 10px;
  overflow: hidden;
}
.metric-card {
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid var(--border-d);
  background: rgba(255,255,255,.04);
}
.metric-card:last-child { border-right: none; }
.metric-card strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.metric-card span {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.4;
  display: block;
}

/* ── DEPOIMENTOS ─────────────────────────────── */
.dep-head { margin-bottom: 56px; }
.dep-head h2 { margin-top: 8px; }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.testimonial-card .mark {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: .8;
  color: var(--primary);
  opacity: .35;
  margin-bottom: 12px;
  display: block;
}
.testimonial-card p { color: var(--ink); font-size: .95rem; line-height: 1.7; margin: 12px 0 20px; }
.avatar {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary), transparent 85%);
  color: var(--primary);
  font-weight: 900;
  font-size: .9rem;
}

/* ── FAQ ─────────────────────────────────────── */
.faq-head { margin-bottom: 48px; }
.faq-head h2 { margin-top: 8px; }
.faq-lista {
  display: grid;
  max-width: 820px;
  margin: 0 auto;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 24px;
}
.faq-item summary {
  padding: 20px 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding-bottom: 20px; font-size: .95rem; }

/* ── CHECKOUT ────────────────────────────────── */
.checkout-bloco {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
.checkout-info h2 { margin-top: 8px; margin-bottom: 16px; }
.check-lista {
  list-style: none;
  margin: 20px 0;
  display: grid;
  gap: 8px;
}
.check-lista li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
  font-size: .95rem;
}
.check-lista li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 900; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.trust-badges span {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
}

.checkout-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cf-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: color-mix(in srgb, var(--cream), white 50%);
  border-bottom: 1px solid var(--border);
}
.cf-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}
.cf-step b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  font-size: .72rem;
}
.cf-step.active { color: var(--primary); }
.cf-step.active b { background: var(--primary); color: #fff; }
.cf-sep { color: var(--border); font-size: 1.1rem; flex: 1; text-align: center; }

.cf-grupo {
  display: grid;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cf-grupo-titulo {
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
}
.qty-label { max-width: 90px; }

.check-linha {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 24px 0;
  font-size: .84rem;
  color: var(--muted);
  font-weight: 500;
}
.check-linha input { width: 16px; min-height: 16px; margin-top: 2px; flex-shrink: 0; }

.frete-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  margin: 14px 24px 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--cream);
}
.frete-box > div { display: flex; flex-direction: column; gap: 2px; }
.frete-box span { font-size: .78rem; font-weight: 700; color: var(--muted); }
.frete-box strong { color: var(--ink); font-size: .95rem; }

.total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  margin: 10px 24px;
  border-radius: var(--r);
  background: var(--cream);
  font-weight: 700;
}
.total-box strong {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--primary);
}

.cf-submit {
  margin: 0 24px 8px;
  width: calc(100% - 48px);
  min-height: 52px;
  font-size: 1rem;
}
.form-status {
  min-height: 22px;
  padding: 0 24px 16px;
  font-size: .88rem;
  color: var(--muted);
}

/* payment */
.payment-panel[hidden] { display: none; }
.payment-panel {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
.payment-panel h2 { margin-top: 8px; margin-bottom: 16px; }
.order-meta { display: grid; gap: 0; margin-top: 20px; }
.order-meta > div { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); }
dt { font-size: .85rem; color: var(--muted); }
dd { font-weight: 800; color: var(--ink); }
.payment-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}
#paymentBrick_container { min-height: 420px; }

/* ── CTA FINAL ───────────────────────────────── */
.cta-final {
  text-align: center;
  padding: clamp(100px, 14vw, 180px) clamp(20px, 6vw, 90px);
}
.cta-final h2 {
  font-size: clamp(4rem, 10vw, 10rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
.cta-final p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,.5);
  margin-bottom: 40px;
}

/* ── RODAPÉ ──────────────────────────────────── */
.rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 80px);
  background: var(--dark2);
  border-top: 1px solid var(--border-d);
}
.rodape-marca strong { color: #fff; font-family: "Playfair Display", serif; font-size: 1.1rem; }
.rodape-marca p { color: rgba(255,255,255,.35); font-size: .82rem; margin-top: 4px; }
.rodape-links { display: flex; gap: 20px; flex-wrap: wrap; }
.rodape-links a { font-size: .88rem; color: rgba(255,255,255,.4); font-weight: 600; transition: color .15s; }
.rodape-links a:hover { color: #fff; }

/* ── WHATSAPP FAB ────────────────────────────── */
.wpp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .35);
  transition: transform .15s;
}
.wpp-fab:hover { transform: scale(1.08); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hdr-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 50vw; }
  .hero-kit-wrap { width: min(320px, 80%); }
  .bloco-dark#dor { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; }
  .steps-lista li { grid-template-columns: 60px 1fr; }
  .step-num { font-size: 2.8rem; }
  .kit-showcase { grid-template-columns: 1fr; }
  .kit-image-wrap { max-width: 340px; margin: 0 auto; }
  .ritual-wrap { grid-template-columns: 1fr; }
  .impacto-bloco { grid-template-columns: 1fr; }
  .impacto-stats { grid-template-columns: repeat(3, 1fr); }
  .dep-grid { grid-template-columns: 1fr 1fr; }
  .form-bloco { grid-template-columns: 1fr; }
  .checkout-bloco { grid-template-columns: 1fr; }
  .payment-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .hdr { flex-wrap: wrap; height: auto; padding: 10px 16px; position: sticky; top: 0; }
  .hdr-end .btn { display: none; }
  .hero { padding-top: 56px; }
  .hero-texto { padding: 40px 20px 32px; }
  .hero-visual { padding: 32px 20px 48px; min-height: auto; }
  .hero-kit-wrap { width: min(280px, 85%); }
  .hero-detalhe { gap: 10px; }
  .bloco { padding: 60px 16px; }
  .dor-titulo h2 { font-size: clamp(3rem, 12vw, 5rem); }
  .impacto-stats { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .form-row.three { grid-template-columns: 1fr 1fr 60px; gap: 8px; }
  .row-desc { display: none; }
  .products-table thead th:nth-child(2) { display: none; }
  .donation-options { gap: 6px; }
  .checkout-form { border-radius: 8px; }
  .cf-submit { width: calc(100% - 32px); margin: 0 16px 8px; }
  .frete-box, .total-box { margin-left: 16px; margin-right: 16px; }
  .cta-final h2 { font-size: clamp(3.5rem, 14vw, 6rem); }
}

@media (max-width: 420px) {
  h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .impacto-stats { grid-template-columns: 1fr 1fr; }
  .metric-card strong { font-size: 2rem; }
}
