/* @import MUST be first */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;700&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --amber:    #E8A020;
  --amber-dk: #C8851A;
  --amber-lt: rgba(232,160,32,0.07);

  /* Paper palette — warm aged paper */
  --paper:    #F1ECD9;
  --paper-2:  #E7E0C9;

  /* Ink — deep charcoal */
  --ink:      #1A1916;
  --ink-2:    #37332B;
  --ink-3:    #696057;

  /* Dark sections — derived from amber warmth */
  --dk0:      #14110C;
  --dk1:      #1D1911;

  --mono: 'IBM Plex Mono', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', monospace;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Oswald', sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── ATTENTION BAR ──────────────────────────────────────────────────────── */

.attn-bar {
  position: relative;
  background: var(--dk0);
  border-top: 2px solid var(--amber);
  border-bottom: 1px solid rgba(232,160,32,0.16);
  padding: 0 40px;
  overflow: hidden;
  z-index: 101;
}

/* Industrial scan-line overlay */
.attn-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.14) 3px,
    rgba(0,0,0,0.14) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* Amber right-edge accent */
.attn-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--amber) 0%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}

.attn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.attn-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(232,160,32,0.55);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1);    box-shadow: 0 0 8px rgba(232,160,32,0.55); }
  50%       { opacity: 0.4; transform: scale(0.75); box-shadow: 0 0 3px rgba(232,160,32,0.15); }
}

.attn-event { color: var(--amber); font-weight: 700; }
.attn-sep   { color: rgba(255,255,255,0.18); }
.attn-txt   { color: rgba(255,255,255,0.62); }
.attn-hi    { color: var(--amber); font-weight: 700; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241,236,217,0.97);
  border-bottom: 1px solid rgba(26,25,22,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Amber gradient rule beneath nav */
.nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--amber) 0%, transparent 55%);
  opacity: 0.38;
  pointer-events: none;
}

.nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 13px;
  border-left: 3px solid var(--amber);
  padding-left: 12px;
  text-decoration: none;
}

.logo-ai {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--amber);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.75;
  opacity: 0.50;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--amber);
  padding: 11px 24px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(232,160,32,0.24);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  background: var(--amber-dk);
  box-shadow: 0 4px 18px rgba(232,160,32,0.36);
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: clamp(80px, 11vw, 156px) 40px clamp(88px, 11vw, 136px);
  overflow: hidden;
  background:
    /* Amber glow — top-right corner */
    radial-gradient(ellipse 55% 45% at 98% 2%, rgba(232,160,32,0.12) 0%, transparent 100%),
    /* Warm diffusion — top center */
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(232,160,32,0.05) 0%, transparent 60%),
    /* Horizontal paper lines — aged stock texture */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(26,25,22,0.016) 27px,
      rgba(26,25,22,0.016) 28px
    ),
    var(--paper);
}

/* Halftone dot pattern — offset print texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,25,22,0.068) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 10px 10px;
  pointer-events: none;
  z-index: 0;
}

/* Amber vertical rule — left edge, extended fade */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 72%;
  width: 3px;
  background: linear-gradient(to bottom, var(--amber) 0%, rgba(232,160,32,0.15) 75%, transparent 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
}

/* Large faint stamp number — industrial background mark */
.hero-stamp {
  position: absolute;
  top: clamp(8px, 2.5vw, 32px);
  right: clamp(16px, 3.5vw, 52px);
  font-family: var(--mono);
  font-size: clamp(90px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.042;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* ─── TARJA ──────────────────────────────────────────────────────────────── */

.hero-tarja {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.tarja-cross {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
}

.tarja-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 5px 11px 4px;
  border-radius: 1px;
  flex-shrink: 0;
  white-space: nowrap;
  border-left: 2.5px solid var(--amber);
}

.tarja-sep {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-shrink: 0;
}

.tarja-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(232,160,32,0.52) 0%, transparent 100%);
  min-width: 32px;
}

/* ─── HEADLINE ───────────────────────────────────────────────────────────── */

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6.8vw, 96px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 920px;
  margin-bottom: clamp(24px, 3vw, 42px);
}

