/* Variante A — DS2 (Aura + Green-Museum) — clone fiel
   Tokens DS2 inline. Font Montserrat carregada via <link> no HTML (não-bloqueante). */

:root {
  /* Brand · Orange */
  --orange-dark:  #AF4022;
  --orange:       #FF5925;
  --peach:        #FDA47D;
  --peach-light:  #FDD88C;
  --cream:        #FFF4DD;
  --cream-2:      #FFFAEB;

  /* Yellow */
  --yellow:        #FDB73F;
  --yellow-bright: #FFEE0D;

  /* Dark */
  --black:      #000000;
  --navy:       #222831;
  --navy-2:     #2D343E;
  --brown-deep: #4F251B;
  --brown-pbqp: #7F2611;

  /* Surfaces */
  --bg:            #FFFAEB;
  --surface:       #FFFFFF;
  --surface-glass: rgba(255,255,255,0.92);
  --surface-warm:  #FFF4DD;
  --surface-deep:  #1A1F26;

  /* Text */
  --text:      #18191B;
  --text-2:    #3F424B;
  --text-mid:  rgba(24,25,27,0.62);
  --text-soft: rgba(24,25,27,0.42);
  --text-faint:rgba(24,25,27,0.18);

  /* Borders */
  --border:        rgba(24,25,27,0.08);
  --border-2:      rgba(24,25,27,0.14);
  --border-3:      rgba(24,25,27,0.22);
  --border-onDark: rgba(255,244,221,0.14);

  /* Feedback */
  --success: #16A34A;
  --danger:  #DC2626;

  /* Type */
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radii */
  --r-12: 12px; --r-16: 16px; --r-20: 20px; --r-24: 24px; --r-32: 32px; --r-40: 40px;
  --r-arch: 7rem;

  /* Shadows */
  --shadow-soft: 0 1px 2px rgba(24,25,27,0.04), 0 6px 16px rgba(24,25,27,0.05);
  --shadow-card: 0 1px 2px rgba(24,25,27,0.04), 0 12px 32px rgba(24,25,27,0.08);
  --shadow-lift: 0 28px 56px -16px rgba(24,25,27,0.18), 0 12px 28px -12px rgba(24,25,27,0.10);
  --shadow-cta:  0 15px 25px -10px rgba(255,89,37,0.55), inset 0 4px 8px rgba(253,221,138,0.55), inset 0 -4px 8px rgba(255,89,37,0.55);
  --shadow-cta-hover: 0 18px 30px -10px rgba(255,89,37,0.65), inset 0 4px 8px rgba(253,221,138,0.65), inset 0 -4px 8px rgba(255,89,37,0.65);

  /* Easings */
  --ease-soft: cubic-bezier(.22, 1, .36, 1);
  --ease-snap: cubic-bezier(.4, 0, .2, 1);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
iconify-icon { display: inline-flex; width: 1em; height: 1em; }
strong, b { font-weight: 600; }

/* ============ CONTAINER ============ */
.container { width: 100%; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.container.xl { max-width: 1300px; }
.container.lg { max-width: 1180px; }
.container.md { max-width: 1024px; }
.container.sm { max-width: 760px; }

/* ============ LOGO ============ */
.templum-logo { display: inline-flex; align-items: center; gap: 6px; }
.templum-logo img { height: 24px; display: block; }

/* ============ NAV ============ */
.ds-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 235, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.ds-nav-inner { display: flex; align-items: center; gap: 32px; padding: 14px 24px; max-width: 1300px; margin: 0 auto; }
.ds-nav-menu { display: flex; gap: 4px; flex-wrap: wrap; margin: 0 auto 0 8px; }
.ds-nav-menu a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  transition: background .25s var(--ease-soft), color .25s var(--ease-soft);
}
.ds-nav-menu a:hover { background: rgba(255,89,37,0.08); color: var(--orange); }
.ds-nav-menu a.is-active { background: rgba(255,89,37,0.12); color: var(--orange); }
.ds-nav-right { display: flex; align-items: center; gap: 12px; }
@media (max-width: 900px) {
  .ds-nav-menu { display: none; }
  .ds-nav-inner { gap: 12px; }
}
@media (max-width: 600px) {
  .ds-nav-right .btn--arrowbox .btn-textBox { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 500; font-size: 14px;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease-soft), background .35s var(--ease-soft), color .35s var(--ease-soft), box-shadow .35s var(--ease-soft), border-color .35s var(--ease-soft);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.btn iconify-icon { font-size: 16px; transition: transform .55s var(--ease-soft); }
.btn:hover iconify-icon { transform: translateX(3px); }

.btn--primary {
  background: radial-gradient(120% 140% at 50% 0%, #FED7AA 0%, #FB923C 38%, #FF5925 100%);
  color: #FFF8F0;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-cta-hover); }

.btn--dark { background: var(--navy); color: var(--cream); }
.btn--dark:hover { background: var(--navy-2); transform: translateY(-1px); }

.btn--ghost { background: rgba(255,255,255,0.6); color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--surface); border-color: var(--border-3); }

.btn--ghost-onDark { background: rgba(255,244,221,0.08); color: var(--cream); border-color: rgba(255,244,221,0.20); }
.btn--ghost-onDark:hover { background: rgba(255,244,221,0.14); }

.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--xl { padding: 16px 30px; font-size: 16px; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.btn--icon {
  width: 44px; height: 44px; padding: 0;
  border-radius: 999px;
  display: inline-grid; place-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--icon:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn--icon iconify-icon { font-size: 18px; }

/* ============ BADGES ============ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; line-height: 1;
  text-transform: uppercase;
  white-space: nowrap; width: fit-content;
}
.badge--default      { background: rgba(24,25,27,0.06); color: var(--text); }
.badge--orange       { background: rgba(255,89,37,0.10); color: var(--orange); }
.badge--orange-solid { background: var(--orange); color: var(--cream); }
.badge--cream        { background: var(--cream); color: var(--text); }
.badge--navy         { background: var(--navy); color: var(--cream); }
.badge--yellow       { background: var(--yellow); color: var(--navy); }
.badge--peach        { background: var(--peach); color: var(--brown-deep); }
.badge--pbqp         { background: var(--brown-pbqp); color: var(--cream); }
.badge--success      { background: rgba(22,163,74,0.10); color: var(--success); }
.badge iconify-icon { font-size: 14px; }

/* ============ STATUS PILL ============ */
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
}
.status-dot { position: relative; width: 8px; height: 8px; border-radius: 999px; background: var(--success); }
.status-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  background: var(--success); animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ============ SECTION ============ */
.ds-section { padding: 96px 0; border-top: 1px solid var(--border); }
.ds-section h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.035em; line-height: 1.04;
  color: var(--text); margin-bottom: 12px;
}
.ds-section h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ds-section .ds-lede {
  font-size: 17px; color: var(--text-2);
  max-width: 620px; margin-bottom: 56px; line-height: 1.55;
  font-weight: 400;
}
.ds-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 16px;
}
.ds-eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }

/* ============ TYPOGRAPHY HELPERS ============ */
.bold-l { font-size: 18px; font-weight: 600; color: var(--text); line-height: 1.4; }
.bold-m { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4; }
.bold-s { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.paragraph { font-size: 17px; font-weight: 400; line-height: 1.6; color: var(--text-2); }
.reg-l    { font-size: 15px; font-weight: 400; line-height: 1.55; color: var(--text-2); }
.reg-m    { font-size: 13px; font-weight: 400; line-height: 1.5; color: var(--text-mid); }
.reg-s    { font-size: 12px; font-weight: 400; line-height: 1.5; color: var(--text-mid); }
.label-caps {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid);
}

/* ============ HERO (DS1 grid + DS2 type) ============ */
.hero {
  padding: clamp(48px, 6vw, 88px) 0 clamp(64px, 9vw, 120px);
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 500px at 60% -10%, rgba(255,89,37,0.10), transparent 60%),
    linear-gradient(to right, rgba(255, 89, 37, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 89, 37, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 96px 96px, 96px 96px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none; z-index: 1;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 18px 6px 6px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
}
.hero-pill .avatars { display: flex; }
.hero-pill .av {
  width: 28px; height: 28px; border-radius: 999px;
  border: 2px solid #fff;
  margin-right: -8px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--peach), var(--orange));
}
.hero-pill .av:nth-child(2) { background: linear-gradient(135deg, var(--peach-light), var(--peach)); color: var(--brown-deep); }
.hero-pill .av:nth-child(3) { background: var(--navy); }
.hero-pill .av:last-child { margin-right: 0; }
.hero-pill .text { font-size: 12px; font-weight: 500; color: var(--text-2); }
.hero-pill .text strong { font-weight: 600; color: var(--text); }

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 64px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 32px; max-width: 620px; }
.hero-topBlock { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.hero-bottomBlock { display: flex; flex-direction: column; gap: 28px; }
.hero-headline {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02; letter-spacing: -0.035em;
  color: var(--text);
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-subhead {
  font-size: 18px; line-height: 1.55; color: var(--text-2);
  max-width: 540px; font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-disclaimer { font-size: 12px; color: var(--text-soft); line-height: 1.5; max-width: 520px; }

/* Bullets do hero — DS1 com check-circle laranja sólido */
.hero-bullets { display: flex; flex-direction: column; gap: 14px; }
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; line-height: 1.45; color: var(--text);
  font-weight: 500;
}
.hero-bullets .check-circle {
  width: 28px; height: 28px;
  background: var(--orange); color: var(--cream);
  margin-top: 1px;
}
.hero-bullets .check-circle iconify-icon { font-size: 15px; }

/* Rating block (DS1 social proof) */
.hero-rating { display: flex; align-items: center; gap: 16px; }
.rating-avatars { display: flex; }
.rating-av {
  width: 32px; height: 32px; border-radius: 999px;
  border: 2px solid var(--cream-2); margin-right: -10px;
  background: linear-gradient(135deg, var(--peach), var(--orange));
  display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff;
}
.rating-av:nth-child(2) { background: linear-gradient(135deg, var(--peach-light), var(--peach)); color: var(--brown-deep); }
.rating-av:nth-child(3) { background: var(--navy); }
.rating-av:last-child { margin-right: 0; }
.rating-block { display: flex; flex-direction: column; gap: 4px; }
.rating-stars { display: inline-flex; align-items: center; gap: 1px; color: var(--orange); font-size: 15px; }
.rating-stars .rating-value { margin-left: 8px; font-weight: 700; color: var(--text); font-size: 14px; letter-spacing: -0.01em; }
.rating-count { font-size: 12px; font-weight: 500; color: var(--text-mid); }

.hero-imageCol { position: relative; }
.hero-imageCard {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-arch) var(--r-arch) var(--r-24) var(--r-24);
  overflow: hidden;
  background: var(--peach);
  box-shadow: var(--shadow-lift);
}
.hero-imageCard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-soft), filter 1.2s var(--ease-soft);
  filter: saturate(0.92);
}
.hero-imageCard:hover img { transform: scale(1.04); filter: saturate(1); }
.hero-imageCard::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: linear-gradient(to top, rgba(24,25,27,0.55), transparent);
}
.hero-imageCaption {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: var(--cream); z-index: 2;
}
.hero-imageCaption .label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }
.hero-imageCaption .title { font-weight: 500; font-size: 18px; line-height: 1.15; letter-spacing: -0.01em; }

