/* ================================================================
   HUBSTATION — Editorial Premium
   Marca forte. Presença real. Sofisticação autoral.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── TOKENS ── */
:root {
  --bg:      #F8F7F4;
  --bg-2:    #EFEDE8;
  --bg-inv:  #0E0E0E;
  --ink:     #0E0E0E;
  --ink-2:   #4A4A4A;
  --ink-3:   #9A9A9A;
  --red:     #F44336;
  --red-2:   rgba(244,67,54,0.10);
  --gold:    #B89B6A;
  --rule:    rgba(14,14,14,0.12);
  --rule-2:  rgba(14,14,14,0.06);

  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2:  cubic-bezier(0.4, 0, 0.2, 1);
  --max:     1280px;
  --sp:      clamp(80px, 10vw, 140px);
  --sp-sm:   clamp(48px, 6vw, 80px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--fb); border: none; background: none; }

/* ── LAYOUT ── */
.wrap  { max-width: var(--max); margin: 0 auto; padding: 0 clamp(24px,5vw,72px); }
.sec   { padding: var(--sp) 0; }
.sec-sm{ padding: var(--sp-sm) 0; }
.inv   { background: var(--bg-inv); color: #fff; }
.ruled { border-top: 1px solid var(--rule); }
.ruled-b { border-bottom: 1px solid var(--rule); }

/* ── TYPOGRAPHY SCALE ── */
.t-super {
  font-family: var(--fd);
  font-size: clamp(56px, 8.5vw, 130px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.t-super em { font-style: italic; font-weight: 300; }

.t-display {
  font-family: var(--fd);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.t-display em { font-style: italic; font-weight: 300; color: var(--red); }

.t-headline {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.t-headline em { font-style: italic; font-weight: 400; }

.t-title {
  font-family: var(--fd);
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.t-quote {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.t-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.t-label-red { color: var(--red); }

.t-body { font-size: clamp(15px,1.5vw,17px); line-height: 1.80; color: var(--ink-2); }
.t-body-sm { font-size: 14px; line-height: 1.72; color: var(--ink-2); }
.t-small { font-size: 12px; color: var(--ink-3); letter-spacing: 0.02em; }

/* ── RULE ACCENT ── */
.accent-rule {
  display: block;
  width: 32px; height: 2px;
  background: var(--red);
  margin: 20px 0;
}
.accent-rule-lg {
  display: block;
  width: 64px; height: 1px;
  background: var(--red);
  margin: 32px 0;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px clamp(24px,5vw,72px);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 18px clamp(24px,5vw,72px);
  background: rgba(248,247,244,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img, .nav-logo svg {
  height: 38px; width: auto; display: block;
  color: var(--ink);
  transition: opacity 0.2s;
}
.nav-logo:hover img, .nav-logo:hover svg { opacity: 0.7; }
/* Logo horizontal — nos footer */
.nav-links {
  display: flex; align-items: center; gap: 40px;
}
.nav-links a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px; background: var(--red);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--ink);
  padding: 11px 24px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--red); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.25s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.7px,4.7px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.7px,-4.7px); }

.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: var(--bg); flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 0 clamp(24px,5vw,72px); gap: 8px;
}
.mob-nav.open { display: flex; }
.mob-nav-logo { margin-bottom: 48px; }
.mob-nav-logo img { height: 24px; width: auto; }
.mob-nav a {
  font-family: var(--fd);
  font-size: clamp(36px,6vw,56px); font-weight: 600;
  color: var(--ink-2); line-height: 1.2;
  transition: color 0.2s;
}
.mob-nav a:hover { color: var(--red); }
.mob-nav-cta {
  font-family: var(--fb) !important;
  font-size: 12px !important; font-weight: 500 !important;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff !important; background: var(--ink);
  padding: 14px 32px; margin-top: 40px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
/* Subtle grid pattern — structure as aesthetic */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--rule-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-2) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-body {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: var(--sp-sm) 0;
  position: relative; z-index: 2;
}
.hero-tag {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.hero-title { margin-bottom: 48px; padding-bottom: 8px; }
.hero-title-line { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero-title-inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1s var(--ease) both;
}
.hero-title-line:nth-child(1) .hero-title-inner { animation-delay: 0.05s; }
.hero-title-line:nth-child(2) .hero-title-inner { animation-delay: 0.18s; }
.hero-title-line:nth-child(3) .hero-title-inner { animation-delay: 0.31s; color: var(--red); font-style: italic; font-weight: 300; }
@keyframes lineUp {
  to { transform: translateY(0); }
}
.hero-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}
.hero-desc {
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 0.7s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 0.85s both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  position: relative; z-index: 2;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 1.1s both;
}
.hero-foot-items {
  display: flex; gap: 48px;
}
.hero-foot-item { display: flex; flex-direction: column; gap: 4px; }
.hero-foot-num {
  font-family: var(--fd);
  font-size: 28px; font-weight: 300;
  letter-spacing: -0.02em; line-height: 1;
}
.hero-foot-num .sup { font-size: 0.55em; color: var(--red); vertical-align: super; }
.hero-scroll {
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll-line {
  width: 40px; height: 1px; background: var(--ink-3);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.btn-dark {
  background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
}
.btn-dark::after {
  content: ''; position: absolute; inset: 0;
  background: var(--red);
  transform: translateX(-102%);
  transition: transform 0.4s var(--ease);
}
.btn-dark:hover::after { transform: translateX(0); }
.btn-dark span, .btn-dark { position: relative; z-index: 1; }
.btn-dark:hover { color: #fff; }
.btn-line {
  background: transparent; color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-line:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-line-inv {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-line-inv:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.25s;
}
.btn-ghost-arrow .arr {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all 0.3s var(--ease);
}
.btn-ghost-arrow:hover { color: var(--ink); }
.btn-ghost-arrow:hover .arr { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateX(4px); }

/* ── TICKER / MARQUEE ── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  background: var(--bg-2);
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap; width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 24px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
  padding: 0 24px;
}
.ticker-dot { color: var(--red); font-size: 16px; line-height: 1; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION HEADER ── */
.sh { margin-bottom: clamp(48px,5vw,80px); }
.sh-top {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.sh-top::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--red); }

/* ── ABOUT / SPLIT ── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,120px); align-items: start;
}
.split-rev { direction: rtl; }
.split-rev > * { direction: ltr; }

/* Editorial number display */
.big-num {
  font-family: var(--fd);
  font-size: clamp(100px, 15vw, 200px);
  font-weight: 300; line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--rule);
  user-select: none; pointer-events: none;
}

/* Statement column */
.statement-col {
  border-left: 2px solid var(--red);
  padding-left: 32px;
}

/* ── STATS — editorial row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--rule);
}
.stat-cell {
  background: var(--bg);
  padding: clamp(28px,3.5vw,52px) clamp(20px,3vw,44px);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.stat-cell:hover { background: var(--bg-2); }
.stat-cell::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 100%; height: 2px;
  background: var(--red); transition: right 0.6s var(--ease);
}
.stat-cell:hover::after { right: 0; }
.stat-n {
  font-family: var(--fd);
  font-size: clamp(44px,6vw,80px); font-weight: 300;
  line-height: 0.9; letter-spacing: -0.04em;
}
.stat-n .pct { font-size: 0.45em; color: var(--red); vertical-align: super; }
.stat-n .plus { color: var(--red); }
.stat-lbl { font-size: 12px; color: var(--ink-3); margin-top: 14px; line-height: 1.5; max-width: 180px; }

/* ── AUDIENCE — editorial list ── */
.aud-list { display: flex; flex-direction: column; gap: 0; }
.aud-item {
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.3s var(--ease);
}
.aud-item:hover { padding-left: 12px; }
.aud-num {
  font-family: var(--fd); font-size: 13px;
  color: var(--ink-3); font-weight: 400; letter-spacing: 0.05em;
}
.aud-name {
  font-family: var(--fd); font-size: clamp(20px,2.2vw,28px);
  font-weight: 600; letter-spacing: -0.01em;
}
.aud-arrow {
  font-size: 16px; color: var(--red);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.aud-item:hover .aud-arrow { opacity: 1; transform: translateX(0); }

/* ── SERVICES — editorial table ── */
.svc-table { display: flex; flex-direction: column; gap: 0; }
.svc-row {
  display: grid; grid-template-columns: 40px 1fr auto auto;
  align-items: center; gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding-left 0.3s var(--ease), background 0.25s;
}
.svc-row:first-child { border-top: 1px solid var(--rule); }
.svc-row:hover { padding-left: 16px; }
.svc-row::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 0;
  background: var(--red-2); transition: width 0.35s var(--ease);
}
.svc-row:hover::before { width: 100%; }
.svc-n { font-family: var(--fd); font-size: 12px; color: var(--ink-3); position: relative; }
.svc-name { font-family: var(--fd); font-size: clamp(18px,2vw,26px); font-weight: 600; position: relative; }
.svc-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; position: relative; }
.svc-arr { color: var(--red); opacity: 0; transform: translateX(-6px); transition: opacity 0.25s, transform 0.25s; position: relative; }
.svc-row:hover .svc-arr { opacity: 1; transform: translateX(0); }

/* Service frentes */
.svc-blocks { display: flex; flex-direction: column; gap: 1px; background: var(--rule); margin-top: 1px; }
.svc-block {
  background: var(--bg);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; padding: clamp(36px,4vw,60px);
  transition: background 0.3s;
}
.svc-block:hover { background: var(--bg-2); }
.svc-block-label { color: var(--red); margin-bottom: 10px; }
.svc-items { display: flex; flex-direction: column; gap: 0; }
.svc-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  font-size: 14px; color: var(--ink-2);
}
.svc-item:last-child { border-bottom: none; }
.svc-item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 6px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.blog-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--rule);
  background: #fff;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.blog-card:hover .blog-img img { transform: scale(1.05); filter: grayscale(0%); }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-meta { display: flex; align-items: center; gap: 10px; }
.blog-cat {
  font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); padding: 3px 8px; background: var(--red-2);
}
.blog-date { font-size: 11px; color: var(--ink-3); }
.blog-title { font-family: var(--fd); font-size: 20px; font-weight: 600; line-height: 1.3; }
.blog-excerpt { font-size: 13px; color: var(--ink-2); line-height: 1.65; flex: 1; }
.blog-link {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); display: flex; align-items: center; gap: 6px;
  transition: color 0.25s;
}
.blog-link::after { content: '→'; transition: transform 0.25s var(--ease); }
.blog-card:hover .blog-link { color: var(--red); }
.blog-card:hover .blog-link::after { transform: translateX(4px); }

/* ── EVENTS ── */
.evt-list { display: flex; flex-direction: column; gap: 0; }
.evt-row {
  display: grid; grid-template-columns: 110px 1fr auto;
  align-items: center; gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.3s var(--ease);
}
.evt-row:first-child { border-top: 1px solid var(--rule); }
.evt-row:hover { padding-left: 10px; }
.evt-date { border-right: 1px solid var(--rule); padding-right: 32px; }
.evt-day { font-family: var(--fd); font-size: 44px; font-weight: 300; line-height: 1; }
.evt-month { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); }
.evt-year { font-size: 10px; color: var(--ink-3); }
.evt-tag {
  display: inline-flex; font-size: 9px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; background: var(--red-2); color: var(--red);
  margin-bottom: 6px;
}
.evt-title { font-family: var(--fd); font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.evt-meta { font-size: 12px; color: var(--ink-3); }

/* ── PAGE HERO (inner) ── */
.ph {
  padding: 160px 0 clamp(48px,6vw,80px);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--rule-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-2) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.ph-inner { max-width: 800px; position: relative; z-index: 2; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-group { margin-bottom: 22px; }
.form-lbl { display: block; font-size: 9px; font-weight: 500; letter-spacing: 0.20em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.form-field {
  width: 100%; padding: 12px 14px;
  background: #fff; border: 1px solid var(--rule);
  color: var(--ink); font-family: var(--fb); font-size: 14px;
  appearance: none; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field::placeholder { color: var(--ink-3); }
.form-field:focus { border-color: var(--ink); box-shadow: 0 0 0 3px var(--rule-2); }
textarea.form-field { resize: vertical; min-height: 120px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

.ci { display: flex; flex-direction: column; gap: 28px; }
.ci-block h4 { font-size: 9px; font-weight: 500; letter-spacing: 0.20em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.ci-block a { font-size: 15px; color: var(--ink-2); transition: color 0.25s; }
.ci-block a:hover { color: var(--red); }
.ci-steps { display: flex; flex-direction: column; gap: 0; }
.ci-step { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.ci-step:last-child { border-bottom: none; }
.ci-step-n { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--ink-3); }
.ci-step p { font-size: 13px; color: var(--ink-2); padding-top: 3px; line-height: 1.5; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--bg-inv); color: #fff;
  padding: clamp(56px,7vw,100px) clamp(32px,5vw,80px);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
}
/* Geometric accent on dark bg */
.cta-block::after {
  content: '';
  position: absolute; right: -60px; bottom: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; position: relative; }
.cta-label { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }

/* ── VALUES ── */
.vals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.val-item { background: var(--bg); padding: clamp(32px,3.5vw,52px) clamp(24px,3vw,40px); transition: background 0.3s; }
.val-item:hover { background: var(--bg-2); }
.val-n { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.val-title { font-family: var(--fd); font-size: clamp(22px,2.5vw,34px); font-weight: 600; margin-bottom: 14px; }
.val-desc { font-size: 14px; color: var(--ink-2); line-height: 1.65; }

/* ── MVV ── */
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.mvv-item { background: var(--bg-2); padding: clamp(36px,4vw,56px) clamp(24px,3vw,44px); }
.mvv-item h3 { font-family: var(--fd); font-size: 30px; font-weight: 600; margin-bottom: 16px; }
.mvv-item p { font-size: 15px; color: var(--ink-2); line-height: 1.75; }
.mvv-icon { font-size: 24px; margin-bottom: 20px; display: block; }

/* ── MANIFESTO / PULL QUOTE ── */
.pull-quote {
  border-left: 2px solid var(--red);
  padding: 28px 40px;
  background: var(--bg-2);
}
.pull-quote p {
  font-family: var(--fd);
  font-size: clamp(20px,2.8vw,36px);
  font-style: italic; font-weight: 300;
  line-height: 1.45; color: var(--ink-2);
}

/* Inverse pull quote */
.pull-quote-inv {
  border-left: 2px solid var(--red);
  padding: 28px 40px;
}
.pull-quote-inv p {
  font-family: var(--fd);
  font-size: clamp(20px,2.8vw,36px);
  font-style: italic; font-weight: 300;
  line-height: 1.45; color: rgba(255,255,255,0.7);
}

/* ── FOOTER ── */
.footer {
  padding: clamp(56px,7vw,96px) 0 48px;
  border-top: 1px solid var(--rule);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-tagline { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 16px; }
.footer-desc { font-size: 13px; color: var(--ink-2); line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); transition: color 0.25s; }
.footer-social a:hover { color: var(--red); }
.footer-col-title { font-size: 9px; font-weight: 500; letter-spacing: 0.20em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: var(--ink-2); transition: color 0.25s; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--rule); font-size: 11px; color: var(--ink-3); }

/* ── SCROLL ANIMATIONS ── */
.fu { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fl { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fr { opacity: 0; transform: translateX(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fu.in,.fl.in,.fr.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .hero-cols { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links,.nav-cta { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split-rev { direction: ltr; }
  .svc-block { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-block { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .mvv-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .evt-row { grid-template-columns: 90px 1fr; }
  .evt-row .btn { display: none; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .aud-item { grid-template-columns: 40px 1fr; }
  .aud-arrow { display: none; }
  .svc-row { grid-template-columns: 32px 1fr; gap: 14px; }
  .svc-tag,.svc-arr { display: none; }
  .form-2col { grid-template-columns: 1fr; }
  .evt-row { grid-template-columns: 1fr; }
  .evt-date { border-right: none; border-bottom: 1px solid var(--rule); padding: 0 0 16px; }
}

/* ================================================================
   HUBSTATION — Camada Visual Rica
   Elementos gráficos institucionais, geométricos e de sistema
   ================================================================ */

/* ── HERO: Diagrama de conexão (SVG inline via pseudo) ── */
.hero-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-deco svg {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 100%; height: 100%;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 1.4s both;
}

/* Crosshair decorativo grande (referência ao logo) */
.deco-crosshair {
  position: absolute;
  pointer-events: none;
}
.deco-crosshair::before,
.deco-crosshair::after { content: ''; position: absolute; background: currentColor; }
.deco-crosshair::before { width: 100%; height: 1px; top: 50%; left: 0; }
.deco-crosshair::after  { height: 100%; width: 1px; left: 50%; top: 0; }

/* ── SECTION: Fundo com grid de pontos ── */
.dot-field {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--rule) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── DIAGRAMA DE POSICIONAMENTO (hero right) ── */
.position-diagram {
  position: absolute;
  right: clamp(32px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 30vw, 440px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.6s both;
}

/* ── STATS: Indicator bar sob cada número ── */
.stat-bar {
  height: 2px;
  background: var(--rule);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.stat-bar-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--red);
  width: 0;
  transition: width 1.6s var(--ease) 0.2s;
}
.stat-cell.in .stat-bar-fill { width: var(--w, 100%); }

/* ── SISTEMA DE CONEXÃO: Audience list ── */
.system-line {
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--rule) 15%, var(--rule) 85%, transparent);
  pointer-events: none;
}
.system-node {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  background: var(--bg);
  pointer-events: none;
  transition: border-color 0.3s, background 0.3s;
  z-index: 2;
}
.aud-item:hover .system-node {
  border-color: var(--red);
  background: var(--red);
}
.aud-item {
  position: relative;
}

/* ── INFOGRÁFICO DE TRANSFORMAÇÃO ── */
.transform-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.td-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.td-step:last-child { border-bottom: none; }
.td-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--ink-3);
  flex-shrink: 0; margin-top: 2px;
  transition: all 0.3s;
  background: var(--bg);
}
.td-step:hover .td-num {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-2);
}
.td-connector {
  position: absolute;
  left: 14px;
  top: 44px; bottom: -18px;
  width: 1px;
  background: var(--rule);
}
.td-step:last-child .td-connector { display: none; }
.td-label {
  font-family: var(--fd);
  font-size: clamp(16px,1.8vw,22px);
  font-weight: 600; line-height: 1.3;
  margin-bottom: 4px;
}
.td-desc { font-size: 13px; color: var(--ink-3); line-height: 1.5; }

/* ── DIAGRAMA DO ECOSSISTEMA CONDOMINIAL ── */
.ecosystem {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.eco-center {
  position: relative; z-index: 2;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 20px 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.eco-center-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.eco-center-name { font-family: var(--fd); font-size: 22px; font-weight: 600; }

/* ── CARD DE VALOR / FEATURE com linha lateral ── */
.feature-card {
  padding: 28px 28px 28px 32px;
  border: 1px solid var(--rule);
  position: relative;
  background: var(--bg);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.feature-card:hover { background: #fff; transform: translateY(-3px); }
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: var(--rule);
  transition: background 0.3s, top 0.3s, bottom 0.3s;
}
.feature-card:hover::before {
  background: var(--red);
  top: 0; bottom: 0;
}
.feature-icon {
  font-size: 20px; margin-bottom: 14px;
  color: var(--ink-3);
  display: block;
}
.feature-title { font-family: var(--fd); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--ink-2); line-height: 1.6; }

/* ── GRID VISUAL DE DIFERENCIAIS ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--rule);
}

/* ── LINHA DO MÉTODO (horizontal flow) ── */
.method-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}
.method-step {
  flex: 1;
  padding: 32px 28px;
  border: 1px solid var(--rule);
  border-right: none;
  position: relative;
  background: var(--bg);
  transition: background 0.3s;
}
.method-step:last-child { border-right: 1px solid var(--rule); }
.method-step:hover { background: var(--bg-2); }
.method-arrow {
  position: absolute;
  right: -13px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--ink-3);
  z-index: 2;
  transition: all 0.3s;
}
.method-step:hover .method-arrow {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.method-step:last-child .method-arrow { display: none; }
.method-num { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.method-label { font-family: var(--fd); font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.method-desc { font-size: 12px; color: var(--ink-3); line-height: 1.5; }

/* ── COORD AXIS DECORATION ── */
.axis-deco {
  position: absolute;
  pointer-events: none;
}
.axis-deco-h {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule), transparent);
}
.axis-deco-v {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--rule), transparent);
}

/* ── NUMBER RING (para stat visual) ── */
.num-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.num-ring svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.num-ring-track { fill: none; stroke: var(--rule); stroke-width: 1.5; }
.num-ring-fill  { fill: none; stroke: var(--red); stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 251; stroke-dashoffset: 251;
  transition: stroke-dashoffset 1.6s var(--ease) 0.3s; }
.stat-cell.in .num-ring-fill { stroke-dashoffset: var(--dash, 0); }

/* ── GEOMETRIC SHAPES (background deco) ── */
.geo-diamond {
  position: absolute;
  border: 1px solid var(--rule);
  transform: rotate(45deg);
  pointer-events: none;
}
.geo-arc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--rule);
  pointer-events: none;
}

/* ── FLOW LINES between sections ── */
.section-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  height: 48px;
  position: relative;
}
.section-connector::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--rule), var(--red), var(--rule));
}
.section-connector-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  position: relative; z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-deco { display: none; }
  .position-diagram { display: none; }
  .ecosystem { height: 320px; }
}
@media (max-width: 900px) {
  .method-flow { flex-direction: column; }
  .method-step { border-right: 1px solid var(--rule); border-bottom: none; }
  .method-step:last-child { border-bottom: 1px solid var(--rule); }
  .method-arrow { display: none; }
  .diff-grid { grid-template-columns: repeat(2,1fr); }
  .ecosystem { height: 260px; }
}
@media (max-width: 600px) {
  .diff-grid { grid-template-columns: 1fr; }
  .ecosystem { height: 220px; }
}