/* ─── SUBTITLE ───────────────────────────────────────────────────────────── */

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 600px;
  margin-bottom: clamp(36px, 4.5vw, 56px);
  padding-left: 18px;
  border-left: 2px solid rgba(232,160,32,0.30);
}

/* ─── CTAs ───────────────────────────────────────────────────────────────── */

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(44px, 5.5vw, 68px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--amber);
  padding: 18px 38px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 18px rgba(232,160,32,0.30), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.btn-primary:hover {
  background: var(--amber-dk);
  box-shadow: 0 6px 28px rgba(232,160,32,0.42), inset 0 1px 0 rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(26,25,22,0.22);
  padding: 18px 32px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--amber-lt);
}

/* ─── SPEC SHEET ─────────────────────────────────────────────────────────── */

.hero-spec {
  position: relative;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(26,25,22,0.13);
  border-top: 2.5px solid var(--amber);
  border-radius: 2px;
  overflow: hidden;
  max-width: 860px;
  background: rgba(255,255,255,0.52);
  box-shadow:
    0 2px 18px rgba(26,25,22,0.07),
    0 6px 40px rgba(26,25,22,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.32);
}

/* Technical micro-label top-right */
.hero-spec::before {
  content: 'SPEC · 01';
  position: absolute;
  top: 7px;
  right: 10px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: var(--ink-3);
  opacity: 0.36;
  pointer-events: none;
  z-index: 1;
}

.spec-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px 18px;
}

.spec-divider {
  width: 1px;
  background: rgba(26,25,22,0.08);
  flex-shrink: 0;
}

.spec-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.spec-val {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.spec-val--pending {
  color: var(--amber);
  font-style: italic;
}

/* ─── VENUE PHOTO ────────────────────────────────────────────────────────── */

.hero-venue-photo {
  position: relative;
  margin-top: clamp(20px, 2.5vw, 28px);
  max-width: 860px;
  border: 1px solid rgba(26,25,22,0.12);
  border-radius: 2px;
  overflow: hidden;
}

.hero-venue-img {
  display: block;
  width: 100%;
  height: clamp(160px, 20vw, 260px);
  object-fit: cover;
  object-position: center 55%;
}

.hero-venue-caption {
  display: block;
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: rgba(241,236,217,0.96);
  border-top: 1px solid rgba(26,25,22,0.08);
}

/* ─── PHASE NOTE ─────────────────────────────────────────────────────────── */

.hero-phase-note {
  margin-top: 14px;
  padding: 11px 16px;
  border-left: 3px solid var(--amber);
  border-radius: 0 2px 2px 0;
  background: rgba(232,160,32,0.055);
  max-width: 860px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ─── DECORATIVE CORNER MARKS ────────────────────────────────────────────── */

.hero-corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.22;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
}

.hero-corner--tr { top: 32px; right: 32px; }
.hero-corner--br { bottom: 32px; right: 32px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero-stamp { display: none; }
}

@media (max-width: 768px) {
  .attn-bar { padding: 0 16px; }
  .attn-inner { font-size: 10px; gap: 7px; padding: 9px 0; }

  .nav-inner { padding: 14px 20px; }
  .logo-ai   { font-size: 28px; }
  .logo-text { font-size: 8px; }
  .nav-cta   { font-size: 10px; padding: 9px 14px; }

  .hero { padding: 52px 20px 68px; }

  .hero-sub {
    border-left: none;
    padding-left: 0;
  }

  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 16px 24px;
  }

  .hero-spec        { flex-direction: column; max-width: 100%; }
  .spec-divider     { width: 100%; height: 1px; }
  .hero-spec::before { display: none; }

  .hero-phase-note { max-width: 100%; }

  .hero-corner { display: none; }
  .tarja-rule  { display: none; }
}

@media (max-width: 420px) {
  .attn-inner { font-size: 9px; gap: 5px; }
  .hero-h1    { letter-spacing: -0.015em; }
  .hero-sub   { font-size: 15px; line-height: 1.68; }
}

/* ─── QUICK PROOF — OUTPUTS REAIS ───────────────────────────────────────── */

.quick-proof {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 40px clamp(72px, 9vw, 120px);
  overflow: hidden;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(26,25,22,0.014) 27px,
      rgba(26,25,22,0.014) 28px
    ),
    var(--paper);
}

