/* ArtiZynt — Landing Page | Farben aus der Originalverpackung */
:root {
  --c-red: #d32f2f;
  --c-red-dark: #a82424;
  --c-orange: #f5a623;
  --c-green: #43a047;
  --c-green-dark: #2e7d32;
  --c-ink: #1f2421;
  --c-ink-soft: #4a4f4c;
  --c-bg: #ffffff;
  --c-bg-soft: #f6f8f5;
  --c-border: #e4e8e2;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(31, 36, 33, 0.08);
  --maxw: 1080px;
  font-size: 17px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
.icon { width: 1.15em; height: 1.15em; vertical-align: -0.18em; flex-shrink: 0; }
.icon-circle .icon { width: 1.6rem; height: 1.6rem; }
a { color: inherit; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 16px; letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 14px; }
.lead { font-size: 1.1rem; color: var(--c-ink-soft); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--c-green-dark);
  background: #e9f5e7;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  display: inline-block;
}

/* Colorful icon circles (à la CardioBalance feature cards) */
.icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 18px rgba(0,0,0,.07);
}
.icon-circle .icon { width: 1.9rem; height: 1.9rem; }
.ic-red { background: #fde6e6; color: var(--c-red); }
.ic-green { background: #e3f3e0; color: var(--c-green-dark); }
/* alias: laranja antigo passa a contar como positivo (verde) */
.ic-orange { background: #e3f3e0; color: var(--c-green-dark); }
.card-hover { transition: transform .15s ease, box-shadow .15s ease; }
.card-hover:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(31,36,33,.1); }
.bg-soft { background: var(--c-bg-soft); }
.center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 36px; text-align: center; }

/* Trust bar */
.trust-bar {
  background: var(--c-ink);
  color: #fff;
  font-size: .85rem;
  text-align: center;
  padding: 8px 16px;
}
.trust-highlight {
  color: #1f2421;
  background: #ffd400;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 800;
}

/* Header / nav */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo { font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; }
.logo span { color: var(--c-red); }
nav.tabs {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  font-size: .92rem;
  font-weight: 600;
}
nav.tabs::-webkit-scrollbar { display: none; }
nav.tabs a { white-space: nowrap; text-decoration: none; color: var(--c-ink-soft); padding: 4px 0; border-bottom: 2px solid transparent; }
nav.tabs a:hover, nav.tabs a:focus-visible { color: var(--c-green-dark); border-bottom-color: var(--c-green); }
.btn-nav { background: var(--c-green-dark); color: #fff; padding: 10px 18px; border-radius: 999px; font-size: .88rem; font-weight: 700; text-decoration: none; flex-shrink: 0; }

/* Variant tabs (Kapseln / Gel switcher) */
[hidden] { display: none !important; }
.variant-tabs { background: #fff; border-bottom: 1px solid var(--c-border); position: sticky; top: 44px; z-index: 40; }
.variant-tabs .container { display: flex; }
.variant-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--c-ink);
}
.variant-tab .vt-ico { font-size: 1.4rem; flex-shrink: 0; }
.variant-tab strong { font-size: .95rem; }
.variant-tab small { color: var(--c-ink-soft); font-size: .8rem; font-weight: 400; }
.variant-tab.active { border-bottom-color: var(--c-green-dark); background: var(--c-bg-soft); }
.variant-tab:hover { background: var(--c-bg-soft); }

/* Pill CTA buttons */
.pill-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-green-dark);
  color: #fff;
  border: 1px solid var(--c-green-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-orange);
  color: var(--c-ink);
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 22px rgba(245,166,35,.35);
  transition: transform .12s ease;
}
.btn-pill:hover { transform: translateY(-1px); }