/* Hero floating card (DS1: icon-box + texto) */
.hero-floatingCard {
  position: absolute; bottom: -28px; right: -36px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(24,25,27,0.10), 0 2px 8px rgba(24,25,27,0.06);
  border-radius: 14px;
  padding: 14px 22px 14px 14px;
  display: flex; gap: 14px; align-items: center;
  max-width: 290px;
  z-index: 4;
}
.hero-floatingCard .icon-box {
  width: 38px; height: 38px;
  background: var(--orange); color: var(--cream);
  border-radius: 9px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-floatingCard .icon-box iconify-icon { font-size: 20px; }
.hero-floatingCard .floating-text {
  font-weight: 500; font-size: 13px; line-height: 1.4; color: var(--text);
}
.hero-floatingCard .floating-text strong { display: block; color: var(--text); font-weight: 700; font-size: 14px; margin-bottom: 2px; }

/* Selo girando (DS1) */
.hero-seal {
  position: absolute; top: -26px; left: -32px;
  width: 130px; height: 130px;
  z-index: 5;
  animation: spin 22s linear infinite;
  filter: drop-shadow(0 10px 18px rgba(255,89,37,0.25));
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-seal:hover { animation-play-state: paused; }

/* Botão DS1 com arrow-box separado */
.btn--arrowbox {
  padding: 0;
  background: none !important;
  box-shadow: none !important;
  gap: 4px;
  border-radius: 0;
}
.btn--arrowbox .btn-arrowBox,
.btn--arrowbox .btn-textBox {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: var(--cream);
  border-radius: 12px;
  transition: background .35s var(--ease-soft), transform .35s var(--ease-soft);
}
.btn--arrowbox .btn-textBox {
  padding: 0 28px; height: 56px;
  font-weight: 500; font-size: 16px; letter-spacing: -0.005em;
  order: 2;
}
.btn--arrowbox .btn-arrowBox {
  width: 56px; height: 56px; flex-shrink: 0;
  order: 1;
}
.btn--arrowbox .btn-arrowBox iconify-icon { font-size: 22px; transition: transform .55s var(--ease-soft); }
.btn--arrowbox:hover .btn-arrowBox,
.btn--arrowbox:hover .btn-textBox { background: var(--orange-dark); }
.btn--arrowbox:hover .btn-arrowBox iconify-icon { transform: translateX(4px); }
.btn--arrowbox.btn--sm .btn-arrowBox { width: 44px; height: 44px; border-radius: 10px; }
.btn--arrowbox.btn--sm .btn-textBox { padding: 0 20px; height: 44px; font-size: 14px; border-radius: 10px; }

/* ============ STAT CARD ============ */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-20);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), border-color .45s var(--ease-soft);
  min-height: 200px;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--border-2); }