/* Separator from hero */
.quick-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(26,25,22,0.10) 0%,
    rgba(26,25,22,0.05) 50%,
    transparent 100%
  );
}

/* Background stamp — bottom-left for collage offset */
.qp-stamp {
  position: absolute;
  bottom: clamp(8px, 2.5vw, 32px);
  left: clamp(16px, 3.5vw, 52px);
  font-family: var(--mono);
  font-size: clamp(90px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.028;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.qp-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
}

/* Tarja override for section context — tighter bottom margin */
.quick-proof .hero-tarja {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.qp-header {
  max-width: 820px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.qp-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: clamp(14px, 2vw, 20px);
}

.qp-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink-2);
  max-width: 620px;
}

/* ─── CARDS ──────────────────────────────────────────────────────────────── */

.qp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.qp-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(26,25,22,0.10);
  border-top: 2.5px solid var(--amber);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,25,22,0.07), inset 0 0 0 1px rgba(255,255,255,0.32);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.qp-card:hover {
  box-shadow: 0 6px 28px rgba(26,25,22,0.12), inset 0 0 0 1px rgba(255,255,255,0.32);
  transform: translateY(-2px);
}

.qp-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 18px 0;
}

.qp-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--paper);
  background: var(--amber);
  padding: 3px 6px 2px;
  border-radius: 1px;
  line-height: 1;
  flex-shrink: 0;
}

.qp-cat {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.qp-card-body {
  flex: 1;
  padding: 12px 18px 14px;
}

.qp-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 9px;
}

.qp-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-2);
}

/* Document-preview thumbnail frame */
.qp-thumb {
  margin: 0 18px 18px;
  border: 1px solid rgba(26,25,22,0.10);
  border-radius: 2px;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 1 / 1;
}

.qp-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: sepia(10%) saturate(0.85) contrast(1.04);
}

/* ─── SECTION CTA ────────────────────────────────────────────────────────── */

.qp-cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid rgba(26,25,22,0.08);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.15s ease;
}

.btn-ghost:hover { color: var(--amber); }

/* ─── RESPONSIVE — QUICK PROOF ───────────────────────────────────────────── */

@media (max-width: 960px) {
  .qp-grid  { grid-template-columns: repeat(2, 1fr); }
  .qp-stamp { display: none; }
}

@media (max-width: 768px) {
  .quick-proof        { padding: 48px 20px 60px; }
  .quick-proof::before { left: 20px; right: 20px; }
}

@media (max-width: 540px) {
  .qp-grid { grid-template-columns: 1fr; }
}

/* ─── INSTALLED — O QUE SERÁ INSTALADO ──────────────────────────────────── */

.installed {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 40px clamp(72px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 100% 100%, rgba(232,160,32,0.07) 0%, transparent 100%),
    var(--dk1);
}

/* Scan-line texture */
.installed::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.09) 3px,
    rgba(0,0,0,0.09) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* Amber top-edge accent */
.installed::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--amber) 0%, transparent 55%);
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
}

/* Background stamp — top-right */
.inst-stamp {
  position: absolute;
  top: clamp(8px, 2.5vw, 32px);
  right: clamp(16px, 3.5vw, 52px);
  font-family: var(--mono);
  font-size: clamp(90px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.inst-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
}

/* Dark section overrides for shared tarja classes */
.installed .hero-tarja   { margin-bottom: clamp(20px, 2.5vw, 32px); }
.installed .tarja-sep    { color: rgba(255,255,255,0.30); }

/* Header */
.inst-header {
  max-width: 820px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.inst-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #EDE8E0;
  margin-bottom: clamp(14px, 2vw, 20px);
}

.inst-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
  max-width: 620px;
}

.inst-sub--note {
  margin-top: 14px;
  font-size: clamp(14px, 1.4vw, 15px);
  color: rgba(255,255,255,0.38);
  font-style: italic;
  border-left: 2px solid rgba(232,160,32,0.22);
  padding-left: 14px;
  max-width: 560px;
}

/* ─── MANIFEST TABLE ─────────────────────────────────────────────────────── */

.inst-manifest {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: clamp(36px, 4.5vw, 52px);
  max-width: 1080px;
}

.inst-row {
  display: grid;
  grid-template-columns: 52px 220px 1fr;
  align-items: baseline;
  column-gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.14s ease;
}