/* Buttons */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--c-red); color: #fff; box-shadow: 0 8px 20px rgba(211,47,47,.28); }
.btn-primary:hover { background: var(--c-red-dark); }
.btn-outline { background: #fff; color: var(--c-ink); border: 2px solid var(--c-border); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* Hero */
.hero {
  padding: 48px 0 40px;
  background: radial-gradient(circle at 85% 20%, #fdf3dc 0%, rgba(253,243,220,0) 55%),
              radial-gradient(circle at 90% 70%, #e3f3e0 0%, rgba(227,243,224,0) 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; }
.hero-answer { background: #fff; border-left: 4px solid var(--c-green); padding: 16px 20px; border-radius: 0 10px 10px 0; font-size: 1rem; box-shadow: var(--shadow); }
.hero-img-wrap {
  position: relative;
  background: linear-gradient(160deg, #fff 0%, var(--c-bg-soft) 100%);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.hero-main-img { margin: 0 auto; }
.hero-accent-img {
  position: absolute;
  left: 18px;
  bottom: 22px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 10px 22px rgba(31,36,33,.16);
}
.price-badge {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 10px 26px rgba(31,36,33,.16);
  text-align: left;
  border: 1px solid var(--c-border);
}
.price-badge .pb-label { font-size: .72rem; color: var(--c-ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.price-badge .pb-value { font-size: 1.3rem; font-weight: 800; color: var(--c-red); }
.price-badge .pb-value span { font-size: .85rem; color: var(--c-ink-soft); font-weight: 600; }
.price-badge .pb-discount {
  display: inline-block;
  margin-top: 4px;
  background: var(--c-orange);
  color: var(--c-ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 3px 10px;
  border-radius: 8px;
}
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-green); display: inline-block; }

/* Summary box */
.summary-box {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: -10px;
}
.summary-head { background: var(--c-green-dark); color: #fff; padding: 14px 22px; font-weight: 700; font-size: .95rem; }
.summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.summary-item { padding: 18px 22px; border-bottom: 1px solid var(--c-border); border-right: 1px solid var(--c-border); }
.summary-item:nth-child(2n) { border-right: none; }
.summary-item .label { font-size: .82rem; font-weight: 800; color: var(--c-ink); margin-bottom: 6px; }
.summary-item .value { font-weight: 500; font-size: .92rem; color: var(--c-ink-soft); line-height: 1.5; }

.summary-title { margin-bottom: 16px; }
.summary-rating { padding: 22px; border-top: 1px solid var(--c-border); background: var(--c-bg-soft); }
.sr-lines { display: grid; gap: 14px; margin-bottom: 18px; }
.sr-line-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; font-size: .85rem; }
.sr-line-top > span:first-child { color: var(--c-ink); font-weight: 600; }
.sr-q { color: var(--c-green-dark); font-weight: 700; font-size: .8rem; }
.sr-bar { background: #e4e8e2; border-radius: 999px; height: 9px; overflow: hidden; }
.sr-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--c-green) 0%, var(--c-green-dark) 100%); border-radius: 999px; }
.sr-score { display: flex; align-items: center; gap: 16px; border-top: 1px dashed var(--c-border); padding-top: 16px; }
.sr-grade { font-size: 2.2rem; font-weight: 800; color: var(--c-green-dark); line-height: 1; }
.sr-stars { color: var(--c-orange); font-size: 1.15rem; letter-spacing: 2px; }
.sr-note { font-size: .76rem; color: var(--c-ink-soft); margin-top: 6px; line-height: 1.5; }

/* Callout / disclaimer */
.callout {
  background: #fff8e6;
  border: 1px solid #f1d99a;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: .92rem;
  color: var(--c-ink-soft);
  display: flex;
  gap: 10px;
}
.callout .ico { flex-shrink: 0; }

/* Problem image block */
.problem-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.problem-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.problem-points { list-style: none; margin: 18px 0; padding: 0; }
.problem-points li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .98rem; }
.problem-points li::before { content: "●"; color: var(--c-red); flex-shrink: 0; }

/* Risk section */
.risk-image-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; margin-bottom: 30px; text-align: center; }
.risk-image-card img { max-width: 100%; height: auto; border-radius: 12px; margin: 0 auto; }
.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.risk-card { background: #fff; border-left: 4px solid var(--c-red); border-radius: 10px; padding: 18px 20px; box-shadow: var(--shadow); }
.risk-card h3 { display: flex; align-items: center; gap: 8px; color: var(--c-red); font-size: 1rem; margin: 0 0 8px; }
.risk-card h3 .icon { flex-shrink: 0; }
.risk-card p { margin: 0; font-size: .92rem; color: var(--c-ink-soft); line-height: 1.5; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
.step-card { background: var(--c-bg-soft); border-radius: var(--radius); padding: 32px 22px; text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--c-green-dark); color: #fff; font-weight: 800; margin-bottom: 12px; }

/* Ingredients */
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ing-card { border: 1px solid var(--c-border); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.ing-card .ico { font-size: 1.6rem; margin-bottom: 8px; }
.ing-card .dose { font-size: .82rem; color: var(--c-green-dark); font-weight: 700; }

/* Pros/cons */
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pc-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border: 1px solid var(--c-border); }
.pc-card.pro { border-top: 4px solid var(--c-green-dark); }
.pc-card.con { border-top: 4px solid var(--c-red); }
.pc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px dashed var(--c-border); }
.pc-head .icon-circle { width: 48px; height: 48px; margin: 0; flex-shrink: 0; }
.pc-head .icon-circle .icon { width: 1.4rem; height: 1.4rem; }
.pc-head h3 { margin: 0; font-size: 1.1rem; }
.pc-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.pc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; line-height: 1.5; }
.pc-list .icon { flex-shrink: 0; margin-top: .15em; }
.pc-list .i-pro { color: var(--c-green-dark); }
.pc-list .i-con { color: var(--c-red); }

/* Comparison table */
.table-wrap { overflow-x: auto; }
table.compare { width: 100%; border-collapse: collapse; font-size: .94rem; }
table.compare th, table.compare td { padding: 14px 16px; border-bottom: 1px solid var(--c-border); text-align: left; }
table.compare th { background: var(--c-bg-soft); font-weight: 700; }
table.compare th:first-child, table.compare td:first-child { font-weight: 600; color: var(--c-ink-soft); }

/* Comparativo em cards */
.vs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vs-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--c-border); }
.vs-card-img { display: block; width: 100%; height: auto; object-fit: contain; background: var(--c-bg-soft); }
.vs-card-body { padding: 22px 24px 26px; }
.vs-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px dashed var(--c-border); }
.vs-card-name { font-size: 1.25rem; font-weight: 800; color: var(--c-ink); }
.vs-price { display: inline-block; padding: 5px 16px; border-radius: 999px; font-weight: 800; font-size: 1.05rem; color: #fff; }
.vs-price-kapseln { background: var(--c-orange); color: var(--c-ink); }
.vs-price-gel { background: var(--c-green-dark); }
.vs-card-kapseln { border-top: 4px solid var(--c-orange); }
.vs-card-gel { border-top: 4px solid var(--c-green-dark); }
.vs-list { display: grid; gap: 13px; }
.vs-list li { font-size: .95rem; color: var(--c-ink); line-height: 1.4; }
.vs-list li strong { font-weight: 700; }
.vs-list .icon { color: var(--c-green-dark); margin-right: 6px; vertical-align: -.18em; flex-shrink: 0; }
.vs-hint { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 22px; font-size: .9rem; color: var(--c-ink-soft); }
.vs-hint .icon { color: var(--c-green-dark); flex-shrink: 0; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review-card { border: 1px solid var(--c-border); border-radius: var(--radius); background: #fff; padding: 24px; box-shadow: var(--shadow); }
.review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar { width: 62px; height: 62px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.review-meta .who-name { font-weight: 700; font-size: .98rem; }
.review-meta .who-tag { font-size: .82rem; color: var(--c-ink-soft); margin-top: 2px; }
.review-stars { color: var(--c-orange); letter-spacing: 2px; margin-bottom: 10px; }
.review-card p.review-quote { font-size: .95rem; margin: 0; }
.review-disc { font-size: .76rem; color: var(--c-ink-soft); font-style: italic; margin: 16px 0 0; line-height: 1.5; }
.review-note { font-size: .78rem; color: var(--c-ink-soft); margin-top: 18px; text-align: center; }

/* Delivery */
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.delivery-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cod-box { background: var(--c-ink); color: #fff; border-radius: var(--radius); padding: 24px; margin-top: 18px; }
.cod-box h3 { color: var(--c-orange); margin-bottom: 10px; }

/* Carousel de entrega */
.carousel-title { margin-bottom: 16px; }
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 14px;
  scrollbar-color: var(--c-green) #e4e8e2;
}
.carousel::-webkit-scrollbar { height: 10px; }
.carousel::-webkit-scrollbar-track { background: #e4e8e2; border-radius: 999px; }
.carousel::-webkit-scrollbar-thumb { background: var(--c-green); border-radius: 999px; }
.carousel-item {
  flex: 0 0 clamp(260px, 44%, 380px);
  scroll-snap-align: start;
  margin: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.carousel-item img { width: 100%; height: 240px; object-fit: cover; }
.carousel-item figcaption { padding: 12px 16px; font-size: .9rem; color: var(--c-ink-soft); font-weight: 500; }
.carousel-hint { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: .82rem; color: var(--c-ink-soft); }
.carousel-hint .icon { color: var(--c-green-dark); }

/* Offers */
.offers { background: var(--c-green-dark); color: #fff; }
.offers .section-head h2 { color: #fff; }
.offers .section-head p { color: #d8ecd4; }
.quality-seal { width: 86px; height: 86px; display: block; margin: 0 auto 18px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.offer-card { background: #fff; color: var(--c-ink); border-radius: var(--radius); padding: 28px; position: relative; box-shadow: var(--shadow); }
.offer-card.highlight { border: 3px solid var(--c-orange); }
.offer-img { height: 240px; display: flex; align-items: flex-end; justify-content: center; margin: 10px 0 16px; }
.offer-img img { height: 240px; width: auto; max-width: 100%; }
.offer-tag { position: absolute; top: -14px; left: 24px; background: var(--c-orange); color: #fff; font-size: .78rem; font-weight: 800; padding: 5px 14px; border-radius: 999px; }
.offer-price { font-size: 2.2rem; font-weight: 800; margin: 10px 0 2px; }
.offer-price small { font-size: 1rem; font-weight: 600; color: var(--c-ink-soft); }
.offer-list { list-style: none; padding: 0; margin: 16px 0; font-size: .92rem; }
.offer-list li { padding-left: 22px; position: relative; margin-bottom: 8px; }
.offer-list li::before { content: "✓"; position: absolute; left: 0; color: var(--c-green-dark); font-weight: 800; }

/* FAQ */
details.faq-item {
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
details.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--c-green-dark); flex-shrink: 0; }
details.faq-item[open] summary::after { content: "–"; }
details.faq-item p { margin-top: 12px; color: var(--c-ink-soft); }

/* Final CTA */
.final-cta { text-align: center; background: var(--c-bg-soft); border-radius: var(--radius); padding: 48px 24px; }

/* Mid-page promo banner */
.promo-banner {
  background: linear-gradient(120deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 14px 32px rgba(168,36,36,.25);
}
.promo-banner h3 { margin: 0 0 4px; font-size: 1.3rem; }
.promo-banner p { margin: 0; color: #ffe3e3; }
.promo-banner .btn-outline { background: #fff; color: var(--c-red); border: none; font-weight: 800; }

/* Footer */
footer.site { background: var(--c-ink); color: #c9cdc8; font-size: .85rem; padding: 52px 0 28px; }
footer.site a { color: #e9ebe6; text-decoration: none; }
footer.site a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 32px; }
.footer-grid h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-brand { font-weight: 800; font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.footer-divider { border: none; border-top: 1px solid #343b35; margin: 24px 0; }
footer.site .disclaimer { max-width: 100%; line-height: 1.6; font-size: .78rem; color: #9aa19a; }
.footer-notes { display: grid; gap: 16px; margin-bottom: 28px; }
.footer-note { display: flex; gap: 12px; align-items: flex-start; }
.footer-note .icon { color: #e9ebe6; flex-shrink: 0; margin-top: 2px; width: 1.05em; height: 1.05em; }
.footer-note p { margin: 0; font-size: .82rem; line-height: 1.6; color: #b9beb8; }
.footer-note strong { color: #e9ebe6; }
.footer-legalbox { background: rgba(0,0,0,.28); border: 1px solid #343b35; border-radius: 10px; padding: 18px 20px; margin-bottom: 22px; }
.footer-legalbox h5 { margin: 0 0 8px; font-size: .8rem; color: #e9ebe6; text-transform: uppercase; letter-spacing: .05em; }
.footer-legalbox p { margin: 0; font-size: .8rem; line-height: 1.6; color: #9aa19a; }
.footer-editorial { font-size: .78rem; line-height: 1.6; color: #9aa19a; margin-bottom: 18px; }
.footer-editorial strong { color: #e9ebe6; }
.footer-copy { text-align: center; margin-top: 18px; font-size: .8rem; color: #9aa19a; }

/* Barra fixa: link para o ArtiZynt Test 2026 (review completo) */
.review-stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -6px 24px rgba(31, 36, 33, 0.12);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform .35s ease;
  pointer-events: none;
}
.review-stickybar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.review-stickybar p {
  margin: 0;
  font-size: .92rem;
  color: var(--c-ink);
}
.review-stickybar .btn {
  padding: 9px 18px;
  font-size: .9rem;
  white-space: nowrap;
}
.review-stickybar .review-close {
  background: none;
  border: none;
  color: var(--c-ink-soft);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
}
@media (max-width: 560px) {
  .review-stickybar { padding: 10px 12px; }
  .review-stickybar p { width: 100%; text-align: center; }
}

/* Legal / static pages */
.legal-bar { background: #fff; border-bottom: 1px solid var(--c-border); padding: 16px 0; }
.legal-bar .container { display: flex; align-items: center; justify-content: space-between; }
.legal-bar .logo { font-weight: 800; font-size: 1.2rem; color: var(--c-ink); }
.legal-bar .logo span { color: var(--c-red); }
.legal-back { font-size: .85rem; font-weight: 700; color: var(--c-green-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.legal-main { max-width: 760px; margin: 0 auto; padding: 48px 20px 80px; }
.legal-main h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 8px; }
.legal-updated { font-size: .82rem; color: var(--c-ink-soft); margin-bottom: 32px; }
.legal-main h2 { font-size: 1.2rem; font-weight: 800; margin-top: 36px; }
.legal-main h3 { font-size: 1.02rem; margin-top: 22px; }
.legal-main p, .legal-main li { color: var(--c-ink); font-size: .98rem; line-height: 1.7; }
.legal-main ul, .legal-main ol { padding-left: 22px; }
.legal-main li { margin-bottom: 8px; }
.legal-placeholder { background: #fff8e6; border: 1px solid #f1d99a; border-radius: 8px; padding: 2px 8px; font-style: italic; }
.legal-box { background: var(--c-bg-soft); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 20px 22px; margin: 22px 0; }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid, .problem-grid, .delivery-grid { grid-template-columns: 1fr; }
  .steps, .steps.steps-3, .ing-grid, .pc-grid, .review-grid, .offer-grid, .vs-cards, .risk-grid { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-item { border-right: none !important; }
  nav.tabs { gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-banner { text-align: center; justify-content: center; }
  .price-badge { position: static; margin: 14px auto 0; display: inline-block; }
}