.stat-card .num {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.95; letter-spacing: -0.035em;
  color: var(--text); margin-top: auto;
}
.stat-card .num em { color: var(--orange); font-style: normal; }
.stat-card .lbl { font-size: 14px; color: var(--text-2); line-height: 1.5; font-weight: 500; }
.stat-card.--orange { background: var(--orange); border: 0; color: var(--cream); }
.stat-card.--orange .num, .stat-card.--orange .lbl, .stat-card.--orange .label-caps { color: var(--cream); }
.stat-card.--orange .num em { color: var(--navy); }
.stat-card.--orange .lbl { opacity: 0.92; }
.stat-card.--orange .label-caps { opacity: 0.85; }
.stat-card.--navy { background: var(--navy); border: 0; color: var(--cream); }
.stat-card.--navy .num, .stat-card.--navy .lbl { color: var(--cream); }
.stat-card.--navy .num em { color: var(--orange); }
.stat-card.--navy .lbl { opacity: 0.85; }
.stat-card.--navy .label-caps { color: var(--peach-light); }

/* ============ STEP CARD ============ */
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-20);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
  transition: transform .5s var(--ease-soft), border-color .5s var(--ease-soft);
}
.step-card:hover { transform: translateY(-3px); border-color: var(--orange); }
.step-card .step-num {
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,89,37,0.10); color: var(--orange);
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
}
.step-card .step-num iconify-icon { font-size: 20px; }
.step-card .step-title {
  font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text);
}
.step-card .step-text {
  font-size: 15px; color: var(--text-2); line-height: 1.55; font-weight: 400;
}
.step-card ul { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.step-card ul li { position: relative; padding-left: 16px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.step-card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 999px; background: var(--orange); }
.step-card .card-cta {
  margin-top: auto; padding-top: 6px;
  font-weight: 500; color: var(--orange); font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.step-card .card-cta iconify-icon { transition: transform .5s var(--ease-soft); }
.step-card .card-cta:hover iconify-icon { transform: translateX(4px); }

/* ============ CHECKLIST ============ */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--text); font-weight: 500; }
.check-item strong { font-weight: 700; }
.check-circle, .check-cross {
  width: 26px; height: 26px; min-width: 26px;
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0; margin-top: 1px;
}
.check-circle { background: rgba(255,89,37,0.10); color: var(--orange); }
.check-cross  { background: rgba(220,38,38,0.10); color: var(--danger); }
.check-circle iconify-icon, .check-cross iconify-icon { font-size: 15px; }