.inst-row:hover { background: rgba(255,255,255,0.03); }

.inst-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  color: var(--amber);
  line-height: 1;
  padding-top: 2px;
}

.inst-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: #EDE8E0;
  line-height: 1.4;
}

.inst-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.52);
}

/* Closing note */
.inst-note {
  padding: 14px 18px;
  border-left: 3px solid var(--amber);
  border-radius: 0 2px 2px 0;
  background: rgba(232,160,32,0.07);
  max-width: 760px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.inst-note p {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

/* Dark ghost CTA */
.inst-cta-wrap {
  display: flex;
  justify-content: flex-start;
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1080px;
}

.btn-ghost-dk {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  text-decoration: none;
  transition: color 0.15s ease;
}

.btn-ghost-dk:hover { color: var(--amber); }

/* ─── RESPONSIVE — INSTALLED ─────────────────────────────────────────────── */

@media (max-width: 960px) {
  .inst-row   { grid-template-columns: 48px 180px 1fr; column-gap: 18px; }
  .inst-stamp { display: none; }
}

@media (max-width: 768px) {
  .installed  { padding: 48px 20px 60px; }
  .inst-row   {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    padding: 16px 0;
  }
  .inst-num  { grid-column: 1; grid-row: 1; }
  .inst-name { grid-column: 2; grid-row: 1; }
  .inst-desc { grid-column: 2; grid-row: 2; font-size: 14px; }
  .inst-note { max-width: 100%; }
  .inst-cta-wrap { max-width: 100%; }
}

@media (max-width: 420px) {
  .inst-name { font-size: 14px; }
  .inst-desc { font-size: 14px; }
}

/* ─── AGENDA — 8 HORAS ───────────────────────────────────────────────────── */

.agenda {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 40px clamp(72px, 9vw, 120px);
  overflow: hidden;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(26,25,22,0.016) 27px,
      rgba(26,25,22,0.016) 28px
    ),
    var(--paper);
}

/* Amber separator from dark section above */
.agenda::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--amber) 0%, transparent 50%);
  opacity: 0.55;
}

/* Background stamp — bottom-left */
.agenda-stamp {
  position: absolute;
  bottom: clamp(8px, 2.5vw, 32px);
  left: clamp(16px, 3.5vw, 52px);
  font-family: var(--mono);
  font-size: clamp(90px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.030;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.agenda-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
}

.agenda .hero-tarja { margin-bottom: clamp(20px, 2.5vw, 28px); }

.agenda-header {
  max-width: 820px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.agenda-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: clamp(14px, 2vw, 20px);
}

.agenda-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink-2);
  max-width: 620px;
}

/* ─── TIMELINE ───────────────────────────────────────────────────────────── */

.agenda-track {
  position: relative;
  max-width: 1000px;
  margin-bottom: clamp(40px, 5vw, 56px);
}

/* Vertical amber connecting line */
.agenda-track::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--amber) 0%,
    rgba(232,160,32,0.22) 78%,
    transparent 96%
  );
  z-index: 0;
}

.agenda-block {
  display: grid;
  grid-template-columns: 24px 200px 1fr;
  column-gap: 28px;
  align-items: start;
  padding-bottom: clamp(28px, 3.5vw, 44px);
}

.agenda-block--last { padding-bottom: 0; }

/* Dot marker */
.agenda-marker {
  display: flex;
  justify-content: center;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}

.agenda-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--amber);
  flex-shrink: 0;
}

.agenda-dot--final {
  background: var(--ink);
  box-shadow: 0 0 0 2px var(--ink);
}

/* Meta column (block num + time) */
.agenda-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 3px;
}

.agenda-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.agenda-time {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--ink-3);
}

/* Content column */
.agenda-title {
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  padding-top: 2px;
}

.agenda-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 12px;
}

.agenda-output {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(232,160,32,0.06);
  border-left: 2px solid rgba(232,160,32,0.42);
  border-radius: 0 2px 2px 0;
}

.agenda-output-lbl {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  flex-shrink: 0;
}

.agenda-output-txt {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.5;
}