/* ================================================================
   TEXTURAS DE FUNDO — Profundidade visual sofisticada
   SVG inline, grain, padrões geométricos sutis
   ================================================================ */

/* ── Textura principal: grain de papel fino ── */
.tex-grain {
  position: relative;
}
.tex-grain::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* ── Textura bg-2: grain + linhas diagonais muito suaves ── */
.tex-diagonal {
  position: relative;
  overflow: hidden;
}
.tex-diagonal::before {
  content: '';
  position: absolute; inset: -50%;
  pointer-events: none; z-index: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ink) 0px,
    var(--ink) 0.5px,
    transparent 0.5px,
    transparent 18px
  );
  transform: rotate(0deg);
}

/* ── Textura hero: noise sutil com SVG ── */
.hero {
  position: relative;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Textura seção invertida (dark): grain claro ── */
.inv {
  position: relative;
}
.inv::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' fill='white'/%3E%3C/svg%3E");
  background-size: 250px 250px;
}

/* ── Textura MVV (bg-2): losango geométrico ── */
.mvv-grid {
  position: relative;
}
.mvv-item {
  position: relative;
  overflow: hidden;
}
.mvv-item::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect x='29' y='29' width='4' height='4' fill='none' stroke='%230E0E0E' stroke-width='0.5' transform='rotate(45 31 31)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.mvv-item > * { position: relative; z-index: 1; }

