/* Programa de Transição ISO 9001:2026 — DS2 Templum */

:root {
  --orange-dark:  #AF4022;
  --orange:       #FF5925;
  --peach:        #FDA47D;
  --peach-light:  #FDD88C;
  --cream:        #FFF4DD;
  --cream-2:      #FFFAEB;
  --yellow:        #FDB73F;
  --black:      #000000;
  --navy:       #222831;
  --navy-2:     #2D343E;
  --brown-deep: #4F251B;
  --bg:            #FFFAEB;
  --surface:       #FFFFFF;
  --surface-warm:  #FFF4DD;
  --text:      #18191B;
  --text-2:    #3F424B;
  --text-mid:  rgba(24,25,27,0.72);
  --text-soft: rgba(24,25,27,0.60);
  --border:        rgba(24,25,27,0.08);
  --border-2:      rgba(24,25,27,0.14);
  --border-3:      rgba(24,25,27,0.22);
  --success: #16A34A;
  --font-sans: "Montserrat", "Montserrat Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --r-12: 12px; --r-16: 16px; --r-20: 20px; --r-24: 24px; --r-32: 32px;
  --r-arch: 7rem;
  --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);
  --ease-soft: cubic-bezier(.22, 1, .36, 1);
}

@font-face {
  font-family: "Montserrat Fallback";
  src: local("Arial");
  font-display: swap;
  ascent-override: 91.66%;
  descent-override: 23.81%;
  line-gap-override: 0%;
  size-adjust: 104.31%;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  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 {
  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 { max-width: 100%; height: auto; display: block; }
iconify-icon { display: inline-flex; width: 1em; height: 1em; }
strong, b { font-weight: 600; }

.container { width: 100%; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.container.xl { max-width: 1300px; }
.container.md { max-width: 820px; }
.container.sm { max-width: 720px; }

.templum-logo img {
  display: block;
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* NAV */
.ds-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(34, 40, 49, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255,244,221,0.12);
}
.ds-nav-inner {
  display: flex; align-items: center; gap: 24px;
  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: rgba(255,244,221,0.82);
  transition: background .25s var(--ease-soft), color .25s var(--ease-soft);
}
.ds-nav-menu a:hover { background: rgba(255,255,255,0.08); color: var(--cream); }
.ds-nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
@media (max-width: 900px) {
  .ds-nav-menu { 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), box-shadow .35s var(--ease-soft);
  white-space: nowrap;
}
.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--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--dark { background: var(--navy); color: var(--cream); }
.btn--dark:hover { background: var(--navy-2); transform: translateY(-1px); }

.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--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);
}
.btn--arrowbox .btn-textBox {
  padding: 0 28px; height: 56px;
  font-weight: 500; font-size: 15px; 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 18px; height: 44px; font-size: 13px; border-radius: 10px; }

/* BADGES */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.badge--orange { background: rgba(255,89,37,0.10); color: var(--orange); }
.badge--orange-solid { background: var(--orange); color: var(--cream); }
.badge--navy { background: var(--navy); color: var(--cream); }
.badge--yellow { background: var(--yellow); color: var(--navy); }

/* SECTIONS */
.ds-section { padding: 88px 0; border-top: 1px solid var(--border); }
.ds-section h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  letter-spacing: -0.035em; line-height: 1.08;
  margin-bottom: 16px; max-width: 900px;
}
.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-lede {
  font-size: 17px; color: var(--text-2);
  max-width: 680px; margin-bottom: 40px; line-height: 1.6;
}
.ds-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  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; }

.prose p {
  font-size: 17px; line-height: 1.65; color: var(--text-2);
  margin-bottom: 18px; max-width: 720px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }
.quote-line {
  font-size: 18px; font-weight: 600; color: var(--text);
  line-height: 1.45; margin: 20px 0;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
}
.contrast-pair {
  display: grid; gap: 12px; margin: 28px 0;
}
.contrast-pair .line {
  font-size: 18px; font-weight: 700; line-height: 1.35;
}
.contrast-pair .line span { color: var(--orange); }