/* ============ IMAGE CARD ============ */
.image-card {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: var(--r-32);
  overflow: hidden;
  background: var(--peach);
  box-shadow: var(--shadow-lift);
}
.image-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-soft), filter 1.2s var(--ease-soft);
  filter: saturate(0.92);
}
.image-card:hover img { transform: scale(1.04); filter: saturate(1); }
.image-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: linear-gradient(to top, rgba(24,25,27,0.55), transparent);
}
.image-card .caption {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2;
  color: var(--cream); display: flex; flex-direction: column; gap: 4px;
}
.image-card .caption .label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }
.image-card .caption .title { font-weight: 500; font-size: 22px; line-height: 1.1; letter-spacing: -0.02em; }
.image-card .floating-badge { position: absolute; top: 22px; left: 22px; z-index: 2; }

/* ============ CTA DARK ============ */
.cta-dark {
  position: relative;
  background: var(--surface-deep);
  color: var(--cream);
  border-radius: var(--r-32);
  padding: 56px;
  overflow: hidden;
}
.cta-dark::before {
  content: ""; position: absolute;
  width: 360px; height: 360px;
  right: -100px; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,89,37,0.30), transparent 60%);
  pointer-events: none;
}
.cta-dark > * { position: relative; z-index: 1; }
.cta-dark h2, .cta-dark h3 {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  color: var(--cream); line-height: 1.05; letter-spacing: -0.03em;
  max-width: 720px; margin-bottom: 20px;
}
.cta-dark h2 em, .cta-dark h3 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--peach));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-dark p { color: rgba(255,244,221,0.78); max-width: 620px; margin-bottom: 24px; line-height: 1.6; font-weight: 400; font-size: 16px; }
.cta-dark .check-circle { background: rgba(255,89,37,0.20); color: var(--orange); }
.cta-dark .check-item { color: var(--cream); }
.cta-dark .reason {
  background: rgba(255,244,221,0.06);
  border: 1px solid var(--border-onDark);
  border-radius: var(--r-16);
  padding: 20px;
  max-width: 720px;
  margin-bottom: 24px;
}
.cta-dark .reason strong { display: block; margin-bottom: 8px; color: var(--cream); }