/* ── Textura stats-row: crosshair sutil ── */
.stats-row {
  position: relative;
}
.stat-cell {
  position: relative;
  overflow: hidden;
}
.stat-cell::after {
  content: '';
  position: absolute; right: 0; bottom: 0;
  width: 120px; height: 120px;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='50' fill='none' stroke='%230E0E0E' stroke-width='0.8'/%3E%3Ccircle cx='60' cy='60' r='28' fill='none' stroke='%230E0E0E' stroke-width='0.8'/%3E%3Cline x1='10' y1='60' x2='110' y2='60' stroke='%230E0E0E' stroke-width='0.5'/%3E%3Cline x1='60' y1='10' x2='60' y2='110' stroke='%230E0E0E' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-repeat: no-repeat;
  background-position: right bottom;
}

/* ── Textura page-hero (ph): noise + linhas verticais ── */
.ph {
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.03;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── Textura footer: linhas diagonais muito sutis ── */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    60deg,
    var(--ink) 0px,
    var(--ink) 0.5px,
    transparent 0.5px,
    transparent 24px
  );
}
.footer > * { position: relative; z-index: 1; }

/* ── Textura valores (vals-grid): micro-ponto ── */
.val-item {
  position: relative;
  overflow: hidden;
}
.val-item::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1px);
  background-size: 20px 20px;
}
.val-item > * { position: relative; z-index: 1; }

/* ── Textura cta-block: noise escuro + grade geométrica ── */
.cta-block {
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' fill='white'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.cta-block > * { position: relative; z-index: 1; }

/* ── Textura svc-block: linhas horizontais ── */
.svc-block {
  position: relative;
  overflow: hidden;
}
.svc-block::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 160px; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    0deg,
    var(--ink) 0px,
    var(--ink) 0.5px,
    transparent 0.5px,
    transparent 14px
  );
}
.svc-block > * { position: relative; z-index: 1; }

/* ── Textura feature-card: grain leve ── */
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.feature-card > * { position: relative; z-index: 1; }

/* ── Body base: grain geral muito suave ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 400px 400px;
}

/* ================================================================
   HUBSTATION — Texturas de Fundo
   Grain, patterns e profundidade visual por camadas
   ================================================================ */

/* ── GRAIN TEXTURE (pseudo-elemento global) ── */
/* Aplicada via SVG filter — zero imagens externas */
.has-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  mix-blend-mode: multiply;
  z-index: 0;
}

/* ── NOISE TEXTURE via CSS (mais leve) ── */
.tex-grain {
  position: relative;
  isolation: isolate;
}
.tex-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}
.tex-grain > * { position: relative; z-index: 1; }

/* ── PADRÃO DIAGONAL (linhas finas) ── */
.tex-lines {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(14,14,14,0.018) 12px,
    rgba(14,14,14,0.018) 13px
  );
}

/* ── PADRÃO CRUZADO FINO ── */
.tex-cross {
  background-image:
    linear-gradient(rgba(14,14,14,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,14,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── PADRÃO PONTILHADO RADIAL (elegante) ── */
.tex-dots {
  background-image: radial-gradient(
    circle,
    rgba(14,14,14,0.12) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}

/* ── PADRÃO DOTS INVERTIDO (fundo escuro) ── */
.tex-dots-inv {
  background-image: radial-gradient(
    circle,
    rgba(255,255,255,0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}

/* ── VINHETA SUAVE (profundidade nas edges) ── */
.tex-vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(14,14,14,0.04) 100%);
  z-index: 0;
}

/* ── TEXTURA PAPEL (hero principal) ── */
.tex-paper {
  background-color: var(--bg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 20% 50%, rgba(200,180,100,0.018) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(14,14,14,0.012) 0%, transparent 50%);
}

/* ── TEXTURA CARBONO (seções escuras) ── */
.tex-carbon {
  background-color: var(--bg-inv);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(255,255,255,0.015) 0%, transparent 50%, rgba(255,255,255,0.008) 100%);
  background-size: 200px 200px, 100% 100%;
}

/* ── TEXTURA LINHO (fundo alternativo) ── */
.tex-linen {
  background-color: var(--bg-2);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(14,14,14,0.015) 3px,
      rgba(14,14,14,0.015) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(14,14,14,0.01) 3px,
      rgba(14,14,14,0.01) 4px
    );
}

/* Aplicação automática de textura nas seções */
body { background-color: var(--bg); }
.hero { position: relative; }

/* Override: classes que já têm background recebem textura */
.sec.inv { background-color: var(--bg-inv); }

/* ================================================================
   HUBSTATION — Footer Premium com Cards
   ================================================================ */

.footer-v2 {
  background: #080808;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Textura de fundo no footer */
.footer-v2::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 10% 0%, rgba(244,67,54,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(255,255,255,0.02) 0%, transparent 40%);
  pointer-events: none; z-index: 0;
}
.footer-v2 > * { position: relative; z-index: 1; }

/* ── TOPO DO FOOTER: logo + tagline + linha vermelha ── */
.footer-top {
  padding: clamp(56px,7vw,96px) clamp(24px,5vw,72px) 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: clamp(40px,5vw,64px);
}
.footer-logo-wrap svg,
.footer-logo-wrap img {
  height: 36px; width: auto; color: #fff; display: block;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-family: var(--fd);
  font-size: clamp(15px,1.8vw,21px);
  font-style: italic;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  letter-spacing: -0.01em;
  text-align: right;
  max-width: 360px;
  line-height: 1.5;
}
.footer-tagline strong { color: rgba(255,255,255,0.7); font-style: normal; font-weight: 400; }

/* ── CARDS GRID ── */
.footer-cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin: 0 clamp(24px,5vw,72px);
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.05);
}
.fc {
  background: #080808;
  padding: clamp(28px,3.5vw,48px) clamp(20px,2.5vw,36px);
  position: relative;
  transition: background 0.3s;
}
.fc:hover { background: #101010; }
.fc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1.5px;
  background: var(--red);
  transition: right 0.5s var(--ease);
}
.fc:hover::after { right: 0; }