.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }

/* HERO */
.hero {
  padding: clamp(48px, 6vw, 88px) 0 clamp(64px, 8vw, 100px);
  background-color: var(--bg);
  background-image:
    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: 96px 96px, 96px 96px;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 28px; max-width: 650px; }
.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);
  width: fit-content;
}
.hero-pill .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--success); margin-left: 8px;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.15);
}
.hero-pill .text { font-size: 12px; font-weight: 500; color: var(--text-2); }
.hero-pill .text strong { font-weight: 600; color: var(--text); }

.hero-headline {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02; letter-spacing: -0.035em;
}
.hero-headline span {
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.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);
  font-weight: 500; max-width: 560px;
}
.hero-subhead strong { color: var(--text); }

.hero-bullets { display: flex; flex-direction: column; gap: 12px; }
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.45; color: var(--text); font-weight: 500;
}
.check-circle {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 999px;
  background: var(--orange); color: var(--cream);
  display: grid; place-items: center;
  margin-top: 1px;
}
.check-circle iconify-icon { font-size: 14px; }

.price-chip {
  display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-16);
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  width: fit-content;
}
.price-chip .from {
  font-size: 13px; color: var(--text-soft);
  text-decoration: line-through;
}
.price-chip .now {
  font-size: 28px; font-weight: 800; color: var(--orange);
  letter-spacing: -0.03em; line-height: 1;
}
.price-chip .note {
  font-size: 12px; font-weight: 600; color: var(--text-mid);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.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: 480px; }

.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,89,37,.12);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: 0 30px 70px -28px rgba(79,37,27,.38);
}
.hero-media picture {
  position: relative;
  display: block;
}
.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-media figcaption {
  padding: 12px 18px 14px;
  color: var(--text-mid);
  background: rgba(255,255,255,.94);
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
}
.media-frame {
  margin: 0;
  border-radius: var(--r-24);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
}
.media-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.media-frame figcaption {
  padding: 12px 16px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.media-frame--hero {
  border-radius: var(--r-arch) var(--r-arch) var(--r-24) var(--r-24);
}
.media-frame--hero img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.media-frame--agente {
  max-width: 420px;
  margin-inline: auto;
  border-radius: var(--r-32);
  box-shadow: 0 24px 48px rgba(255,89,37,0.18), var(--shadow-card);
}
.media-frame--wide { margin-top: 8px; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { max-width: none; }
  .hero-media { width: 100%; }
  .media-frame--hero { border-radius: var(--r-24); }
  .hero-actions .btn--arrowbox { width: 100%; }
  .hero-actions .btn--arrowbox .btn-textBox { flex: 1; }
}

/* QUESTIONS */
.q-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; }
.q-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-16);
  padding: 16px 20px;
  font-size: 16px; font-weight: 500; color: var(--text);
  line-height: 1.45;
  box-shadow: var(--shadow-soft);
}
.q-item::before {
  content: "“";
  color: var(--orange);
  font-weight: 700;
  margin-right: 4px;
}

/* PATH RAIL (HTML cards — indexável) */
.section-caminho { background: #F4F5F7; border-top: 1px solid var(--border); }
.path-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 8px 0 40px;
}
.path-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 8px 24px rgba(24,25,27,0.06);
  border: 1px solid rgba(24,25,27,0.04);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
}
.path-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.path-num {
  font-size: 15px; font-weight: 800; color: var(--orange);
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,89,37,0.10);
  display: grid; place-items: center;
}
.path-icon {
  width: 48px; height: 48px; border-radius: 999px;
  background: rgba(255,89,37,0.12); color: var(--orange);
  display: grid; place-items: center;
}
.path-icon iconify-icon { font-size: 26px; }
.path-copy h3 {
  font-size: 17px; margin-bottom: 2px; letter-spacing: -0.02em;
}
.path-copy p {
  font-size: 13px; color: var(--text-mid); line-height: 1.35; font-weight: 500;
}
.path-arrow { color: var(--orange); font-size: 20px; display: grid; place-items: center; }
@media (max-width: 960px) {
  .path-rail { grid-template-columns: 1fr; }
  .path-arrow { transform: rotate(90deg); }
}
@media (max-width: 480px) {
  .path-card {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "num icon arrow" "copy copy copy";
    gap: 10px 12px;
  }
  .path-num { grid-area: num; }
  .path-icon { grid-area: icon; justify-self: start; }
  .path-arrow { grid-area: arrow; }
  .path-copy { grid-area: copy; }
}