/* Observation note */
.agenda-note {
  padding: 11px 16px;
  border-left: 3px solid var(--amber);
  border-radius: 0 2px 2px 0;
  background: rgba(232,160,32,0.05);
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.agenda-note p {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.65;
}

/* CTA */
.agenda-cta-wrap {
  display: flex;
  justify-content: flex-start;
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(26,25,22,0.08);
  max-width: 1000px;
}

/* ─── RESPONSIVE — AGENDA ────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .agenda-block { grid-template-columns: 24px 160px 1fr; column-gap: 20px; }
  .agenda-stamp { display: none; }
}

@media (max-width: 768px) {
  .agenda              { padding: 48px 20px 60px; }
  .agenda-track::before { left: 9px; }
  .agenda-block {
    grid-template-columns: 20px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    padding-bottom: clamp(24px, 3.5vw, 36px);
  }
  .agenda-marker  { grid-column: 1; grid-row: 1 / 3; }
  .agenda-meta    { grid-column: 2; grid-row: 1; }
  .agenda-content { grid-column: 2; grid-row: 2; margin-top: 10px; }
  .agenda-note    { max-width: 100%; }
  .agenda-cta-wrap { max-width: 100%; }
  .agenda-dot     { width: 8px; height: 8px; }
}

@media (max-width: 420px) {
  .agenda-title { font-size: 17px; }
  .agenda-desc  { font-size: 14px; }
}

/* ─── FASES — FASE 1 / FASE 2 ───────────────────────────────────────────── */

.fases {
  position: relative;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(232,160,32,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(232,160,32,0.04) 0%, transparent 100%),
    var(--dk0);
  overflow: hidden;
}

.fases::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--amber) 25%, var(--amber) 65%, transparent 100%);
  pointer-events: none;
}

.fases-stamp {
  position: absolute;
  top: clamp(20px, 3vw, 44px);
  right: clamp(16px, 3vw, 40px);
  font-family: var(--mono);
  font-size: clamp(80px, 11vw, 160px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.fases-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

/* Override tarja separators for dark bg */
.fases-tarja .tarja-sep { color: rgba(255,255,255,0.30); }

.fases-header {
  max-width: 800px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.fases-h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 3.6vw, 50px);
  font-style: normal;
  color: #EDE8E0;
  line-height: 1.10;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.fases-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 16px);
  color: rgba(255,255,255,0.50);
  line-height: 1.72;
  max-width: 660px;
}

/* Two-column grid */
.fases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.fases-col {
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.8vw, 40px);
  position: relative;
}

.fases-col--f1 {
  background: rgba(232,160,32,0.06);
  border-top: 3px solid var(--amber);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.fases-col--f2 {
  background: rgba(255,255,255,0.025);
  border-top: 3px solid rgba(255,255,255,0.18);
}

.fases-col-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.fases-label {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 1px;
}

.fases-label--f1 {
  background: rgba(232,160,32,0.14);
  color: var(--amber);
  border: 1px solid rgba(232,160,32,0.30);
}

.fases-label--f2 {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.14);
}

.fases-title {
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 22px);
  font-style: normal;
  color: #EDE8E0;
  line-height: 1.22;
  letter-spacing: 0;
}

.fases-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.46);
  line-height: 1.72;
  margin-bottom: 20px;
}

.fases-list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
  margin-bottom: 20px;
}

.fases-list li {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.04em;
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  line-height: 1.4;
}

.fases-list li:last-child { border-bottom: none; }

.fases-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 10px;
  top: 8px;
}

.fases-col--f2 .fases-list li::before {
  color: rgba(255,255,255,0.30);
}

.fases-note {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.66;
  padding: 10px 12px;
  border-left: 2px solid rgba(232,160,32,0.28);
  background: rgba(232,160,32,0.03);
  font-style: italic;
}

.fases-col--f2 .fases-note {
  border-left-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}