.fc-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-label::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* Card: Sobre */
.fc-about-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}
.fc-about-text strong { color: rgba(255,255,255,0.8); font-weight: 400; }

/* Stats no card about */
.fc-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fc-stat-n {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.fc-stat-n span { color: var(--red); }
.fc-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }

/* Card: Links */
.fc-links { display: flex; flex-direction: column; gap: 0; }
.fc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s var(--ease);
}
.fc-link:last-child { border-bottom: none; }
.fc-link:hover { color: #fff; padding-left: 8px; }
.fc-link-arr {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  transition: color 0.25s, transform 0.25s;
}
.fc-link:hover .fc-link-arr { color: var(--red); transform: translateX(3px); }

/* Card: Instagram */
.fc-insta {
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.fc-insta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,67,54,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.fc-insta-handle {
  font-family: var(--fd);
  font-size: clamp(18px,2vw,26px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.fc-insta-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  line-height: 1.5;
}
.fc-insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.fc-insta-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.fc-insta-icon {
  width: 15px; height: 15px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  vertical-align: middle;
}
.fc-insta-icon::before {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  border: 1.2px solid currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.fc-insta-icon::after {
  content: '';
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
  top: 2px; right: 2px;
}

/* ── LINHA DO CONTATO ── */
.footer-contact-bar {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  margin: 1px clamp(24px,5vw,72px) 0;
  border: 1px solid rgba(255,255,255,0.04);
  border-top: none;
}
.fcb {
  background: #080808;
  padding: 20px clamp(20px,2.5vw,36px);
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: background 0.3s;
}
.fcb:hover { background: #0f0f0f; }
.fcb-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: border-color 0.3s, color 0.3s;
}
.fcb:hover .fcb-icon { border-color: var(--red); color: var(--red); }
.fcb-lbl { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
.fcb-val { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.25s; }
.fcb:hover .fcb-val { color: #fff; }

/* ── BOTTOM BAR ── */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px clamp(24px,5vw,72px);
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 48px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}
.footer-copy span { color: var(--red); }
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.5); }
.footer-pin-mark {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em;
}
.footer-pin-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-cards { grid-template-columns: 1fr 1fr; }
  .footer-contact-bar { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .footer-cards { grid-template-columns: 1fr; margin: 0; margin-top: 32px; }
  .footer-contact-bar { margin: 0; }
  .footer-top { padding: 40px 24px 32px; }
  .footer-tagline { text-align: left; }
  .footer-bottom-bar { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ================================================================
   HUBSTATION — Seção "Para Quem É" — Cards Premium
   ================================================================ */

.aq-section {
  background: #050505;
  color: #fff;
  padding: clamp(80px,10vw,140px) 0;
  position: relative;
  overflow: hidden;
}

/* Textura de fundo */
.aq-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(244,67,54,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,255,255,0.015) 0%, transparent 50%);
  background-size: 200px 200px, 100% 100%, 100% 100%;
}

/* Elemento decorativo: crosshair grande e faint no canto */
.aq-section::after {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 0 80px rgba(255,255,255,0.01), 0 0 0 160px rgba(255,255,255,0.008);
}

.aq-inner { position: relative; z-index: 1; }

/* ── HEADER DA SEÇÃO ── */
.aq-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,100px);
  align-items: end;
  margin-bottom: clamp(56px,7vw,96px);
  padding-bottom: clamp(40px,5vw,64px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.aq-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.aq-eyebrow-line { width: 28px; height: 1px; background: var(--red); }
.aq-eyebrow-text {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red);
}
.aq-title {
  font-family: var(--fd);
  font-size: clamp(36px,5vw,72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}
.aq-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.5); }
.aq-desc {
  font-size: clamp(14px,1.4vw,16px);
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 440px;
  align-self: end;
}
.aq-desc strong { color: rgba(255,255,255,0.75); font-weight: 400; }

/* ── GRID DE CARDS ── */
.aq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

/* ── CARD BASE ── */
.aq-card {
  background: #080808;
  padding: clamp(28px,3vw,44px) clamp(24px,2.5vw,36px);
  position: relative;
  cursor: default;
  overflow: hidden;
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 260px;
}
.aq-card:hover { background: #0d0d0d; }

/* Linha vermelha inferior animada */
.aq-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--red);
  transition: right 0.5s var(--ease);
}
.aq-card:hover::after { right: 0; }

/* Glow de fundo no hover */
.aq-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 60%, rgba(244,67,54,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.aq-card:hover::before { opacity: 1; }

/* ── CARD: card em destaque (featured) ── */
.aq-card.aq-featured {
  background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
  border: 1px solid rgba(244,67,54,0.15);
}
.aq-card.aq-featured:hover {
  background: linear-gradient(135deg, #131313 0%, #0d0d0d 100%);
  border-color: rgba(244,67,54,0.3);
}

/* ── ELEMENTOS DO CARD ── */
.aq-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.aq-card-num {
  font-family: var(--fd);
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}
.aq-card-tag {
  font-size: 8px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red);
  background: rgba(244,67,54,0.1);
  padding: 3px 8px;
  opacity: 0; transition: opacity 0.3s;
}
.aq-card:hover .aq-card-tag { opacity: 1; }

/* Ícone SVG */
.aq-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
  background: rgba(255,255,255,0.02);
}
.aq-card:hover .aq-card-icon {
  border-color: rgba(244,67,54,0.3);
  background: rgba(244,67,54,0.05);
}
.aq-card.aq-featured .aq-card-icon {
  border-color: rgba(244,67,54,0.25);
  background: rgba(244,67,54,0.06);
}

/* Título e desc */
.aq-card-body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.aq-card-title {
  font-family: var(--fd);
  font-size: clamp(18px,1.8vw,24px);
  font-weight: 600; line-height: 1.2;
  color: #fff; letter-spacing: -0.01em;
}
.aq-card.aq-featured .aq-card-title { color: #fff; }
.aq-card-desc {
  font-size: 13px; color: rgba(255,255,255,0.38);
  line-height: 1.65; flex: 1;
  transition: color 0.3s;
}
.aq-card:hover .aq-card-desc { color: rgba(255,255,255,0.55); }

/* CTA do card */
.aq-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.25s;
  margin-top: auto;
}
.aq-card-link .arr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 10px;
  transition: all 0.3s var(--ease);
}
.aq-card:hover .aq-card-link { color: var(--red); }
.aq-card:hover .aq-card-link .arr {
  background: var(--red); border-color: var(--red); color: #fff;
  transform: translateX(2px);
}

/* ── BARRA INFERIOR ── */
.aq-bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.aq-bottom-text {
  font-family: var(--fd);
  font-size: clamp(16px,1.8vw,22px);
  font-style: italic;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}
.aq-bottom-text strong { color: rgba(255,255,255,0.7); font-style: normal; }
.aq-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.aq-cta:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Responsive */
@media (max-width: 1000px) {
  .aq-header { grid-template-columns: 1fr; gap: 24px; }
  .aq-grid { grid-template-columns: repeat(2,1fr); }
  .aq-card { min-height: 220px; }
}
@media (max-width: 620px) {
  .aq-grid { grid-template-columns: 1fr; }
  .aq-card { min-height: auto; }
}

/* ================================================================
   HUBSTATION — "Para Quem" v2 — Redesign Total
   Infográfico + Cards editoriais com narrativa
   ================================================================ */

/* ── SEÇÃO WRAPPER ── */
.aqn {
  background: #030303;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Background: grid de linhas finas + grain + gradientes de luz */
.aqn::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 55% 60% at 75% 40%, rgba(244,67,54,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(255,255,255,0.018) 0%, transparent 50%);
  background-size: 64px 64px, 64px 64px, 200px 200px, 100% 100%, 100% 100%;
}
.aqn > * { position: relative; z-index: 1; }

/* ── BANDA DO TOPO: eyebrow + número grande ── */
.aqn-top {
  padding: clamp(64px,8vw,112px) clamp(24px,5vw,72px) 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: clamp(40px,5vw,64px);
}
.aqn-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.aqn-eyebrow-pip { width: 6px; height: 6px; border-radius: 50%; background: #F44336; }
.aqn-eyebrow-text { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #F44336; }
.aqn-main-title {
  font-family: var(--fd);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 600; line-height: 0.95;
  letter-spacing: -0.035em; color: #fff;
}
.aqn-main-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.35); display: block; }
.aqn-top-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.aqn-counter {
  font-family: var(--fd);
  font-size: clamp(80px,10vw,140px); font-weight: 300;
  line-height: 0.85; letter-spacing: -0.06em;
  color: rgba(255,255,255,0.04);
  user-select: none;
}
.aqn-top-desc {
  font-size: clamp(13px,1.3vw,15px);
  color: rgba(255,255,255,0.38);
  line-height: 1.75; max-width: 320px;
  text-align: right;
}
.aqn-top-desc strong { color: rgba(255,255,255,0.65); font-weight: 400; }