/* METHOD STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.steps--detail { margin-top: 0; }
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-24);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--orange); color: var(--cream);
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px;
}
.step-card h3 {
  font-size: 22px; letter-spacing: -0.02em;
}
.step-card .step-sub {
  font-size: 14px; font-weight: 600; color: var(--orange);
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 15px; line-height: 1.55; color: var(--text-2);
}
.step-card .turn {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px; line-height: 1.5; color: var(--text);
}
.step-card .turn strong { display: block; margin-bottom: 4px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
}

/* SYSTEM TRIO */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.trio-card {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-20);
  padding: 24px;
}
.trio-card .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--orange); color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.trio-card .icon iconify-icon { font-size: 22px; }
.trio-card h3 { font-size: 17px; margin-bottom: 8px; }
.trio-card p { font-size: 14px; line-height: 1.5; color: var(--text-2); }
.trio-card--accent {
  background: var(--surface);
  border-color: rgba(255,89,37,0.28);
  box-shadow: 0 10px 28px rgba(255,89,37,0.12);
}
@media (max-width: 800px) {
  .trio { grid-template-columns: 1fr; }
}

/* AGENTE SHOWCASE */
.section-sistema { background: var(--surface-warm); }
.agente-title {
  font-size: clamp(24px, 3vw, 36px);
  margin: 32px 0 16px;
  letter-spacing: -0.03em;
}
.agente-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  margin: 36px 0 8px;
}
.agente-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-24);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.agente-panel-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.agente-avatar {
  width: 42px; height: 42px; border-radius: 999px;
  background: rgba(255,89,37,0.12); color: var(--orange);
  display: grid; place-items: center; flex-shrink: 0;
}
.agente-avatar iconify-icon { font-size: 22px; }
.agente-panel-head strong { display: block; font-size: 15px; }
.agente-panel-head span:not(.badge) {
  display: block; font-size: 12px; color: var(--text-mid); font-weight: 500;
}
.badge--success-soft {
  background: rgba(22,163,74,0.12); color: var(--success);
  margin-left: auto;
}
.agente-progress { margin-bottom: 18px; }
.agente-progress-top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px; gap: 12px;
}
.agente-progress .pct {
  font-size: 28px; font-weight: 800; color: var(--text); letter-spacing: -0.03em;
}
.agente-progress .meta { font-size: 12px; color: var(--text-mid); font-weight: 500; }
.agente-progress .bar {
  height: 6px; border-radius: 999px; background: rgba(24,25,27,0.08); overflow: hidden;
}
.agente-progress .bar i {
  display: block; height: 100%; background: var(--orange); border-radius: 999px;
}
.agente-panel > p {
  font-size: 15px; line-height: 1.55; color: var(--text-2); margin-bottom: 16px;
}
.agente-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.agente-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.4;
}
.agente-bullets iconify-icon { color: var(--orange); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.agente-cta-mock {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px 14px;
  background: radial-gradient(120% 140% at 50% 0%, #FED7AA 0%, #FB923C 38%, #FF5925 100%);
  color: #FFF8F0; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-cta);
}
.agente-cta-mock span {
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,0.22);
  display: grid; place-items: center;
}
.agente-cta-mock iconify-icon { font-size: 18px; }
@media (max-width: 860px) {
  .agente-showcase { grid-template-columns: 1fr; }
  .media-frame--agente { max-width: 360px; }
}

.include-card--featured {
  border-color: rgba(255,89,37,0.28);
  background: linear-gradient(180deg, #fff 0%, #FFF4DD 140%);
}

/* INCLUDED GRID */
.include-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.include-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-20);
  padding: 24px;
  display: flex; gap: 16px;
  transition: border-color .3s, box-shadow .3s;
}
.include-card:hover { border-color: var(--border-2); box-shadow: var(--shadow-soft); }
.include-card .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,89,37,0.1); color: var(--orange);
  display: grid; place-items: center;
}
.include-card .icon iconify-icon { font-size: 20px; }
.include-card h3 { font-size: 16px; margin-bottom: 6px; }
.include-card p { font-size: 14px; line-height: 1.5; color: var(--text-2); }
@media (max-width: 700px) {
  .include-grid { grid-template-columns: 1fr; }
}

