/* ==========================================================================
   DGL Technologies — folha de estilo única
   Paleta derivada da marca: coral #D85A30 sobre marrom-escuro #2B1005
   ========================================================================== */

:root {
  /* marca */
  --coral: #D85A30;
  --coral-400: #E4794F;
  --coral-600: #B8451F;
  --coral-dim: rgba(216, 90, 48, .14);
  --brown: #2B1005;
  --green: #7CB342;
  --green-400: #93C954;
  --green-dim: rgba(124, 179, 66, .12);

  /* superfícies */
  --bg: #100E0D;
  --bg-2: #16130F;
  --surface: #1B1714;
  --surface-2: #221D19;
  --line: #2E2723;
  --line-soft: #262019;

  /* texto */
  --text: #F7F6F2;
  --muted: #B4B2A9;
  --muted-2: #8C8880;

  /* medidas */
  --wrap: 1140px;
  --radius: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22, .8, .3, 1);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong { color: var(--text); font-weight: 650; }
em { font-style: normal; color: var(--coral-400); }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, 780px); }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--coral); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--coral-400); outline-offset: 3px; border-radius: 6px; }

/* ============================ BOTÕES ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 650; font-size: .98rem; letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 8px 26px -12px rgba(216, 90, 48, .9); }
.btn-primary:hover { background: var(--coral-400); box-shadow: 0 14px 34px -12px rgba(216, 90, 48, 1); }

.btn-green { background: var(--green); color: #10230A; box-shadow: 0 8px 26px -12px rgba(124, 179, 66, .8); }
.btn-green:hover { background: var(--green-400); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--coral); background: var(--coral-dim); }

.btn-outline { background: transparent; color: var(--text); border-color: #3B332E; }
.btn-outline:hover { border-color: var(--coral); background: var(--coral-dim); }

.btn-lg { padding: 17px 32px; font-size: 1.03rem; border-radius: 14px; }
.btn-sm { padding: 10px 18px; font-size: .9rem; border-radius: 10px; }
.btn-block { display: flex; width: 100%; }

.ico-wa { width: 20px; height: 20px; fill: currentColor; flex: none; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16, 14, 13, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); background: rgba(16, 14, 13, .95); }

.header-inner { display: flex; align-items: center; gap: 28px; padding: 14px 0; }
.brand img { height: 34px; width: auto; }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { color: var(--muted); font-size: .94rem; font-weight: 500; transition: color .18s var(--ease); }
.nav a:hover { color: var(--text); }

.header-cta { flex: none; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 40px; padding: 0;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 8px 20px 22px; background: var(--bg); border-top: 1px solid var(--line); box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .9); }
.nav-mobile a { padding: 12px 4px; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.nav-mobile .btn { margin-top: 14px; border-bottom: 0; color: #fff; }

/* ============================ HERO ============================ */
.hero { position: relative; padding: clamp(64px, 10vw, 118px) 0 clamp(40px, 6vw, 64px); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 620px; pointer-events: none;
  background:
    radial-gradient(58% 60% at 22% 22%, rgba(216, 90, 48, .20), transparent 68%),
    radial-gradient(48% 55% at 82% 8%, rgba(124, 179, 66, .09), transparent 70%);
  filter: blur(6px);
}
.hero-inner { position: relative; max-width: 900px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 15px 7px 12px; margin-bottom: 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(124, 179, 66, .6); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(124, 179, 66, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 179, 66, 0); } }

.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.75rem); font-weight: 800; letter-spacing: -.035em; }
.hero h1 .hl { color: var(--coral); }