/* ── INFOGRÁFICO CENTRAL ── */
.aqn-infographic {
  padding: clamp(40px,5vw,64px) clamp(24px,5vw,72px) 0;
  border-bottom: none;
}
/* Infográfico ocupa largura total */
.aqn-orbit-wrap {
  width: 100%; position: relative;
  margin-bottom: clamp(32px,4vw,52px);
}
.aqn-orbit-svg {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 0 32px rgba(244,67,54,0.07));
  max-width: 1160px; margin: 0 auto;
}
/* Pillars abaixo do SVG em 3 colunas */
.aqn-info-text {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  padding-top: 0;
}
.aqn-info-hl { display: none; }
.aqn-info-cta { display: none; }
.aqn-info-hl {
  font-family: var(--fd);
  font-size: clamp(22px,2.5vw,36px);
  font-weight: 600; line-height: 1.25;
  letter-spacing: -0.02em; color: #fff;
}
.aqn-info-hl em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.4); }
.aqn-pillars {
  display: flex; flex-direction: column; gap: 0;
}
.aqn-pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.aqn-pillar:last-child { border-bottom: none; }
.aqn-pillar-n {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  color: rgba(244,67,54,0.6); padding-top: 2px; min-width: 24px;
}
.aqn-pillar-body {}
.aqn-pillar-label {
  font-size: 13px; color: rgba(255,255,255,0.65);
  font-weight: 500; margin-bottom: 2px;
}
.aqn-pillar-desc { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.5; }
.aqn-info-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6);
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s var(--ease); align-self: flex-start;
}
.aqn-info-cta:hover { background: #F44336; border-color: #F44336; color: #fff; }

/* ── CARDS GRID ── */
.aqn-grid-wrap {
  padding: 0 clamp(24px,5vw,72px) clamp(64px,8vw,96px);
}
.aqn-grid-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding: clamp(28px,3.5vw,48px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: clamp(24px,3vw,40px);
}
.aqn-grid-hl {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}
.aqn-grid-count {
  font-family: var(--fd); font-size: 12px;
  color: rgba(255,255,255,0.15); letter-spacing: 0.08em;
}

.aqn-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

/* ── CARD ── */
.aqn-card {
  background: #060606;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 0;
  transition: background 0.4s var(--ease);
  cursor: default;
}
.aqn-card:hover { background: #0b0b0b; }

/* Top accent line animada */
.aqn-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 100%;
  height: 2px; background: #F44336;
  transition: right 0.5s var(--ease);
  z-index: 2;
}
.aqn-card:hover::before { right: 0; }

/* Número de fundo (decorativo) */
.aqn-card-bg-num {
  position: absolute; right: -12px; top: -8px;
  font-family: var(--fd);
  font-size: 120px; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.06em;
  pointer-events: none; user-select: none;
  transition: color 0.4s;
}
.aqn-card:hover .aqn-card-bg-num { color: rgba(244,67,54,0.04); }

/* Featured card diferenciado */
.aqn-card.aqn-card--feat {
  background: linear-gradient(145deg, #0c0404 0%, #080808 60%, #0a0505 100%);
  border: 1px solid rgba(244,67,54,0.12);
}
.aqn-card--feat:hover { background: linear-gradient(145deg, #100404 0%, #0d0d0d 60%, #0e0606 100%); }

/* Card inner (padding) */
.aqn-card-inner {
  padding: clamp(24px,3vw,40px) clamp(20px,2.5vw,32px);
  display: flex; flex-direction: column; gap: 0; flex: 1;
}

/* Tag */
.aqn-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 8px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: #F44336; margin-bottom: 16px;
}
.aqn-card-tag::before { content: ''; width: 12px; height: 1px; background: #F44336; flex-shrink: 0; }

/* Number + title row */
.aqn-card-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.aqn-card-num {
  font-family: var(--fd); font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.2); letter-spacing: 0.04em;
}
.aqn-card-title {
  font-family: var(--fd);
  font-size: clamp(17px,1.8vw,22px); font-weight: 600;
  color: #fff; line-height: 1.2; letter-spacing: -0.01em;
}
.aqn-card-role {
  font-size: 11px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em; margin-bottom: 22px;
}

/* Divider */
.aqn-card-sep {
  height: 1px; background: rgba(255,255,255,0.05);
  margin-bottom: 20px;
}

/* Challenge/Solution blocks */
.aqn-card-block { margin-bottom: 16px; }
.aqn-card-block:last-of-type { margin-bottom: 0; flex: 1; }
.aqn-card-block-label {
  font-size: 8px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 5px;
}
.aqn-card-block-label.challenge { color: rgba(255,255,255,0.25); }
.aqn-card-block-label.solution  { color: rgba(244,67,54,0.6); }
.aqn-card-block-title {
  font-family: var(--fd); font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.6); margin-bottom: 4px;
}
.aqn-card-block-desc { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; }

/* Bottom link */
.aqn-card-bottom {
  padding: 14px clamp(20px,2.5vw,32px);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s;
  text-decoration: none;
}
.aqn-card:hover .aqn-card-bottom { background: rgba(255,255,255,0.02); }
.aqn-card-bottom-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
  transition: color 0.25s;
}
.aqn-card:hover .aqn-card-bottom-label { color: rgba(244,67,54,0.8); }
.aqn-card-bottom-arr {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease);
}
.aqn-card:hover .aqn-card-bottom-arr {
  background: #F44336; border-color: #F44336;
  color: #fff; transform: translateX(2px);
}