/* BONUS */
.bonus-block {
  background: var(--navy);
  border-radius: var(--r-32);
  padding: clamp(32px, 5vw, 48px);
  color: var(--cream);
  margin-top: 24px;
}
.bonus-block .badge { margin-bottom: 16px; }
.bonus-block h2,
.bonus-block h3 { color: var(--cream); }
.bonus-block h2 em {
  background: linear-gradient(90deg, var(--peach), var(--yellow));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bonus-block p { color: rgba(255,244,221,0.78); font-size: 16px; line-height: 1.6; max-width: 640px; }
.bonus-block .highlight {
  margin-top: 20px;
  font-size: 18px; font-weight: 700; color: var(--cream); line-height: 1.4;
}

/* FAQ / OBJECTIONS */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-16);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 17px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary iconify-icon {
  font-size: 20px; color: var(--orange); flex-shrink: 0;
  transition: transform .3s var(--ease-soft);
}
.faq-item[open] summary iconify-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-body p {
  font-size: 15px; line-height: 1.6; color: var(--text-2);
}
.faq-body .contrast-pair { margin: 8px 0 0; }

/* PRICING */
.section-pricing {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(255,89,37,0.12), transparent 60%),
    var(--bg);
}
.price-panel {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-32);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.price-panel .official {
  font-size: 15px; color: var(--text-mid); margin-bottom: 8px;
}
.price-panel .official strong {
  text-decoration: line-through;
  color: var(--text-soft);
  font-weight: 600;
}
.price-panel .big-price {
  font-size: clamp(56px, 8vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 1;
  margin: 8px 0 6px;
}
.price-panel .parcelas {
  font-size: 15px; font-weight: 500; color: var(--text-2);
  margin-bottom: 28px;
}
.price-checklist {
  text-align: left;
  display: flex; flex-direction: column; gap: 10px;
  margin: 0 auto 28px;
  max-width: 420px;
}
.price-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.4;
}
.price-checklist .check-circle {
  width: 22px; height: 22px;
}
.price-checklist .check-circle iconify-icon { font-size: 12px; }
.price-panel .mission {
  font-size: 16px; font-weight: 600; color: var(--text);
  line-height: 1.45; margin: 24px 0 28px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.price-urgency {
  margin-top: 16px;
  font-size: 13px; color: var(--text-mid); line-height: 1.5;
}

/* GUARANTEE */
.guarantee-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-24);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  max-width: 820px;
}
.guarantee-seal {
  width: 100px; height: 100px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--cream);
  display: grid; place-items: center;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(255,89,37,0.35);
}
.guarantee-seal strong {
  font-size: 28px; font-weight: 800; line-height: 1; display: block;
}
.guarantee-seal span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.guarantee-card h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; }
.guarantee-card p { font-size: 15px; color: var(--text-2); line-height: 1.55; }
@media (max-width: 640px) {
  .guarantee-card { grid-template-columns: 1fr; text-align: center; }
  .guarantee-seal { margin: 0 auto; }
}