.lead { margin-top: 24px; font-size: clamp(1.03rem, 1.7vw, 1.2rem); color: var(--muted); max-width: 66ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-note { margin-top: 18px; font-size: .88rem; color: var(--muted-2); }

.proof-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: clamp(46px, 7vw, 76px);
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.proof-bar li { display: flex; flex-direction: column; gap: 4px; padding: 24px 22px; background: var(--bg-2); }
.proof-bar strong { font-size: 1.22rem; font-weight: 700; letter-spacing: -.02em; }
.proof-bar span { font-size: .85rem; color: var(--muted-2); }

/* ============================ SEÇÕES ============================ */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

.kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 14px;
}
.section-title { font-size: clamp(1.6rem, 3.4vw, 2.5rem); letter-spacing: -.03em; max-width: 22ch; }
.section-sub { margin-top: 14px; color: var(--muted); font-size: 1.03rem; max-width: 62ch; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }

/* ---- dores ---- */
.pain-card {
  padding: 30px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.pain-card:hover { border-color: #4A3A31; transform: translateY(-3px); }
.pain-num { font-family: var(--mono); font-size: .85rem; color: var(--coral); }
.pain-card h3 { margin: 14px 0 10px; font-size: 1.15rem; }
.pain-card p { color: var(--muted); font-size: .96rem; }

/* ============================ OFERTAS ============================ */
.offer {
  position: relative;
  margin-top: 40px; padding: clamp(28px, 4vw, 46px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.offer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.offer-green::before { background: var(--green); }
.offer-coral::before { background: var(--coral); }
.offer-plain::before { background: linear-gradient(90deg, var(--coral), var(--green)); }

.offer-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 16px; }
.offer-green .offer-eyebrow { color: var(--green-400); }
.offer-coral .offer-eyebrow { color: var(--coral-400); }
.offer-plain .offer-eyebrow { color: var(--muted); }

.offer-title-row { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px; }
.offer h3 { font-size: clamp(1.75rem, 4vw, 2.7rem); letter-spacing: -.035em; }
.offer-price { font-size: clamp(1.75rem, 4vw, 2.7rem); font-weight: 700; letter-spacing: -.03em; color: var(--green-400); }
.offer-desc { margin-top: 16px; color: var(--muted); font-size: 1.03rem; max-width: 62ch; }

.offer-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.list-box { padding: 26px 24px; border-radius: var(--radius); border: 1px solid; }
.list-in { background: var(--green-dim); border-color: rgba(124, 179, 66, .38); }
.list-out { background: rgba(216, 60, 48, .07); border-color: rgba(216, 80, 70, .34); }
.list-box h4 {
  font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid;
}
.list-in h4 { color: var(--green-400); border-color: rgba(124, 179, 66, .4); }
.list-out h4 { color: #E4776C; border-color: rgba(216, 80, 70, .38); }
.list-box li { position: relative; padding: 9px 0 9px 30px; color: var(--text); font-size: .98rem; }
.list-in li::before { content: "•"; position: absolute; left: 8px; color: var(--green-400); font-size: 1.3rem; line-height: 1.2; }
.list-out li { color: var(--muted); }
.list-out li::before { content: "✕"; position: absolute; left: 6px; color: #E4776C; font-size: .9rem; }

.weeks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.weeks li { padding: 20px 22px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); }
.weeks strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.weeks span { color: var(--muted); font-size: .92rem; }

.offer-terms {
  margin-top: 14px; padding: 16px; text-align: center;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--muted); font-size: .95rem;
}
.offer .btn-block { margin-top: 22px; }

/* ---- tiers da autópsia ---- */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.tier {
  display: flex; flex-direction: column;
  padding: 28px 26px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
}
.tier-featured { position: relative; background: rgba(216, 90, 48, .10); border-color: var(--coral); }
.tier-badge {
  position: absolute; top: -12px; right: 20px;
  padding: 4px 12px; background: var(--coral); color: #fff;
  border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.tier-name { font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.tier-featured .tier-name { color: var(--coral-400); }
.tier-price { margin: 10px 0 18px; padding-bottom: 20px; font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 700; letter-spacing: -.03em; border-bottom: 1px solid var(--line); }
.tier-featured .tier-price { border-color: rgba(216, 90, 48, .45); }
.tier ul { flex: 1; }
.tier li { position: relative; padding: 9px 0 9px 26px; font-size: .98rem; }
.tier li::before { content: "•"; position: absolute; left: 6px; color: var(--coral-400); font-size: 1.3rem; line-height: 1.2; }
.tier .btn { margin-top: 22px; }

.how { margin-top: 38px; }
.how-title { font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.steps-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.steps-3 li { padding: 20px 22px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); }
.steps-3 strong { display: block; margin-bottom: 6px; }
.steps-3 span { color: var(--muted); font-size: .92rem; }

.guarantee {
  margin-top: 26px; padding: 24px; text-align: center;
  background: var(--green-dim); border: 1px solid rgba(124, 179, 66, .42); border-radius: var(--radius);
}
.guarantee-main { color: var(--green-400); font-weight: 700; font-size: 1.06rem; }
.guarantee-sub { margin-top: 8px; color: var(--muted); font-size: .95rem; }
.offer-footnote { margin-top: 22px; text-align: center; color: var(--muted-2); font-size: .87rem; }

/* ---- sob medida ---- */
.plain-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 34px; align-items: start; }
.plain-list { padding-top: 6px; }
.plain-list li { position: relative; padding: 11px 0 11px 28px; color: var(--muted); border-bottom: 1px solid var(--line-soft); font-size: .96rem; }
.plain-list li:last-child { border-bottom: 0; }
.plain-list li::before { content: "›"; position: absolute; left: 8px; color: var(--coral); font-family: var(--mono); }

/* ============================ REGRAS ============================ */
.rule { padding: 30px 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.rule h3 { display: flex; align-items: baseline; gap: 12px; font-size: 1.16rem; }
.rule-i { font-family: var(--mono); font-size: .82rem; color: var(--coral); flex: none; }
.rule p { margin-top: 12px; color: var(--muted); font-size: .97rem; }

/* ============================ AUTORIDADE ============================ */
.authority { display: grid; grid-template-columns: 340px 1fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.authority-text { margin-top: 18px; color: var(--muted); font-size: 1.03rem; }
.authority .btn { margin-top: 32px; }

/* foto do fundador */
.authority-photo { position: relative; margin: 0; }
.authority-photo::before {
  content: ""; position: absolute; inset: -14px -14px 40px 20px;
  background: linear-gradient(155deg, var(--coral), transparent 62%);
  border-radius: 30px; opacity: .45; filter: blur(22px); pointer-events: none;
}
.authority-photo img {
  position: relative;
  width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center 22%;
  border-radius: 20px; border: 1px solid var(--line);
  background: var(--surface);
}
.authority-photo figcaption {
  position: relative;
  display: flex; flex-direction: column; gap: 5px;
  margin-top: 22px; padding-left: 16px;
  border-left: 3px solid var(--coral);
}
.authority-photo figcaption strong { font-size: 1.06rem; letter-spacing: -.01em; }
.authority-photo figcaption span { color: var(--muted-2); font-size: .88rem; line-height: 1.45; }

.authority-side {
  margin-top: clamp(34px, 4vw, 52px);
  padding: 32px 30px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.side-title { font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.stack { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 34px; }
.stack li { position: relative; padding: 11px 0 11px 28px; border-bottom: 1px solid var(--line-soft); font-size: .96rem; }
.stack li::before { content: "▸"; position: absolute; left: 6px; color: var(--coral); font-size: .8rem; }
.side-note { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); color: var(--muted-2); font-size: .87rem; line-height: 1.55; }

/* ============================ FAQ ============================ */
.faq { margin-top: 38px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px; cursor: pointer; font-weight: 600; font-size: 1.04rem; list-style: none;
  transition: color .18s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 8px;
  color: var(--coral); font-size: 1.1rem; line-height: 1;
  transition: transform .22s var(--ease), background-color .22s var(--ease);
}
.faq details[open] summary::after { content: "−"; background: var(--coral-dim); }
.faq summary:hover { color: var(--coral-400); }
.faq details p { padding: 0 4px 24px; color: var(--muted); max-width: 68ch; }

/* ============================ CTA FINAL ============================ */
.cta-final { position: relative; background: var(--bg-2); border-top: 1px solid var(--line-soft); overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; inset: auto 0 -55% 0; height: 480px; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 100%, rgba(216, 90, 48, .22), transparent 70%);
}
.cta-final .wrap { position: relative; }
.cta-final h2 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); letter-spacing: -.03em; }
.cta-text { margin: 20px auto 34px; color: var(--muted); font-size: 1.05rem; max-width: 58ch; }

/* ============================ FOOTER ============================ */
.site-footer { padding: 62px 0 100px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 44px; }
.footer-brand img { height: 32px; width: auto; }
.footer-brand p { margin-top: 18px; color: var(--muted-2); font-size: .92rem; max-width: 40ch; }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.footer-h { font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.footer-nav a { display: block; padding: 6px 0; color: var(--muted); font-size: .93rem; transition: color .18s var(--ease); }
.footer-nav a:hover { color: var(--coral-400); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-soft);
  color: var(--muted-2); font-size: .85rem;
}
.mono { font-family: var(--mono); color: var(--coral); opacity: .75; }

/* ============================ BOTÃO FLUTUANTE ============================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: #25D366; color: #06331A;
  border-radius: 999px; font-weight: 700; font-size: .94rem;
  box-shadow: 0 12px 32px -10px rgba(37, 211, 102, .7);
  transform: translateY(120px); opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease), background-color .18s var(--ease);
}
.wa-float.is-visible { transform: translateY(0); opacity: 1; }
.wa-float:hover { background: #1FBE5B; }
.wa-float svg { width: 22px; height: 22px; fill: currentColor; flex: none; }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================ RESPONSIVO ============================ */
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .nav-mobile[hidden] { display: none; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .offer-lists, .tiers { grid-template-columns: 1fr; }
  .weeks, .steps-3 { grid-template-columns: 1fr; }
  .plain-grid, .authority, .footer-inner { grid-template-columns: 1fr; }
  .authority { gap: 32px; }
  .authority-photo { max-width: 320px; }
  .stack { grid-template-columns: repeat(2, 1fr); column-gap: 26px; }
  .section-title { max-width: none; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 1.95rem; }
  .proof-bar li { padding: 20px 18px; }
  .offer-title-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .footer-nav { grid-template-columns: 1fr; gap: 22px; }
  .stack { grid-template-columns: 1fr; }

  /* no celular a foto vira um cartão compacto ao lado do cargo,
     para o título da seção aparecer logo no primeiro rolar */
  .authority-photo { display: flex; align-items: center; gap: 18px; max-width: none; }
  .authority-photo::before { inset: -10px; border-radius: 22px; opacity: .35; }
  .authority-photo img { width: 118px; flex: none; border-radius: 16px; }
  .authority-photo figcaption { margin-top: 0; flex: 1; }
  .footer-bottom { justify-content: flex-start; }
  .wa-float { right: 14px; bottom: 14px; padding: 13px 18px; font-size: .9rem; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .wa-float, .hero-glow { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ============================ CASES DE SUCESSO ============================ */
.section-cases { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }

.case {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.case:hover { transform: translateY(-3px); }
.case-live:hover { border-color: rgba(124, 179, 66, .5); }
.case-exit:hover { border-color: rgba(216, 90, 48, .55); }
.case::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; }
.case-live::before { background: var(--green); }
.case-exit::before { background: var(--coral); }

.case-tag {
  display: inline-block; padding: 5px 12px; border: 1px solid; border-radius: 999px;
  font-size: .71rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.case-live .case-tag { background: var(--green-dim); color: var(--green-400); border-color: rgba(124, 179, 66, .4); }
.case-exit .case-tag { background: var(--coral-dim); color: var(--coral-400); border-color: rgba(216, 90, 48, .45); }

.case h3 { margin-top: 16px; font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -.03em; }
.case-cat { margin-top: 6px; color: var(--muted-2); font-size: .9rem; }

.case-metric {
  display: flex; flex-direction: column; gap: 5px;
  margin: 26px 0 22px; padding: 22px 0;
  border-block: 1px solid var(--line);
}
.case-metric strong { font-size: clamp(2.2rem, 5vw, 3.1rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.case-live .case-metric strong { color: var(--green-400); }
.case-exit .case-metric strong { color: var(--coral-400); }
.case-metric span { color: var(--muted); font-size: .95rem; }

.case-text { color: var(--muted); font-size: .99rem; }

.case-facts { margin-top: auto; padding-top: 26px; }
.case-facts li { display: flex; flex-direction: column; gap: 3px; padding: 13px 0; border-top: 1px solid var(--line-soft); }
.case-facts span { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.case-facts strong { font-size: .95rem; font-weight: 600; }

.cases-note {
  margin-top: 32px; padding: 24px 28px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--muted); font-size: .97rem;
}

/* ============================ AGENDAMENTO ============================ */
.section-agenda { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

.agenda-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: clamp(22px, 3vw, 38px); margin-top: 44px; align-items: start;
}

.agenda-info { padding: 30px 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.agenda-steps { counter-reset: ag; }
.agenda-steps li {
  position: relative; display: flex; flex-direction: column; gap: 4px;
  padding: 15px 0 15px 42px; border-bottom: 1px solid var(--line-soft); counter-increment: ag;
}
.agenda-steps li:last-child { border-bottom: 0; }
.agenda-steps li::before {
  content: counter(ag); position: absolute; left: 0; top: 15px;
  width: 27px; height: 27px; display: grid; place-items: center;
  background: var(--coral-dim); border: 1px solid rgba(216, 90, 48, .42); border-radius: 8px;
  color: var(--coral-400); font-family: var(--mono); font-size: .78rem; font-weight: 600;
}
.agenda-steps strong { font-size: 1rem; }
.agenda-steps span { color: var(--muted); font-size: .9rem; }
.agenda-assure { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: .9rem; }

.agenda-embed {
  display: flex; min-height: 420px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
}
/* o iframe do Calendly cobre a moldura; o fundo só aparece durante o carregamento */
.agenda-embed.has-embed { background: var(--surface); }
.agenda-embed iframe { width: 100%; border: 0; display: block; }

.agenda-fallback { margin: auto; padding: 44px 32px; text-align: center; max-width: 430px; }
.agenda-fb-title { font-size: 1.28rem; font-weight: 700; letter-spacing: -.02em; }
.agenda-fb-text { margin: 12px 0 26px; color: var(--muted); font-size: .97rem; }

/* ============================ PÁGINA 404 ============================ */
.push-right { margin-left: auto; }
.err-code { font-size: 1.1rem; margin-bottom: 20px; }
.err-title { font-size: clamp(2rem, 5vw, 3.2rem); }
.lead-center { margin-inline: auto; }
.actions-center { justify-content: center; }
.footer-slim { padding-bottom: 40px; }
.footer-bottom-slim { margin-top: 0; border-top: 0; }

/* ============ RESPONSIVO DAS SEÇÕES NOVAS ============
   Precisa vir depois das definições acima para vencer na cascata. */
@media (max-width: 980px) {
  .cases { grid-template-columns: 1fr; }
  .agenda-grid { grid-template-columns: 1fr; }
  .agenda-embed { min-height: 340px; }
}

@media (max-width: 600px) {
  .case-metric { margin: 22px 0 18px; padding: 18px 0; }
  .cases-note { padding: 20px 22px; }
  .agenda-fallback { padding: 34px 22px; }
}