/* ── BARRA FINAL ── */
.aqn-footer-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 24px;
  padding: clamp(24px,3.5vw,44px) clamp(24px,5vw,72px);
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.aqn-footer-bar-text {
  font-family: var(--fd);
  font-size: clamp(15px,1.8vw,22px); font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.3); line-height: 1.4;
}
.aqn-footer-bar-text strong { color: rgba(255,255,255,0.65); font-style: normal; font-weight: 500; }
.aqn-footer-bar-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 32px; background: #F44336; color: #fff;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s, transform 0.3s var(--ease);
  flex-shrink: 0;
}
.aqn-footer-bar-cta:hover { background: #D32F2F; transform: translateY(-1px); }

/* Responsive */
@media (max-width: 1100px) {
  .aqn-infographic { grid-template-columns: 1fr; }
  .aqn-orbit-wrap { max-width: 480px; margin: 0 auto; }
  .aqn-top-right { align-items: flex-start; }
  .aqn-top-desc { text-align: left; }
}
@media (max-width: 900px) {
  .aqn-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 580px) {
  .aqn-grid { grid-template-columns: 1fr; }
  .aqn-top { flex-direction: column; align-items: flex-start; }
}

/* Pillars no novo layout 3-col */
.aqn-infographic .aqn-pillars {
  display: contents;
}
.aqn-infographic .aqn-pillar {
  flex-direction: column; gap: 8px;
  background: #080808;
  padding: clamp(20px,2.5vw,32px) clamp(18px,2.2vw,28px);
  border-bottom: none;
  transition: background 0.3s;
}
.aqn-infographic .aqn-pillar:hover { background: #0d0d0d; }
.aqn-infographic .aqn-pillar-n {
  font-size: 20px; color: rgba(244,67,54,0.5);
}
.aqn-infographic .aqn-pillar-label {
  font-family: var(--fd); font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.7); margin-bottom: 4px;
}
.aqn-infographic .aqn-pillar-desc {
  font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.65;
}
/* Divisor entre infog e pillars */
.aqn-infographic-divider {
  height: 1px; background: rgba(255,255,255,0.05);
  margin: 0 clamp(24px,5vw,72px);
}
@media (max-width: 900px) {
  .aqn-infographic .aqn-info-text { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .aqn-orbit-svg { min-height: 180px; }
}

/* ================================================================
   HUBSTATION — "O que fazemos" — Redesign Total
   Fundo branco, textura premium, grid de 6 frentes visuais
   ================================================================ */

/* ── SEÇÃO WRAPPER ── */
.svc-new {
  background: #FAFAF8;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* ── TEXTURA DE FUNDO MULTICAMADA ── */
.svc-new::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    /* Grain sutil */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    /* Grid de linhas levíssimas */
    linear-gradient(rgba(14,14,14,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,14,0.03) 1px, transparent 1px),
    /* Gradientes de cor nos cantos */
    radial-gradient(ellipse 60% 50% at 5% 10%, rgba(244,67,54,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 95% 90%, rgba(14,14,14,0.02) 0%, transparent 50%),
    /* Base levemente quente */
    radial-gradient(ellipse 80% 70% at 50% 50%, #FAFAF8 30%, #F5F3EE 100%);
  background-size: 200px 200px, 56px 56px, 56px 56px, 100% 100%, 100% 100%, 100% 100%;
}
.svc-new > * { position: relative; z-index: 1; }

/* ── WATERMARK: crosshair do logo no fundo ── */
.svc-watermark {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  pointer-events: none; z-index: 0;
  opacity: 0.025;
}

/* ── HEADER DA SEÇÃO ── */
.svc-new-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(14,14,14,0.08);
}
.svc-new-header-left {
  padding: clamp(56px,7vw,100px) clamp(24px,5vw,72px);
  border-right: 1px solid rgba(14,14,14,0.08);
}
.svc-new-header-right {
  padding: clamp(56px,7vw,100px) clamp(24px,5vw,72px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
}
.svc-new-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.svc-new-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #F44336; flex-shrink: 0; }
.svc-new-eyebrow-text { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #F44336; }
.svc-new-title {
  font-family: var(--fd);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 600; line-height: 0.93;
  letter-spacing: -0.04em; color: var(--ink);
  margin-bottom: 28px;
}
.svc-new-title em { font-style: italic; font-weight: 300; color: rgba(14,14,14,0.35); display: block; }
.svc-new-subtitle {
  font-size: clamp(14px,1.4vw,16px);
  color: var(--ink-2); line-height: 1.75;
  max-width: 380px; margin-bottom: 32px;
}
.svc-new-count-row {
  display: flex; align-items: center; gap: 0;
  border: 1px solid rgba(14,14,14,0.1);
}
.svc-count-item {
  flex: 1; padding: 20px 24px;
  border-right: 1px solid rgba(14,14,14,0.08);
}
.svc-count-item:last-child { border-right: none; }
.svc-count-n {
  font-family: var(--fd);
  font-size: 32px; font-weight: 300; line-height: 1;
  letter-spacing: -0.04em; color: var(--ink);
  margin-bottom: 4px;
}
.svc-count-n span { color: #F44336; }
.svc-count-lbl { font-size: 10px; color: var(--ink-3); letter-spacing: 0.06em; }

/* Header right: quote grande */
.svc-new-quote {
  font-family: var(--fd);
  font-size: clamp(20px,2.5vw,36px);
  font-weight: 300; font-style: italic;
  line-height: 1.4; color: rgba(14,14,14,0.4);
  border-left: 2px solid #F44336;
  padding-left: 24px;
}
.svc-new-quote strong { color: var(--ink); font-style: normal; font-weight: 600; }
.svc-new-cta-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}

/* ── GRID DE 6 FRENTES ── */
.svc-new-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  background: rgba(14,14,14,0.06);
}
.svc-frente {
  background: #FAFAF8;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border-right: 1px solid rgba(14,14,14,0.06);
  border-bottom: 1px solid rgba(14,14,14,0.06);
  transition: background 0.4s var(--ease), box-shadow 0.4s;
  cursor: default;
}
.svc-frente:hover { background: #fff; box-shadow: inset 0 0 0 1.5px rgba(14,14,14,0.12); z-index: 2; }

/* Linha de acento no topo: cresce da esquerda */
.svc-frente::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 100%;
  height: 2px; background: #F44336;
  transition: right 0.55s var(--ease);
}
.svc-frente:hover::before { right: 0; }

/* Número ghosted como elemento decorativo */
.svc-frente-bg-num {
  position: absolute;
  bottom: -16px; right: -8px;
  font-family: var(--fd);
  font-size: 130px; font-weight: 700; line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(14,14,14,0.03);
  user-select: none; pointer-events: none;
  transition: color 0.4s, transform 0.4s var(--ease);
}
.svc-frente:hover .svc-frente-bg-num {
  color: rgba(244,67,54,0.04);
  transform: scale(1.03) translateY(-4px);
}

/* Conteúdo do card */
.svc-frente-inner {
  padding: clamp(28px,3vw,44px) clamp(24px,2.5vw,36px);
  flex: 1; display: flex; flex-direction: column; gap: 0;
}
.svc-frente-tag {
  font-size: 8px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: #F44336; margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.svc-frente-tag::before { content: ''; width: 10px; height: 1px; background: #F44336; flex-shrink: 0; }
.svc-frente-num {
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  color: rgba(14,14,14,0.2); margin-bottom: 8px;
}
.svc-frente-title {
  font-family: var(--fd);
  font-size: clamp(19px,2vw,27px); font-weight: 600;
  color: var(--ink); line-height: 1.2;
  letter-spacing: -0.015em; margin-bottom: 18px;
}
/* Descrição curta */
.svc-frente-desc {
  font-size: 13px; color: var(--ink-3); line-height: 1.65;
  margin-bottom: 22px;
}

/* Separador */
.svc-frente-sep {
  height: 1px; background: rgba(14,14,14,0.07); margin-bottom: 16px;
}

/* Lista de itens */
.svc-frente-items { display: flex; flex-direction: column; gap: 0; }
.svc-frente-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(14,14,14,0.05);
  font-size: 12px; color: var(--ink-2); line-height: 1.3;
}
.svc-frente-item:last-child { border-bottom: none; }
.svc-frente-item::before {
  content: '';
  width: 3px; height: 3px; border-radius: 50%;
  background: #F44336; flex-shrink: 0; opacity: 0.7;
}

/* Rodapé do card */
.svc-frente-foot {
  padding: 14px clamp(24px,2.5vw,36px);
  border-top: 1px solid rgba(14,14,14,0.06);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(14,14,14,0.015);
  text-decoration: none;
  transition: background 0.3s;
}
.svc-frente:hover .svc-frente-foot { background: rgba(14,14,14,0.03); }
.svc-frente-foot-lbl {
  font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(14,14,14,0.3); transition: color 0.25s;
}
.svc-frente:hover .svc-frente-foot-lbl { color: #F44336; }
.svc-frente-foot-arr {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(14,14,14,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(14,14,14,0.3);
  transition: all 0.3s var(--ease);
}
.svc-frente:hover .svc-frente-foot-arr {
  background: #F44336; border-color: #F44336; color: #fff;
  transform: translateX(2px);
}

/* ── BARRA INFERIOR ── */
.svc-new-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  padding: clamp(28px,3.5vw,48px) clamp(24px,5vw,72px);
  border-top: 1px solid rgba(14,14,14,0.08);
  background: rgba(14,14,14,0.015);
}
.svc-new-bottom-text {
  font-size: 13px; color: var(--ink-3); max-width: 480px; line-height: 1.6;
}
.svc-new-bottom-text strong { color: var(--ink); font-weight: 500; }
.svc-new-btn-full {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; background: var(--ink); color: #fff;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s;
  flex-shrink: 0;
}
.svc-new-btn-full:hover { background: #F44336; }

/* Responsive */
@media (max-width: 1000px) {
  .svc-new-header { grid-template-columns: 1fr; }
  .svc-new-header-left { border-right: none; border-bottom: 1px solid rgba(14,14,14,0.08); }
  .svc-new-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .svc-new-grid { grid-template-columns: 1fr; }
  .svc-new-count-row { flex-wrap: wrap; }
}

/* ================================================================
   HUBSTATION — PÁGINA DE SERVIÇOS — Redesign Total
   Editorial. Vivo. Confiante. Sexy.
   ================================================================ */

/* ── HERO DE SERVIÇOS ── */
.sp-hero {
  min-height: 100vh;
  background: #030303;
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0;
  position: relative; overflow: hidden;
}
.sp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 65% 55% at 80% 20%, rgba(244,67,54,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 45% 60% at 10% 85%, rgba(255,255,255,0.02) 0%, transparent 50%);
  background-size: 300px 300px, 100% 100%, 100% 100%;
  pointer-events: none; z-index: 0;
}
/* Grid de fundo */
.sp-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none; z-index: 0;
}
.sp-hero-inner {
  position: relative; z-index: 1;
  padding: 180px clamp(24px,5vw,72px) clamp(56px,7vw,80px);
}
.sp-hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.sp-hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: #F44336; }
.sp-hero-eyebrow-text { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.sp-hero-title {
  font-family: var(--fd);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 600; line-height: 0.90;
  letter-spacing: -0.045em; color: #fff;
  margin-bottom: clamp(40px,5vw,64px);
}
.sp-hero-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.3); }
.sp-hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px; align-items: end;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sp-hero-desc { font-size: clamp(14px,1.4vw,17px); color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 440px; }
.sp-hero-stats { display: flex; gap: 40px; flex-shrink: 0; }
.sp-hero-stat { text-align: right; }
.sp-hero-stat-n { font-family: var(--fd); font-size: clamp(32px,4vw,52px); font-weight: 300; line-height: 1; letter-spacing: -0.04em; color: #fff; }
.sp-hero-stat-n span { color: #F44336; }
.sp-hero-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; margin-top: 4px; }

/* ── TICKER ── */
.sp-ticker { background: #F44336; padding: 0; overflow: hidden; }
.sp-ticker-track {
  display: flex; gap: 0; white-space: nowrap; width: max-content;
  animation: ticker 28s linear infinite;
  padding: 16px 0;
}
.sp-ticker:hover .sp-ticker-track { animation-play-state: paused; }
.sp-ticker-item {
  display: inline-flex; align-items: center; gap: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  padding: 0 28px;
}
.sp-ticker-sep { color: rgba(255,255,255,0.4); font-size: 10px; }

/* ── NÚMERO MANIFESTO ── */
.sp-number-band {
  background: #030303; color: #fff;
  padding: clamp(64px,8vw,112px) clamp(24px,5vw,72px);
  display: flex; align-items: center; gap: clamp(32px,5vw,80px);
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.sp-number-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
    linear-gradient(90deg, rgba(244,67,54,0.06) 0%, transparent 40%);
  background-size: 200px 200px, 100% 100%;
  pointer-events: none;
}
.sp-big-num {
  font-family: var(--fd);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.07em;
  -webkit-text-stroke: 1.5px rgba(244,67,54,0.6);
  color: transparent;
  flex-shrink: 0;
  position: relative; z-index: 1;
  user-select: none;
}
.sp-number-text { position: relative; z-index: 1; }
.sp-number-text p {
  font-family: var(--fd);
  font-size: clamp(22px,3vw,44px); font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.55); line-height: 1.3;
}
.sp-number-text p strong { color: #fff; font-style: normal; font-weight: 600; }
.sp-number-text small {
  display: block; margin-top: 16px;
  font-size: 11px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ── CAPÍTULOS DE FRENTES ── */
.sp-chapter {
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.sp-chapter-dark {
  background: #060606; color: #fff;
  border-top-color: rgba(255,255,255,0.05);
}
.sp-chapter-light { background: #FAFAF8; color: var(--ink); }

/* Textura chapter dark */
.sp-chapter-dark::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 0;
}
/* Textura chapter light */
.sp-chapter-light::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"),
    linear-gradient(rgba(14,14,14,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,14,0.025) 1px, transparent 1px);
  background-size: 200px 200px, 52px 52px, 52px 52px;
  z-index: 0;
}
.sp-chapter-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: stretch;
}
/* Número da frente: coluna lateral grande */
.sp-ch-num-col {
  display: flex; align-items: center; justify-content: center;
  padding: clamp(56px,7vw,96px) clamp(32px,4vw,64px);
  border-right: 1px solid;
  min-width: clamp(120px,14vw,200px);
}
.sp-chapter-dark .sp-ch-num-col { border-right-color: rgba(255,255,255,0.05); }
.sp-chapter-light .sp-ch-num-col { border-right-color: rgba(14,14,14,0.07); }
.sp-ch-num {
  font-family: var(--fd);
  font-size: clamp(72px,10vw,140px); font-weight: 700; line-height: 1;
  letter-spacing: -0.06em; writing-mode: vertical-rl;
  transform: rotate(180deg);
  user-select: none;
}
.sp-chapter-dark .sp-ch-num { color: rgba(255,255,255,0.06); }
.sp-chapter-light .sp-ch-num { color: rgba(14,14,14,0.06); }
/* Content column */
.sp-ch-content {
  padding: clamp(48px,6vw,80px) clamp(32px,5vw,72px);
  display: flex; flex-direction: column; gap: 0;
}
.sp-ch-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  flex-wrap: wrap;
}
.sp-ch-tag {
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid;
}
.sp-chapter-dark .sp-ch-tag { color: #F44336; border-color: rgba(244,67,54,0.4); }
.sp-chapter-light .sp-ch-tag { color: #F44336; border-color: rgba(244,67,54,0.3); background: rgba(244,67,54,0.04); }
.sp-ch-count {
  font-size: 10px; letter-spacing: 0.1em;
}
.sp-chapter-dark .sp-ch-count { color: rgba(255,255,255,0.25); }
.sp-chapter-light .sp-ch-count { color: rgba(14,14,14,0.3); }
.sp-ch-title {
  font-family: var(--fd);
  font-size: clamp(32px, 4.5vw, 64px); font-weight: 600;
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.sp-chapter-dark .sp-ch-title { color: #fff; }
.sp-chapter-light .sp-ch-title { color: var(--ink); }
.sp-ch-desc {
  font-size: clamp(14px,1.4vw,16px); line-height: 1.75;
  max-width: 580px; margin-bottom: 32px;
}
.sp-chapter-dark .sp-ch-desc { color: rgba(255,255,255,0.45); }
.sp-chapter-light .sp-ch-desc { color: rgba(14,14,14,0.55); }
/* Pills de entrega */
.sp-ch-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.sp-ch-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  font-size: 12px; font-weight: 400;
  transition: all 0.25s var(--ease);
}
.sp-chapter-dark .sp-ch-pill {
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.08);
}
.sp-chapter-dark .sp-ch-pill:hover { background: rgba(244,67,54,0.12); border-color: rgba(244,67,54,0.3); color: #fff; }
.sp-chapter-light .sp-ch-pill {
  background: rgba(14,14,14,0.04); color: rgba(14,14,14,0.6);
  border: 1px solid rgba(14,14,14,0.08);
}
.sp-chapter-light .sp-ch-pill:hover { background: rgba(244,67,54,0.07); border-color: rgba(244,67,54,0.25); color: var(--ink); }
.sp-ch-pill::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: #F44336; opacity: 0.8; flex-shrink: 0; }
/* Link da frente */
.sp-ch-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; margin-top: auto; align-self: flex-start;
  transition: gap 0.25s var(--ease);
}
.sp-chapter-dark .sp-ch-link { color: rgba(255,255,255,0.3); }
.sp-chapter-dark .sp-ch-link:hover { color: #F44336; gap: 16px; }
.sp-chapter-light .sp-ch-link { color: rgba(14,14,14,0.3); }
.sp-chapter-light .sp-ch-link:hover { color: #F44336; gap: 16px; }

/* ── LISTA COMPLETA DE ENTREGAS ── */
.sp-full-list {
  background: #030303; color: #fff;
  padding: clamp(64px,8vw,112px) 0;
  position: relative; overflow: hidden;
}
.sp-full-list::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(244,67,54,0.06) 0%, transparent 55%);
  background-size: 300px 300px, 100% 100%;
}
.sp-full-list-inner { position: relative; z-index: 1; }
.sp-full-list-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  padding: 0 clamp(24px,5vw,72px);
  margin-bottom: clamp(48px,6vw,80px);
  padding-bottom: clamp(32px,4vw,48px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sp-full-list-title {
  font-family: var(--fd);
  font-size: clamp(28px,3.5vw,52px); font-weight: 600;
  color: #fff; letter-spacing: -0.025em;
}
.sp-full-list-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.3); }
.sp-full-list-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  margin: 0 clamp(24px,5vw,72px);
}
.sp-fl-group {
  background: #060606; padding: clamp(28px,3vw,44px) clamp(20px,2.5vw,32px);
  border-right: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sp-fl-group:nth-child(3n) { border-right: none; }
.sp-fl-group-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: #F44336; margin-bottom: 16px;
}
.sp-fl-group-label::after { content: ''; flex: 1; height: 1px; background: rgba(244,67,54,0.2); }
.sp-fl-items { display: flex; flex-direction: column; gap: 0; }
.sp-fl-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px; color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.sp-fl-item:last-child { border-bottom: none; }
.sp-fl-item:hover { color: #fff; padding-left: 6px; }
.sp-fl-item::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: #F44336; opacity: 0.6; flex-shrink: 0; }

/* ── CTA VERMELHO FINAL ── */
.sp-cta-red {
  background: #F44336; color: #fff;
  padding: clamp(72px,9vw,120px) clamp(24px,5vw,72px);
  position: relative; overflow: hidden;
}
.sp-cta-red::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.08) 0%, transparent 50%);
  background-size: 300px 300px, 100% 100%, 100% 100%;
}
.sp-cta-red-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 48px;
}
.sp-cta-red-title {
  font-family: var(--fd);
  font-size: clamp(36px,5vw,72px); font-weight: 600; line-height: 1.0;
  letter-spacing: -0.03em; color: #fff;
}
.sp-cta-red-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.65); }
.sp-cta-red-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }
.sp-btn-white {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px; background: #fff; color: #F44336;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s var(--ease);
}
.sp-btn-white:hover { background: #030303; color: #fff; }
.sp-btn-white-outline {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; background: transparent;
  border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.75);
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
}
.sp-btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .sp-chapter-inner { grid-template-columns: 1fr; }
  .sp-ch-num-col { display: none; }
  .sp-full-list-grid { grid-template-columns: 1fr; margin: 0; }
  .sp-fl-group:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.04); }
  .sp-hero-foot { grid-template-columns: 1fr; }
  .sp-hero-stats { justify-content: flex-start; }
  .sp-cta-red-inner { flex-direction: column; }
  .sp-cta-red-actions { align-items: flex-start; }
  .sp-number-band { flex-direction: column; gap: 24px; }
}
@media (max-width: 640px) {
  .sp-full-list-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   HUBSTATION — Página de Serviços — Redesign Total
   Editorial. Vivo. Personalidade forte.
   ================================================================ */

/* ── HERO SERVIÇOS ── */
.sp-hero {
  min-height: 100vh;
  background: #060606;
  display: grid; grid-template-rows: 1fr auto;
  position: relative; overflow: hidden;
  padding-top: 90px;
}
.sp-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.065'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(244,67,54,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255,255,255,0.012) 0%, transparent 50%);
  background-size: 200px 200px, 100% 100%, 100% 100%;
}
.sp-hero-body {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(24px,5vw,72px) clamp(48px,6vw,80px);
  position: relative; z-index: 2;
}
/* Número gigante de fundo */
.sp-hero-bg-num {
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: var(--fd);
  font-size: clamp(280px,35vw,520px);
  font-weight: 700; line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(255,255,255,0.025);
  user-select: none; pointer-events: none;
  z-index: 1;
}
.sp-hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.sp-hero-eyebrow-line { width: 32px; height: 1.5px; background: #F44336; }
.sp-hero-eyebrow-text { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #F44336; }
.sp-hero-title {
  font-family: var(--fd);
  font-size: clamp(56px, 8.5vw, 130px);
  font-weight: 600; line-height: 0.93;
  letter-spacing: -0.04em; color: #fff;
  margin-bottom: 48px;
}
.sp-hero-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.35); }
.sp-hero-title .red { color: #F44336; }
.sp-hero-bottom {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 2;
  padding-left: clamp(24px,5vw,72px);
  padding-right: clamp(24px,5vw,72px);
}
.sp-hero-desc { font-size: clamp(14px,1.4vw,16px); color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 480px; }
.sp-hero-desc strong { color: rgba(255,255,255,0.75); font-weight: 400; }
.sp-hero-stats { display: flex; gap: 40px; justify-content: flex-end; }
.sp-hero-stat { text-align: center; }
.sp-hero-stat-n { font-family: var(--fd); font-size: 40px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 4px; letter-spacing: -0.04em; }
.sp-hero-stat-n span { color: #F44336; }
.sp-hero-stat-l { font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── TICKER HORIZONTAL ── */
.sp-ticker {
  background: #F44336; padding: 14px 0; overflow: hidden;
  border-top: none; border-bottom: none;
}
.sp-ticker-track {
  display: flex; gap: 0; white-space: nowrap; width: max-content;
  animation: ticker 30s linear infinite;
}
.sp-ticker:hover .sp-ticker-track { animation-play-state: paused; }
.sp-ticker-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 20px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
}
.sp-ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); }