/* FINAL */
.section-final {
  background: var(--navy);
  border-top: none;
  color: var(--cream);
}
.section-final h2 { color: var(--cream); max-width: 800px; }
.section-final h2 em {
  background: linear-gradient(90deg, var(--peach), var(--yellow));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-final .prose p { color: rgba(255,244,221,0.78); }
.section-final .tagline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--cream);
  margin: 28px 0 8px; line-height: 1.2;
}
.section-final .closer {
  font-size: 18px; font-weight: 600; color: var(--peach);
  margin-bottom: 32px;
}

/* FOOTER */
.ds-footer {
  padding: 28px 0;
  background: var(--navy-2);
  color: rgba(255,244,221,0.55);
  font-size: 13px;
  text-align: center;
}
.ds-footer strong { color: rgba(255,244,221,0.85); }

/* LOCAL BANNER */
.local-banner {
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
}
.local-banner span { opacity: 0.75; font-weight: 500; }

/* ===== V2 ADDITIONS ===== */
button.btn { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
button.btn[data-preview-disabled] {
  cursor: default;
  opacity: 1;
  pointer-events: none;
}
button.btn[data-preview-disabled] .btn-arrowBox,
button.btn[data-preview-disabled] .btn-textBox {
  background: var(--orange);
}
body.no-scroll { overflow: hidden; }
.section-warm { background: var(--surface-warm); }
.section-caminho { background: #F3F4F6; }

.hero-tagline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin: -8px 0 8px;
}
.hero-tagline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-headline {
  font-size: clamp(32px, 4.4vw, 52px) !important;
  line-height: 1.08 !important;
}
.hero-subhead--soft { font-size: 16px !important; font-weight: 400 !important; }

.split-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.split-2--center { align-items: center; }
@media (max-width: 900px) {
  .split-2 { grid-template-columns: 1fr; gap: 28px; }
}

.tile-media {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.tile-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.tile-media--phone img { aspect-ratio: 3 / 4; max-height: 560px; object-fit: contain; object-position: center; margin-inline: auto; background: transparent; }
.tile-media--portrait img { aspect-ratio: 1 / 1; object-fit: cover; object-position: top center; }
.tile-media--art {
  background: radial-gradient(circle at 50% 40%, rgba(255,89,37,.12), transparent 55%), var(--surface);
}
.tile-media--art img { aspect-ratio: 1 / 1; object-fit: contain; padding: 20px; }
.tile-media figcaption {
  padding: 12px 16px 14px;
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  border-top: 1px solid var(--border);
}

.fly-stage {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  background:
    radial-gradient(500px 280px at 70% 20%, rgba(255,89,37,.10), transparent 60%),
    linear-gradient(160deg, #fff, #FFF4DD);
  border: 1px solid var(--border);
  overflow: hidden;
}
.fly-chip {
  position: absolute;
  left: var(--x); top: var(--y);
  max-width: 240px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  font-size: 13px; font-weight: 600; color: var(--text);
  line-height: 1.35;
  animation: floaty 5.5s ease-in-out infinite;
  animation-delay: var(--d);
}
.fly-chip--accent {
  background: var(--orange); color: var(--cream); border-color: transparent;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 900px) {
  .fly-stage { min-height: auto; display: grid; gap: 10px; padding: 16px; }
  .fly-chip { position: static; max-width: none; animation: none; }
}

.q-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.q-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 18px 18px 20px;
  font-size: 15px; font-weight: 500; color: var(--text);
  line-height: 1.45;
  box-shadow: var(--shadow-soft);
}
.q-tile::before {
  content: "�";
  color: var(--orange);
  font-weight: 700;
  margin-right: 4px;
}
@media (max-width: 700px) {
  .q-grid { grid-template-columns: 1fr; }
}

.mid-head {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 20px 0 16px;
  letter-spacing: -0.025em;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.method-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 100%;
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
}
.method-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.method-heading {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; letter-spacing: -0.02em; margin-bottom: 2px;
}
.method-num {
  font-size: 16px; font-weight: 800; color: var(--orange);
  min-width: 40px; height: 40px; padding: 0 8px; border-radius: 999px;
  background: rgba(255,89,37,.12);
  display: inline-grid; place-items: center;
  flex-shrink: 0;
}
.method-tile h3 { font-size: 22px; letter-spacing: -0.02em; }
.method-short { font-size: 14px; font-weight: 600; color: var(--text-mid); }
.method-sub { font-size: 14px; font-weight: 600; color: var(--orange); }
.method-tile > p { font-size: 14px; line-height: 1.55; color: var(--text-2); }
.method-tile .turn {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 14px; line-height: 1.5; color: var(--text);
}
.method-tile .turn strong { display: block; margin-bottom: 4px; }
@media (max-width: 960px) {
  .method-grid { grid-template-columns: 1fr; }
}

.dani-role {
  font-size: 15px; font-weight: 600; color: var(--orange);
  margin: -4px 0 16px;
}
.dani-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.cert-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.cert-copy h3 { font-size: clamp(22px, 2.5vw, 28px); margin: 12px 0; }
.cert-copy p { font-size: 15px; color: var(--text-2); line-height: 1.55; margin-bottom: 10px; }
@media (max-width: 800px) {
  .cert-split { grid-template-columns: 1fr; }
}

.guarantee-art {
  width: 180px; height: 180px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 24px rgba(255,89,37,.28));
}
.guarantee-card { gap: 24px; }

/* Lead modal */
.lead-modal[hidden] { display: none !important; }
.lead-modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
}
.lead-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(24,25,27,.55);
  backdrop-filter: blur(4px);
}
.lead-modal__panel {
  position: relative; z-index: 1;
  width: min(440px, 100%);
  background: var(--surface);
  border-radius: 24px;
  padding: 28px 24px 22px;
  box-shadow: var(--shadow-lift);
}
.lead-modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  border: none; background: transparent;
  font-size: 28px; line-height: 1; color: var(--text-soft);
  cursor: pointer;
}
.lead-modal__panel h2 {
  font-size: 26px; margin-bottom: 8px; letter-spacing: -0.03em;
}
.lead-modal__sub {
  font-size: 14px; color: var(--text-2); line-height: 1.5; margin-bottom: 20px;
}
.lead-modal .field { margin-bottom: 14px; }
.lead-modal label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-mid); margin-bottom: 6px;
}
.lead-modal input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  font-family: inherit; font-size: 15px;
  background: #fff; color: var(--text);
}
.lead-modal input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,89,37,.15);
}
.lead-modal__status {
  min-height: 18px; margin-top: 10px;
  font-size: 13px; color: var(--orange); font-weight: 500;
}
.lead-modal__legal {
  margin-top: 10px;
  font-size: 11px; color: var(--text-soft); line-height: 1.4; text-align: center;
}