/* Closing block */
.fases-closing {
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid rgba(232,160,32,0.55);
  padding: clamp(14px, 1.8vw, 22px) clamp(20px, 2.5vw, 32px);
  background: rgba(232,160,32,0.04);
  border-radius: 1px;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.fases-closing-txt {
  font-family: var(--mono);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.03em;
  line-height: 1.55;
}

/* CTA */
.fases-cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: clamp(14px, 2vw, 22px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ─── RESPONSIVE — FASES ──────────────────────────────────────────────── */

@media (max-width: 720px) {
  .fases { padding: 48px 20px 60px; }
  .fases-grid { grid-template-columns: 1fr; }
  .fases-col--f1 {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .fases-stamp { display: none; }
}

/* ─── PERFIL — PARA QUEM É ───────────────────────────────────────────────── */

.perfil {
  position: relative;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 6vw, 96px);
  overflow: hidden;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(26,25,22,0.016) 27px,
      rgba(26,25,22,0.016) 28px
    ),
    var(--paper);
}

/* Amber separator line — coming from dark #fases above */
.perfil::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--amber) 0%, transparent 50%);
  opacity: 0.55;
}

.perfil-stamp {
  position: absolute;
  bottom: clamp(8px, 2.5vw, 32px);
  right: clamp(16px, 3.5vw, 52px);
  font-family: var(--mono);
  font-size: clamp(90px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.028;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.perfil-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.perfil-tarja { margin-bottom: clamp(20px, 2.5vw, 28px); }

.perfil-header {
  max-width: 820px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.perfil-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Two-column grid */
.perfil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(26,25,22,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.perfil-col {
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.8vw, 40px);
  position: relative;
}

.perfil-col--fit {
  background: rgba(232,160,32,0.05);
  border-top: 3px solid var(--amber);
  border-right: 1px solid rgba(26,25,22,0.08);
}

.perfil-col--nofit {
  background: var(--paper-2);
  border-top: 3px solid rgba(26,25,22,0.12);
}

.perfil-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 1px;
  margin-bottom: 12px;
  width: fit-content;
}

.perfil-label--fit {
  background: rgba(232,160,32,0.14);
  color: var(--amber-dk);
  border: 1px solid rgba(232,160,32,0.35);
}

.perfil-label--nofit {
  background: rgba(26,25,22,0.06);
  color: var(--ink-3);
  border: 1px solid rgba(26,25,22,0.12);
}

.perfil-title {
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.perfil-title--fit  { color: var(--ink); }
.perfil-title--nofit { color: var(--ink-2); }

.perfil-list {
  list-style: none;
  border-top: 1px solid rgba(26,25,22,0.07);
  padding-top: 14px;
}

.perfil-list li {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid rgba(26,25,22,0.05);
  position: relative;
  line-height: 1.45;
}

.perfil-list li:last-child { border-bottom: none; }

.perfil-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 8px;
}

.perfil-list--fit li       { color: var(--ink); }
.perfil-list--fit li::before { color: var(--amber); }

.perfil-list--nofit li       { color: var(--ink-2); }
.perfil-list--nofit li::before { color: rgba(26,25,22,0.25); }

/* Closing note strip */
.perfil-closing {
  border: 1px solid rgba(26,25,22,0.08);
  border-left: 3px solid rgba(232,160,32,0.50);
  padding: clamp(14px, 1.8vw, 22px) clamp(20px, 2.5vw, 32px);
  background: rgba(232,160,32,0.04);
  border-radius: 1px;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.perfil-closing-txt {
  font-family: var(--mono);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.03em;
  line-height: 1.60;
}

/* CTA */
.perfil-cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: clamp(14px, 2vw, 22px);
  border-top: 1px solid rgba(26,25,22,0.07);
}

/* ─── RESPONSIVE — PERFIL ─────────────────────────────────────────────── */

@media (max-width: 720px) {
  .perfil { padding: 48px 20px 60px; }
  .perfil-grid { grid-template-columns: 1fr; }
  .perfil-col--fit {
    border-right: none;
    border-bottom: 1px solid rgba(26,25,22,0.08);
  }
  .perfil-stamp { display: none; }
}

@media (max-width: 480px) {
  .fases-h2   { font-size: 24px; }
  .fases-title { font-size: 16px; }
}

/* ─── OFERTA — RESERVAR VAGA ─────────────────────────────────────────────── */

.oferta {
  position: relative;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(232,160,32,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(232,160,32,0.04) 0%, transparent 100%),
    var(--dk0);
  overflow: hidden;
}

/* Amber line separator from light #perfil above */
.oferta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--amber) 35%, var(--amber) 75%, transparent 100%);
  pointer-events: none;
}