/* ── MANIFESTO SPLIT ── */
.sp-manifesto {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.sp-manifesto-left {
  background: #FAFAF8;
  padding: clamp(64px,8vw,112px) clamp(32px,5vw,72px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.sp-manifesto-left::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"),
    linear-gradient(rgba(14,14,14,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,14,0.03) 1px, transparent 1px);
  background-size: 200px, 44px 44px, 44px 44px;
}
.sp-manifesto-left > * { position: relative; z-index: 1; }
.sp-manifesto-label { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #F44336; margin-bottom: 24px; }
.sp-manifesto-q {
  font-family: var(--fd);
  font-size: clamp(28px,3.5vw,52px); font-weight: 300; font-style: italic;
  line-height: 1.25; letter-spacing: -0.02em;
  color: rgba(14,14,14,0.65); margin-bottom: 32px;
  border-left: 2px solid #F44336; padding-left: 28px;
}
.sp-manifesto-q strong { color: var(--ink); font-style: normal; font-weight: 600; }
.sp-manifesto-right {
  background: #0a0a0a;
  padding: clamp(64px,8vw,112px) clamp(32px,5vw,72px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.sp-manifesto-right::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E") repeat;
  background-size: 200px;
}
.sp-manifesto-right > * { position: relative; z-index: 1; }
.sp-frentes-list { display: flex; flex-direction: column; gap: 0; }
.sp-frente-row {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding-left 0.3s var(--ease);
  cursor: default;
}
.sp-frente-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.sp-frente-row:hover { padding-left: 10px; }
.sp-frente-row-n { font-family: var(--fd); font-size: 12px; color: rgba(244,67,54,0.6); min-width: 28px; }
.sp-frente-row-name { font-family: var(--fd); font-size: clamp(16px,1.8vw,22px); font-weight: 600; color: #fff; flex: 1; }
.sp-frente-row-tag { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.sp-frente-row-arr { color: #F44336; opacity: 0; transform: translateX(-6px); transition: opacity 0.2s, transform 0.25s var(--ease); font-size: 14px; }
.sp-frente-row:hover .sp-frente-row-arr { opacity: 1; transform: translateX(0); }

/* ── CAPÍTULOS DAS 6 FRENTES ── */
.sp-chapter { position: relative; overflow: hidden; }
/* Alternating: odd = light, even = dark */
.sp-chapter-light { background: #FAFAF8; }
.sp-chapter-dark  { background: #060606; color: #fff; }

/* Texture por capítulo */
.sp-chapter-light::before, .sp-chapter-dark::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.sp-chapter-light::before { opacity: 0.025; }
.sp-chapter-dark::before { opacity: 0.06; }

/* Número do capítulo (sangra pela tela) */
.sp-chapter-num {
  font-family: var(--fd);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 700; line-height: 0.8;
  letter-spacing: -0.08em;
  position: absolute; pointer-events: none; user-select: none;
}
.sp-chapter-light .sp-chapter-num { color: rgba(14,14,14,0.04); right: -30px; bottom: -20px; }
.sp-chapter-dark  .sp-chapter-num { color: rgba(255,255,255,0.03); left: -30px; bottom: -20px; }

.sp-chapter-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}

/* Col esquerda do capítulo */
.sp-chapter-left {
  padding: clamp(56px,7vw,96px) clamp(32px,4.5vw,64px);
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  border-right: 1px solid;
}
.sp-chapter-light .sp-chapter-left { border-color: rgba(14,14,14,0.08); }
.sp-chapter-dark  .sp-chapter-left { border-color: rgba(255,255,255,0.06); }

/* Col direita do capítulo */
.sp-chapter-right {
  padding: clamp(56px,7vw,96px) clamp(32px,4.5vw,64px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
}

/* Etiqueta do capítulo */
.sp-ch-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: #F44336;
}
.sp-ch-tag::before { content: ''; width: 14px; height: 1.5px; background: #F44336; flex-shrink: 0; }

/* Título da frente (grande) */
.sp-ch-title {
  font-family: var(--fd);
  font-size: clamp(30px,4vw,60px); font-weight: 600;
  line-height: 1.05; letter-spacing: -0.025em;
}
.sp-chapter-light .sp-ch-title { color: var(--ink); }
.sp-chapter-dark  .sp-ch-title { color: #fff; }

/* Linha decorativa */
.sp-ch-rule { width: 48px; height: 2px; background: #F44336; flex-shrink: 0; }

/* Desc da frente */
.sp-ch-desc { font-size: clamp(14px,1.3vw,16px); line-height: 1.8; }
.sp-chapter-light .sp-ch-desc { color: var(--ink-2); }
.sp-chapter-dark  .sp-ch-desc { color: rgba(255,255,255,0.5); }

/* CTA link do capítulo */
.sp-ch-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: gap 0.25s var(--ease);
}
.sp-chapter-light .sp-ch-cta { color: var(--ink-2); }
.sp-chapter-dark  .sp-ch-cta { color: rgba(255,255,255,0.4); }
.sp-ch-cta:hover { gap: 18px; }
.sp-ch-cta-arr {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: all 0.3s var(--ease);
}
.sp-chapter-light .sp-ch-cta-arr { border: 1px solid rgba(14,14,14,0.15); color: var(--ink-2); }
.sp-chapter-dark  .sp-ch-cta-arr { border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.4); }
.sp-ch-cta:hover .sp-ch-cta-arr { background: #F44336; border-color: #F44336; color: #fff; }

/* Lista de entregas no capítulo direito */
.sp-ch-count {
  font-family: var(--fd);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 12px;
}
.sp-chapter-light .sp-ch-count { color: rgba(14,14,14,0.3); }
.sp-chapter-dark  .sp-ch-count { color: rgba(255,255,255,0.25); }
.sp-ch-items { display: flex; flex-direction: column; gap: 0; flex: 1; }
.sp-ch-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 0; transition: padding-left 0.25s var(--ease);
}
.sp-chapter-light .sp-ch-item { border-bottom: 1px solid rgba(14,14,14,0.07); }
.sp-chapter-dark  .sp-ch-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.sp-ch-item:last-child { border-bottom: none; }
.sp-ch-item:hover { padding-left: 8px; }
.sp-ch-item-n { font-family: var(--fd); font-size: 10px; min-width: 24px; margin-top: 1px; }
.sp-chapter-light .sp-ch-item-n { color: rgba(14,14,14,0.25); }
.sp-chapter-dark  .sp-ch-item-n { color: rgba(255,255,255,0.2); }
.sp-ch-item-name { font-size: 14px; line-height: 1.4; }
.sp-chapter-light .sp-ch-item-name { color: var(--ink-2); }
.sp-chapter-dark  .sp-ch-item-name { color: rgba(255,255,255,0.6); }
.sp-ch-item-desc { font-size: 11px; margin-top: 2px; line-height: 1.4; }
.sp-chapter-light .sp-ch-item-desc { color: var(--ink-3); }
.sp-chapter-dark  .sp-ch-item-desc { color: rgba(255,255,255,0.25); }

/* ── PROCESSO SECTION ── */
.sp-process {
  background: #FAFAF8; padding: clamp(72px,9vw,120px) 0;
  position: relative; overflow: hidden;
}
.sp-process::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(244,67,54,0.04) 0%, transparent 70%);
  background-size: 200px, 100% 100%;
}
.sp-process > * { position: relative; z-index: 1; }
.sp-process-header { text-align: center; margin-bottom: clamp(56px,7vw,96px); }
.sp-process-label { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #F44336; margin-bottom: 14px; }
.sp-process-title { font-family: var(--fd); font-size: clamp(32px,4vw,60px); font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
.sp-process-title em { font-style: italic; font-weight: 300; color: rgba(14,14,14,0.35); }
.sp-steps {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; position: relative;
}
/* Linha conectora horizontal */
.sp-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(14,14,14,0.12) 20%, rgba(14,14,14,0.12) 80%, transparent);
  pointer-events: none; z-index: 0;
}
.sp-step { text-align: center; padding: 0 clamp(12px,2vw,28px); position: relative; z-index: 1; }
.sp-step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid rgba(14,14,14,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; background: #FAFAF8;
  transition: all 0.3s var(--ease);
  position: relative;
}
.sp-step:hover .sp-step-circle { background: #F44336; border-color: #F44336; transform: scale(1.05); }
.sp-step-circle-n { font-family: var(--fd); font-size: 22px; font-weight: 300; color: rgba(14,14,14,0.4); line-height: 1; transition: color 0.3s; }
.sp-step:hover .sp-step-circle-n { color: #fff; }
/* Seta entre steps */
.sp-step:not(:last-child) .sp-step-circle::after {
  content: '→';
  position: absolute; right: -28px; top: 50%; transform: translateY(-50%);
  font-size: 14px; color: rgba(14,14,14,0.2);
}
.sp-step-label { font-family: var(--fd); font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.sp-step-desc { font-size: 12px; color: var(--ink-3); line-height: 1.55; }

/* ── CLOSING CTA ── */
.sp-closing {
  background: #030303; padding: clamp(80px,10vw,140px) 0;
  position: relative; overflow: hidden;
}
.sp-closing::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(244,67,54,0.05) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 200px, 100% 100%, 56px 56px, 56px 56px;
}
.sp-closing > * { position: relative; z-index: 1; }
.sp-closing-inner {
  text-align: center; max-width: 780px; margin: 0 auto;
  padding: 0 clamp(24px,5vw,72px);
}
.sp-closing-pre { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,67,54,0.8); margin-bottom: 24px; }
.sp-closing-title {
  font-family: var(--fd);
  font-size: clamp(36px,5.5vw,80px);
  font-weight: 600; line-height: 0.95;
  letter-spacing: -0.04em; color: #fff; margin-bottom: 24px;
}
.sp-closing-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.35); }
.sp-closing-sub { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 48px; max-width: 540px; margin-left: auto; margin-right: auto; }
.sp-closing-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.sp-btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px; background: #F44336; color: #fff;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s, transform 0.3s var(--ease);
}
.sp-btn-primary:hover { background: #C62828; transform: translateY(-1px); }
.sp-btn-line-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55);
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
}
.sp-btn-line-white:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* Responsive */
@media (max-width: 1000px) {
  .sp-manifesto { grid-template-columns: 1fr; }
  .sp-chapter-inner { grid-template-columns: 1fr; }
  .sp-chapter-left { border-right: none; border-bottom: 1px solid; }
  .sp-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sp-steps::before { display: none; }
  .sp-step-circle::after { display: none; }
  .sp-hero-bottom { grid-template-columns: 1fr; }
  .sp-hero-stats { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .sp-steps { grid-template-columns: 1fr; }
  .sp-hero-title { font-size: clamp(44px,11vw,80px); }
  .sp-chapter-num { font-size: clamp(100px,30vw,200px); }
}