@media (max-width: 600px) {
  .hero-actions .btn--arrowbox,
  .ds-nav-right .btn--arrowbox,
  .price-panel .btn--arrowbox { width: 100%; }
  .hero-actions .btn--arrowbox .btn-textBox,
  .ds-nav-right .btn--arrowbox .btn-textBox,
  .price-panel .btn--arrowbox .btn-textBox {
    flex: 1;
    min-width: 0;
    height: auto;
    min-height: 56px;
    padding: 10px 14px;
    text-align: center;
    line-height: 1.3;
  }
  .ds-nav-right { width: auto; }
}

/* Ponte distinta do hero (cream+grid) + coluna de perguntas */
.section-ponte {
  background: #FFFFFF;
  border-top: 1px solid var(--border-2);
}
.perguntas-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.perguntas-col__title {
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}
.perguntas-col__fecho {
  margin: 0;
  max-width: none;
}
.perguntas-col .fly-stage {
  min-height: 320px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--r-24);
  padding: 16px;
}
.section-faq {
  background: #FFF3F0;
  border-top: 1px solid var(--border-2);
}
#garantia {
  background: #F3F4F6;
}

/* Ritmo visual das seções */
.section-white { background: #FFFFFF; }
.section-pink { background: #FFF3F0; }
.section-gray { background: #F3F4F6; }

/* Oferta centralizada, sem imagem lateral */
.section-centered-copy {
  text-align: center;
}
.section-centered-copy .ds-eyebrow {
  justify-content: center;
}
.section-centered-copy h2,
.section-centered-copy .prose,
.section-centered-copy .mid-head,
.section-centered-copy .contrast-pair {
  margin-left: auto;
  margin-right: auto;
}
.section-centered-copy h2 {
  max-width: 960px;
}
.section-centered-copy .prose {
  max-width: 900px;
}
.section-centered-copy .prose p {
  margin-left: auto;
  margin-right: auto;
}
.section-centered-copy .mid-head {
  max-width: 860px;
}
.section-centered-copy .contrast-pair {
  max-width: 680px;
  text-align: center;
}

/* Ponte: os dois títulos começam na mesma linha */
.ponte-eyebrow {
  margin-bottom: 20px;
}
.ponte-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}
.ponte-grid > div > h2,
.ponte-grid .perguntas-col__title {
  margin-top: 0;
}

/* Encerramento centralizado */
.section-final__content {
  text-align: center;
}
.section-final__content .ds-eyebrow {
  justify-content: center;
}
.section-final__content h2,
.section-final__content .prose,
.section-final__content .tagline {
  margin-left: auto;
  margin-right: auto;
}
.section-final__content .prose {
  max-width: 760px;
}
.section-final__content .prose p {
  text-align: center;
}
.section-final__content .tagline {
  max-width: 760px;
}

/* Imagem do Agente sem moldura ou faixas laterais */
.agente-showcase .tile-media {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.agente-showcase .tile-media--phone img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: initial;
  border-radius: var(--r-24);
}
.agente-showcase .tile-media figcaption {
  border: 0;
  text-align: center;
}

/* Título de preço com quebra intencional */
.pricing-title {
  margin-inline: auto;
}
.pricing-title em {
  display: block;
}

/* Certificado e garantia com o mesmo peso visual */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.trust-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 100%;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-24);
}
.trust-art {
  width: 132px;
  height: 132px;
  object-fit: contain;
}
.trust-card h2 {
  font-size: clamp(23px, 2.6vw, 31px);
  margin-bottom: 12px;
}
.trust-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}
.trust-card p + p {
  margin-top: 8px;
}