.oferta-stamp {
  position: absolute;
  top: clamp(20px, 3vw, 44px);
  left: clamp(16px, 3vw, 40px);
  font-family: var(--mono);
  font-size: clamp(80px, 11vw, 160px);
  font-weight: 700;
  color: rgba(255,255,255,0.022);
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.oferta-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.oferta-tarja .tarja-sep { color: rgba(255,255,255,0.30); }

.oferta-header {
  max-width: 680px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.oferta-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  color: #EDE8E0;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.oferta-sub {
  font-family: var(--sans);
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(255,255,255,0.50);
  line-height: 1.72;
  max-width: 580px;
}

/* Main 2-col grid */
.oferta-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(24px, 3.5vw, 48px);
  margin-bottom: clamp(24px, 3vw, 40px);
  align-items: start;
}

/* Column label */
.oferta-col-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}

/* Override manifest margin in oferta context */
.oferta-manifest {
  margin-bottom: 0;
  max-width: none;
}

/* Pending rows — visually de-emphasized */
.oferta-row--pending .inst-num  { color: rgba(255,255,255,0.18); }
.oferta-row--pending .inst-name { color: rgba(255,255,255,0.30); font-style: italic; }
.oferta-row--pending .inst-desc { color: rgba(255,255,255,0.18); }

/* Right column */
.oferta-col--preco {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Price block */
.oferta-price-block {
  background: rgba(232,160,32,0.07);
  border: 1px solid rgba(232,160,32,0.18);
  border-top: 3px solid var(--amber);
  border-radius: 2px;
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oferta-price-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,160,32,0.65);
}

.oferta-price {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.01em;
}

.oferta-price-note {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* Logistics grid — adapted for dark context */
.oferta-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2.5px solid var(--amber);
  border-radius: 2px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.oferta-spec-item {
  padding: 13px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.oferta-spec-item:nth-child(2n) { border-right: none; }
.oferta-spec-item:nth-last-child(-n+2) { border-bottom: none; }

.oferta-spec-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

.oferta-spec-val {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  line-height: 1.4;
}

.oferta-spec-val--pending {
  color: var(--amber);
  font-style: italic;
}

/* CTA */
.oferta-btn {
  width: 100%;
  white-space: normal;
  text-align: center;
}

/* Guarantee strip */
.oferta-garantia {
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid rgba(232,160,32,0.28);
  padding: clamp(14px, 1.8vw, 20px) clamp(20px, 2.5vw, 32px);
  background: rgba(232,160,32,0.025);
  border-radius: 1px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.oferta-garantia-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,160,32,0.52);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}

.oferta-garantia-txt {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  line-height: 1.65;
  font-style: italic;
}

/* ─── RESPONSIVE — OFERTA ─────────────────────────────────────────────── */

@media (max-width: 860px) {
  .oferta-main { grid-template-columns: 1fr; }
  .oferta-col--preco { max-width: 480px; }
}

@media (max-width: 720px) {
  .oferta { padding: 48px 20px 64px; }
  .oferta-stamp { display: none; }
  .oferta-col--preco { max-width: none; }
  .oferta-garantia { flex-direction: column; gap: 8px; }
  .oferta-btn { white-space: nowrap; }
}

/* ─── AUTOR — QUEM FACILITA ───────────────────────────────────────────────── */

.autor-section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 6vw, 96px);
  background: var(--paper);
  overflow: hidden;
}

.autor-stamp {
  position: absolute;
  top: clamp(20px, 3vw, 44px);
  right: clamp(16px, 3vw, 40px);
  font-family: var(--mono);
  font-size: clamp(80px, 11vw, 160px);
  font-weight: 700;
  color: rgba(0,0,0,0.04);
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.autor-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.autor-tarja .tarja-sep { color: var(--ink-3); }

/* Main 2-col grid */
.autor-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  max-width: 920px;
  margin-top: clamp(36px, 5vw, 56px);
}

/* Photo column */
.autor-photo-wrap {
  width: clamp(200px, 22vw, 280px);
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--paper-2);
  background: var(--paper-2);
  border-radius: 2px;
}

.autor-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Content column */
.autor-name {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.autor-role {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.autor-bio {
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.autor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 28px;
}

.autor-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--paper-2);
  padding: 5px 10px;
  border-radius: 2px;
}