/* ============ FAQ ============ */
.faq-list {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-24); padding: 4px 28px;
  max-width: 900px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 0;
  font-family: var(--font-sans); font-weight: 600;
  font-size: 17px; line-height: 1.35; letter-spacing: -0.015em;
  color: var(--text); text-align: left; cursor: pointer; list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ""; }
.faq-question iconify-icon { font-size: 22px; color: var(--text-mid); transition: transform .3s var(--ease-soft); flex-shrink: 0; }
.faq-item[open] .faq-question iconify-icon { transform: rotate(180deg); color: var(--orange); }
.faq-answer { padding: 0 0 22px 0; font-size: 15px; color: var(--text-mid); line-height: 1.6; max-width: 760px; font-weight: 400; }
.faq-answer p + p { margin-top: 12px; }

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 36s linear infinite;
  align-items: center;
}
.marquee-track span {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 22px; letter-spacing: -0.02em; line-height: 1;
  color: var(--text); white-space: nowrap;
}
.marquee-track span.--orange { color: var(--orange); }
.marquee-track .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--orange); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ LOGOS MARQUEE ============ */
.logos-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 24px 0;
}
.logos-track { display: flex; gap: 56px; width: max-content; animation: marquee 50s linear infinite; align-items: center; }
.logos-track img { height: 44px; max-width: 140px; object-fit: contain; filter: grayscale(1) opacity(0.5); transition: filter .35s var(--ease-soft); }
.logos-track img:hover { filter: grayscale(0) opacity(1); }

/* ============ TESTIMONIAL CARD ============ */
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-24);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease-soft), border-color .45s var(--ease-soft);
}
.testi-card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.testi-video { aspect-ratio: 16/9; background: var(--navy); position: relative; }
.testi-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.testi-body { padding: 24px 28px 28px; }
.testi-body .badge { margin-bottom: 12px; }
.testi-body blockquote {
  font-weight: 600; font-size: 18px; line-height: 1.4;
  color: var(--text); letter-spacing: -0.015em; margin-bottom: 12px;
}
.testi-body cite { font-style: normal; color: var(--text-mid); font-size: 13px; }