/* FAQ no padrão da página principal */
.faq-heading {
  text-align: center;
  margin-bottom: 40px;
}
.faq-label {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(175,64,34,.35);
  border-radius: 7px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.faq-heading h2 {
  margin: 18px auto 10px;
}
.faq-heading p {
  color: var(--text-2);
  font-size: 15px;
}
.section-faq .faq-list {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .ponte-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .trust-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .trust-card .ds-eyebrow { justify-content: center; }
  .trust-art { margin: 0 auto; }
}

/* Qualificação */
.qualification-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.qualification-heading .ds-eyebrow {
  justify-content: center;
}
.qualification-heading h2 {
  margin-left: auto;
  margin-right: auto;
}
.qualification-heading p {
  color: var(--text-2);
  font-size: 16px;
}
.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.qualification-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--r-24);
  background: var(--surface);
}
.qualification-card--yes {
  box-shadow: inset 0 4px 0 rgba(22,163,74,.8);
}
.qualification-card--no {
  background: #FFF8F5;
  box-shadow: inset 0 4px 0 rgba(255,89,37,.72);
}
.qualification-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #15803D;
  background: #DCFCE7;
  font-size: 25px;
}
.qualification-card--no .qualification-icon {
  color: var(--orange);
  background: #FFE6DC;
}
.qualification-card h3 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.3vw, 28px);
}
.qualification-card ul {
  display: grid;
  gap: 13px;
}
.qualification-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
}
.qualification-card li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

