/* ============================================================
   O BRIEFING DA VIDA — Desktop component styles
   (trimmed: browser chrome, hero variants v1–v4, topic/check/buy
   grids, CTA cards, canvas/view-toggle removed — none are in the
   live page. Only the components the page actually renders remain.)
   Uses the same tokens from styles.css.
   ============================================================ */

/* ---------- Nav CTA pill ---------- */
.d-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange-deep);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
  cursor: pointer;
  box-shadow:
    0 0 0 1px var(--orange-neon) inset,
    0 4px 16px rgba(209, 115, 67, 0.3),
    0 0 24px rgba(255, 176, 117, 0.2);
  transition: all 0.15s;
}
.d-nav-cta:hover { background: var(--orange-neon); color: #1a0d05; }

/* ---------- Hero headline ---------- */
.d-headline {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 92px;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 24px 0 28px;
}
.d-headline .line { display: block; }
.d-headline .line.accent { color: var(--orange-neon); text-shadow: 0 0 24px var(--orange-glow); }
.d-headline .line.accent.teal { color: var(--teal-bright); text-shadow: 0 0 24px var(--teal-glow); }

.d-sub {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 32px;
}
.d-sub b { color: var(--ink); font-weight: 700; }

/* ---------- Buttons ---------- */
.d-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
  white-space: nowrap;
}
.d-btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange-deep);
  box-shadow:
    0 0 0 1px var(--orange-neon) inset,
    0 6px 24px rgba(209, 115, 67, 0.35),
    0 0 32px rgba(255, 176, 117, 0.22);
}
.d-btn-primary:hover { background: var(--orange-neon); color: #1a0d05; }
.d-btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.d-btn-secondary:hover {
  border-color: var(--teal-bright);
  color: var(--teal-bright);
  box-shadow: 0 0 16px var(--teal-glow);
}
.d-btn-full { width: 100%; padding: 16px 22px; font-size: 15px; }

/* ---------- Section title / sub / eyebrow ---------- */
.d-section-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 16px 0 24px;
}
.d-section-title .line-accent {
  display: block;
  color: var(--orange-neon);
  text-shadow: 0 0 24px var(--orange-glow);
}
.d-section-title .line-accent.teal { color: var(--teal-bright); text-shadow: 0 0 24px var(--teal-glow); }

.d-section-sub {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 0 28px;
}
.d-section-sub b { color: var(--ink); font-weight: 700; }

.d-eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-neon);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.d-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}
.d-eyebrow.teal { color: var(--teal-bright); }
.d-eyebrow.teal::before { box-shadow: 0 0 6px var(--teal-glow); }

/* ============================================================
   Pain card
   ============================================================ */
.d-pain-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.d-pain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(47, 123, 134, 0.12), transparent 50%);
  pointer-events: none;
}
.d-pain-card .x-list { gap: 22px; position: relative; }
.d-pain-card .x-list .item .mark {
  width: 28px; height: 28px; flex: 0 0 28px;
}
.d-pain-card .x-list .item .text { font-size: 17px; }
.d-pain-punch {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  position: relative;
}
.d-pain-punch span {
  display: block;
  color: var(--teal-bright);
  text-shadow: 0 0 14px var(--teal-glow);
  margin-top: 2px;
}

/* ============================================================
   Author / Endorsement section tints
   ============================================================ */
.d-author-section {
  background: linear-gradient(180deg, transparent, rgba(20, 17, 15, 0.5), transparent);
}
.d-endorsement {
  background: linear-gradient(180deg, transparent, rgba(20, 17, 15, 0.4));
}

/* Endorsement quote card */
.d-quote-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 60px 48px;
  position: relative;
}
.d-quote-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--teal-bright), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
}
.d-lq {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 200px;
  line-height: 0;
  color: var(--teal-bright);
  position: absolute;
  top: 92px;
  left: 30px;
  opacity: 0.3;
  text-shadow: 0 0 24px var(--teal-glow);
}
.d-quote-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding-left: 44px;
}
.d-quote-body b { color: var(--orange-neon); font-weight: 700; text-shadow: 0 0 8px var(--orange-glow); }
.d-quote-author {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.d-quote-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  flex: 0 0 64px;
}
.d-quote-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.05);
}
.d-quote-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.d-quote-role {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-top: 6px;
  opacity: 0.9;
}

/* ============================================================
   FAQ
   ============================================================ */
.d-faq-section {
  background: linear-gradient(180deg, transparent, rgba(20, 17, 15, 0.4));
}
.d-faq { display: flex; flex-direction: column; }
.d-faq-item { border-bottom: 1px solid var(--hairline); }
.d-faq-item:first-child { border-top: 1px solid var(--hairline); }
.d-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.d-faq-q .chev {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.d-faq-item.open .d-faq-q .chev {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange-neon);
  box-shadow: 0 0 16px var(--orange-glow);
  transform: rotate(45deg);
}
.d-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  padding: 0;
}
.d-faq-item.open .d-faq-a { max-height: 500px; padding: 0 0 22px; }

/* ============================================================
   Footer
   ============================================================ */
.d-footer {
  background: var(--bg-deep);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.d-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.d-footer-brand p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 20px 0;
  max-width: 320px;
}
.d-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.d-footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s;
}
.d-footer-socials a:hover {
  color: var(--teal-bright);
  border-color: var(--teal-bright);
  box-shadow: 0 0 14px var(--teal-glow);
}
.d-footer-eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-neon);
  display: block;
  margin-bottom: 18px;
}
.d-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.d-footer-col ul li {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: color 0.15s;
}
.d-footer-col ul li:hover { color: var(--ink); }
.d-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