/* ============ FORM ============ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-32);
  padding: clamp(28px, 4vw, 48px);
  max-width: 760px; margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.form-wrap h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 12px; }
.form-wrap .ds-lede { margin-bottom: 32px; max-width: none; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px; font-weight: 500; color: var(--text-2);
}
.form-field input, .form-field select {
  font-family: var(--font-sans); font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-12);
  background: var(--surface);
  color: var(--text);
  transition: border-color .2s var(--ease-snap), box-shadow .2s var(--ease-snap);
}
.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,89,37,0.15);
}
.form-field.has-error input, .form-field.has-error select { border-color: var(--danger); }
.form-field .field-error { display: none; font-size: 12px; color: var(--danger); }
.form-field.has-error .field-error { display: block; }
.form-status { grid-column: 1 / -1; font-size: 14px; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.form-disclaimer { grid-column: 1 / -1; font-size: 12px; color: var(--text-soft); text-align: center; }
.form button[type="submit"] { grid-column: 1 / -1; justify-content: center; width: 100%; }
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }

/* ============ SECTION-SPECIFIC ============ */
.section-dor { background: var(--cream); border-top-color: transparent; }
.section-dark {
  position: relative;
  background-color: var(--surface-deep);
  background-image:
    radial-gradient(700px 400px at 80% 20%, rgba(255,89,37,0.22), transparent 60%),
    radial-gradient(500px 320px at 10% 80%, rgba(255,89,37,0.12), transparent 60%),
    linear-gradient(to right, rgba(255,244,221,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,244,221,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 96px 96px, 96px 96px;
  border-top-color: transparent;
  color: var(--cream);
  overflow: hidden;
}
.section-dark > .container { position: relative; z-index: 2; }
.section-dark h2 { color: var(--cream); }
.section-dark h2 em {
  background: linear-gradient(90deg, var(--orange), var(--peach));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-dark .ds-lede { color: rgba(255,244,221,0.85); }
.section-dark .ds-eyebrow { color: var(--peach); }

/* Stats inline em fundo escuro */
.dark-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-onDark);
  border-bottom: 1px solid var(--border-onDark);
  padding: 36px 0; margin: 48px auto 40px;
  max-width: 820px;
}
.dark-stat { padding: 0 32px; border-right: 1px solid var(--border-onDark); text-align: center; }
.dark-stat:first-child { padding-left: 0; }
.dark-stat:last-child  { padding-right: 0; border-right: 0; }
.dark-stat .num {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px); line-height: 1;
  letter-spacing: -0.035em; color: var(--cream);
}
.dark-stat .num em { color: var(--orange); font-style: normal; }
.dark-stat .lbl {
  font-size: 12px; font-weight: 600; color: var(--peach-light);
  text-transform: uppercase; letter-spacing: 0.10em; margin-top: 10px;
}
@media (max-width: 600px) {
  .dark-stats { grid-template-columns: 1fr; padding: 24px 0; max-width: 320px; }
  .dark-stat { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--border-onDark); }
  .dark-stat:last-child { border-bottom: 0; }
}

/* Marquee em fundo escuro */
.marquee--dark {
  border-top: 1px solid var(--border-onDark);
  border-bottom: 1px solid var(--border-onDark);
  background: rgba(255,244,221,0.03);
  position: relative; z-index: 2;
}
.marquee--dark .marquee-track span { color: var(--cream); }
.marquee--dark .marquee-track span.--orange { color: var(--peach); }
.marquee--dark .marquee-track .dot { background: var(--peach); }

.section-lead { background: var(--cream); border-top-color: transparent; scroll-margin-top: 80px; }
.section-final { background: var(--bg); }

/* ============ FOOTER ============ */
footer { background: var(--navy); color: rgba(255,244,221,0.7); padding: 64px 0 24px; }
footer .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; margin-bottom: 40px; }
footer .footer-brand img { height: 22px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.92; }
footer .footer-brand p { font-size: 13px; max-width: 420px; line-height: 1.55; }
footer .footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
footer .footer-links a { color: rgba(255,244,221,0.7); font-size: 13px; transition: color .25s var(--ease-soft); }
footer .footer-links a:hover { color: var(--cream); }
footer .footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,244,221,0.08); font-size: 12px; color: rgba(255,244,221,0.5); }
@media (max-width: 700px) { footer .footer-grid { grid-template-columns: 1fr; } }

/* ============ GRID UTILITIES ============ */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px)  {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}

.split-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 960px) { .split-grid { grid-template-columns: 1fr; } }