/* Prova institucional, sem sugerir depoimentos desta primeira turma */
.section-proof {
  color: var(--cream);
  background:
    radial-gradient(700px 420px at 50% 0%, rgba(255,89,37,.17), transparent 65%),
    var(--navy);
}
.proof-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.proof-heading .ds-eyebrow {
  justify-content: center;
  color: var(--peach);
}
.proof-heading h2 {
  margin-left: auto;
  margin-right: auto;
  color: var(--cream);
}
.proof-heading p {
  color: rgba(255,244,221,.76);
  font-size: 16px;
  line-height: 1.65;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.proof-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(255,244,221,.12);
  border-radius: var(--r-20);
  color: var(--text);
  background: var(--surface);
}
.proof-stars {
  margin-bottom: 16px;
  color: var(--yellow);
  letter-spacing: 2px;
}
.proof-card blockquote {
  flex: 1;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.65;
}
.proof-card footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.proof-card footer strong,
.proof-card footer span {
  display: block;
}
.proof-card footer strong {
  font-size: 14px;
}
.proof-card footer span {
  margin-top: 3px;
  color: var(--text-mid);
  font-size: 12px;
}
.proof-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: rgba(255,244,221,.58);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.price-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 560px;
  margin: -8px auto 28px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--orange-dark);
  background: #FFF1EB;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
.price-date iconify-icon {
  flex-shrink: 0;
  font-size: 20px;
}

/* Objetivos da imersão */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.outcome-grid li {
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.5;
  box-shadow: var(--shadow-soft);
}
.outcome-grid li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--orange);
}

/* Grade detalhada */
.grade-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}
.grade-intro h2,
.grade-intro .ds-lede {
  max-width: none;
  width: 100%;
}
.grade-intro .ds-lede {
  margin-bottom: 36px;
}
.grade-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
}
.grade-day {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.grade-day summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px 20px;
  padding: 22px 24px;
}
.grade-day summary::-webkit-details-marker { display: none; }
.grade-day__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
}
.grade-day summary strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}
.grade-day__hours {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.grade-day summary iconify-icon {
  font-size: 22px;
  color: var(--orange);
  transition: transform .3s var(--ease-soft);
}
.grade-day[open] summary iconify-icon { transform: rotate(45deg); }
.grade-day__body {
  padding: 0 24px 28px;
  display: grid;
  gap: 28px;
  overflow-x: auto;
}
.grade-schedule {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.grade-schedule caption {
  caption-side: top;
  text-align: left;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
}
.grade-schedule th,
.grade-schedule td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.grade-schedule th {
  background: #F7F7F8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}
.grade-schedule td:first-child {
  width: 160px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.grade-schedule tr:last-child td { border-bottom: 0; }
.grade-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.grade-topics article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #FFFAEB;
}
.grade-topics h4 {
  margin-bottom: 12px;
  font-size: 16px;
}
.grade-topics li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}
.grade-topics li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

@media (max-width: 900px) {
  .outcome-grid { grid-template-columns: 1fr; }
  .grade-day summary {
    grid-template-columns: 1fr auto;
  }
  .grade-day summary strong {
    grid-column: 1;
    font-size: 18px;
  }
  .grade-day__hours {
    grid-column: 1;
  }
  .grade-day summary iconify-icon {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
  .grade-topics { grid-template-columns: 1fr; }
  .grade-schedule td:first-child { width: auto; white-space: normal; }
}

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .qualification-grid { grid-template-columns: 1fr; }
}