.autor-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,160,32,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.autor-cta:hover {
  border-color: var(--amber);
}

/* ─── RESPONSIVE — AUTOR ──────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .autor-main {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .autor-photo-col {
    display: flex;
    justify-content: flex-start;
  }
  .autor-photo-wrap {
    width: 180px;
  }
  .autor-section { padding: 48px 20px 64px; }
  .autor-stamp { display: none; }
}

/* ─── GARANTIA — DECISÃO COM SEGURANÇA ───────────────────────────────────── */

.gar-section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 6vw, 96px);
  background: var(--dk1);
  overflow: hidden;
}

.gar-stamp {
  position: absolute;
  top: clamp(20px, 3vw, 44px);
  left: clamp(16px, 3vw, 40px);
  font-family: var(--mono);
  font-size: clamp(80px, 11vw, 160px);
  font-weight: 700;
  color: rgba(255,255,255,0.022);
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.gar-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.gar-tarja .tarja-sep { color: rgba(255,255,255,0.30); }

.gar-body {
  max-width: 640px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  text-align: center;
}

.gar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  color: var(--amber);
  opacity: 0.75;
}

.gar-icon svg {
  width: 100%;
  height: 100%;
}

.gar-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  color: #EDE8E0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.gar-term {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: clamp(20px, 2.5vw, 28px);
  padding: 8px 20px;
  border: 1px solid rgba(232,160,32,0.22);
  border-top: 2px solid var(--amber);
  background: rgba(232,160,32,0.05);
  display: inline-block;
  border-radius: 2px;
}

.gar-p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.gar-cta-wrap {
  margin-top: clamp(28px, 3.5vw, 44px);
  display: flex;
  justify-content: center;
}

.gar-btn {
  width: 100%;
  max-width: 400px;
  text-align: center;
  white-space: normal;
}

/* ─── RESPONSIVE — GARANTIA ──────────────────────────────────────────────── */

@media (max-width: 720px) {
  .gar-section { padding: 48px 20px 64px; }
  .gar-stamp { display: none; }
  .gar-btn { max-width: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEÇÃO 10 — FAQ
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 6vw, 96px);
  background: var(--paper);
  overflow: hidden;
}

.faq-stamp {
  position: absolute;
  top: clamp(20px, 3vw, 44px);
  right: clamp(16px, 3vw, 40px);
  font-family: var(--mono);
  font-size: clamp(80px, 11vw, 160px);
  font-weight: 700;
  color: rgba(0,0,0,0.028);
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.faq-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.faq-tarja {
  margin-bottom: clamp(32px, 4vw, 52px);
}

.faq-header {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 52px);
}

.faq-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ─── ACCORDION LIST ──────────────────────────────────────────────────────── */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(26,25,22,0.10);
}

.faq-item:first-child {
  border-top: 1px solid rgba(26,25,22,0.10);
}

.faq-details {
  display: block;
}

.faq-details summary {
  list-style: none;
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  font-family: var(--mono);
  font-size: clamp(14px, 1.3vw, 15px);
  font-weight: 500;
  color: var(--ink);
  padding: clamp(16px, 2vw, 22px) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  letter-spacing: 0.01em;
}

.faq-q::after {
  content: '+';
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.15s ease;
}

.faq-details[open] .faq-q::after {
  content: '×';
}

.faq-a {
  padding: 0 0 clamp(16px, 2vw, 24px) 18px;
  border-left: 2px solid var(--amber);
  margin-left: 2px;
}

.faq-a p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 16px);
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ─── FOOTER + CTA ────────────────────────────────────────────────────────── */

.faq-footer {
  max-width: 720px;
  margin: clamp(36px, 4vw, 56px) auto 0;
  text-align: center;
}

.faq-note {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.faq-cta-wrap {
  display: flex;
  justify-content: center;
}

.faq-btn {
  width: 100%;
  max-width: 400px;
  text-align: center;
  white-space: normal;
}

/* ─── RESPONSIVE — FAQ ────────────────────────────────────────────────────── */

@media (max-width: 720px) {
  .faq-section { padding: 48px 20px 64px; }
  .faq-stamp { display: none; }
  .faq-btn { max-width: none; }
}