.text-center { text-align: center; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { padding: 56px 0 88px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-imageCol { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-floatingCard { right: -16px; bottom: -20px; }
  .hero-seal { top: -20px; left: -16px; width: 100px; height: 100px; }
  .cta-dark { padding: 40px 32px; }
  .form-wrap { padding: 32px 28px; }
  .testi-body { padding: 20px 24px 24px; }
}

@media (max-width: 768px) {
  .ds-section { padding: 56px 0; }
  .container { padding-left: 20px; padding-right: 20px; }
  .ds-nav-inner { padding: 12px 20px; }

  .hero { padding: 28px 0 72px; }
  .hero-headline { font-size: clamp(34px, 8vw, 46px); line-height: 1.05; }
  .hero-subhead { font-size: 16px; }
  .hero-content { gap: 24px; }
  .hero-topBlock { gap: 20px; }
  .hero-bullets li { font-size: 15px; gap: 12px; }
  .hero-bullets .check-circle { width: 24px; height: 24px; }
  .hero-bullets .check-circle iconify-icon { font-size: 13px; }
  .hero-pill { padding: 4px 14px 4px 4px; }
  .hero-pill .text { font-size: 11px; }
  .hero-pill .av { width: 24px; height: 24px; font-size: 10px; }

  .hero-floatingCard { right: 12px; bottom: -24px; max-width: 260px; }
  .hero-seal { width: 88px; height: 88px; left: -12px; top: -16px; }

  .marquee-track span { font-size: 16px; }
  .marquee-track { gap: 32px; }
  .cta-dark { padding: 32px 24px; border-radius: 24px; }
  .cta-dark h2, .cta-dark h3 { font-size: clamp(24px, 6vw, 32px); }
  .form-wrap { padding: 28px 22px; border-radius: 24px; }
  .form-wrap h2 { font-size: clamp(24px, 6vw, 32px); }
  .testi-body blockquote { font-size: 16px; }

  /* CTAs: arrow-box full width em mobile pra não cortar */
  .btn--arrowbox { width: 100%; max-width: 360px; }
  .btn--arrowbox .btn-textBox { flex: 1; padding: 0 18px; height: 52px; font-size: 15px; }
  .btn--arrowbox .btn-arrowBox { width: 52px; height: 52px; flex-shrink: 0; }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; max-width: 360px; justify-content: center; }
  .hero-rating { flex-direction: column; align-items: flex-start; gap: 12px; }

  .step-card { padding: 22px; min-height: auto; gap: 12px; }
  .step-card .step-title { font-size: 19px; }
  .step-card .step-text { font-size: 14px; }
  .stat-card { padding: 22px; min-height: auto; }
  .testi-video iframe { /* keep aspect */ }
}

@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .ds-nav-inner { padding: 10px 16px; gap: 10px; }
  .templum-logo img { height: 22px; }

  .hero { padding: 20px 0 60px; }
  .hero-headline { font-size: clamp(30px, 8.5vw, 38px); }
  .hero-subhead { font-size: 15px; }
  .hero-content { gap: 20px; }
  .hero-disclaimer { font-size: 11px; }

  .hero-floatingCard { right: 4px; bottom: -22px; max-width: 240px; padding: 12px 16px 12px 12px; }
  .hero-floatingCard .floating-text { font-size: 12px; }
  .hero-floatingCard .floating-text strong { font-size: 13px; }
  .hero-floatingCard .icon-box { width: 32px; height: 32px; }
  .hero-floatingCard .icon-box iconify-icon { font-size: 18px; }
  .hero-seal { width: 76px; height: 76px; left: -8px; top: -14px; }

  .ds-section { padding: 48px 0; }
  .ds-section h2 { font-size: clamp(26px, 7vw, 36px); margin-bottom: 10px; }
  .ds-section .ds-lede { font-size: 15px; margin-bottom: 36px; }
  .ds-eyebrow { font-size: 10px; letter-spacing: 0.14em; margin-bottom: 12px; }

  .cta-dark { padding: 28px 20px; border-radius: 20px; }
  .cta-dark p { font-size: 15px; }
  .form-wrap { padding: 24px 18px; border-radius: 20px; }
  .form-wrap h2 { font-size: clamp(22px, 6.5vw, 28px); }
  .testi-body { padding: 18px 20px 22px; }
  .testi-body blockquote { font-size: 15px; }
  .image-card { aspect-ratio: 4/3; border-radius: 24px; }
  .image-card .caption .title { font-size: 18px; }
  .image-card .floating-badge { top: 14px; left: 14px; }

  .hero-imageCard { border-radius: 5rem 5rem 18px 18px; }

  .marquee { padding: 12px 0; }
  .marquee-track span { font-size: 14px; }
  .marquee-track .dot { width: 4px; height: 4px; }

  footer { padding: 48px 0 20px; }
}

@media (max-width: 360px) {
  .hero-headline { font-size: 28px; }
  .container { padding-left: 14px; padding-right: 14px; }
}
