:root {
  --bg: #131313;
  --bg-soft: #1b1b1b;
  --bg-card: #161616;
  --border: rgba(174, 136, 127, 0.14);
  --text: #e2e2e2;
  --muted: rgba(226, 226, 226, 0.68);
  --muted-2: rgba(226, 226, 226, 0.4);
  --accent: #cc0000;
  --accent-soft: #ff8888;
  --headline: "Epilogue", sans-serif;
  --body: "Inter", sans-serif;
  --label: "Space Grotesk", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.cluster-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(204, 0, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 28%),
    var(--bg);
}

.cluster-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(19, 19, 19, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cluster-topbar-inner,
.cluster-nav-row,
.cluster-container,
.cluster-footer-inner {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
}

.cluster-topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cluster-brand-home,
.cluster-brand-cta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.2s ease;
}

.cluster-brand-home:hover,
.cluster-brand-cta:hover {
  color: var(--text);
}

.cluster-brand-home {
  left: 0;
}

.cluster-brand-cta {
  right: 0;
}

.cluster-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.cluster-brand-symbol {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(13%) sepia(98%) saturate(6778%) hue-rotate(1deg) brightness(93%) contrast(121%);
}

.cluster-brand-type {
  display: block;
  height: 32px;
  width: auto;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(13%) sepia(98%) saturate(6778%) hue-rotate(1deg) brightness(93%) contrast(121%);
}

.cluster-nav-row {
  display: flex;
  justify-content: center;
  padding: 14px 0;
}

.cluster-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: var(--label);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.cluster-nav a:hover,
.cluster-link:hover {
  color: var(--accent-soft);
}

.cluster-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.cluster-cta:hover {
  transform: translateY(-1px);
}

.cluster-cta-primary {
  background: var(--accent);
  color: #2a0000;
}

.cluster-cta-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.cluster-cta-secondary:hover {
  border-color: rgba(255, 136, 136, 0.6);
}

.cluster-hero,
.cluster-section {
  padding: 80px 0;
}

.cluster-hero {
  padding-top: 96px;
}

.cluster-kicker,
.cluster-meta,
.cluster-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--label);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.cluster-kicker,
.cluster-chip {
  color: var(--accent-soft);
}

.cluster-kicker::before,
.cluster-meta::before {
  content: "";
  width: 11px;
  height: 11px;
  background: url('/img/lookos-symbol-red.svg') center / contain no-repeat;
}

.cluster-title {
  margin: 18px 0 18px;
  font-family: var(--headline);
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.cluster-title strong,
.cluster-highlight {
  color: #fff;
  background: var(--accent);
  padding: 0 0.14em;
}

.cluster-lead {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--muted);
}

.cluster-actions,
.cluster-inline-links,
.cluster-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.cluster-card,
.cluster-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.cluster-card {
  padding: 28px;
}

.cluster-card h2,
.cluster-card h3,
.cluster-section-title,
.cluster-article h2,
.cluster-article h3 {
  margin: 0 0 14px;
  font-family: var(--headline);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cluster-card p,
.cluster-panel p,
.cluster-article p,
.cluster-list li {
  color: var(--muted);
  line-height: 1.75;
}

.cluster-card ul,
.cluster-article ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.cluster-card li,
.cluster-article li {
  margin: 0 0 10px;
  line-height: 1.6;
}

.cluster-span-4 { grid-column: span 4; }
.cluster-span-5 { grid-column: span 5; }
.cluster-span-6 { grid-column: span 6; }
.cluster-span-7 { grid-column: span 7; }
.cluster-span-8 { grid-column: span 8; }
.cluster-span-12 { grid-column: span 12; }

.cluster-panel {
  overflow: hidden;
}

.cluster-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cluster-panel-copy {
  padding: 28px;
}

.cluster-eyebrow {
  margin-bottom: 12px;
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.cluster-section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.cluster-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cluster-link-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.cluster-link-media {
  display: block;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  margin: -22px -22px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.cluster-link-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cluster-link-card:hover {
  border-color: rgba(255, 136, 136, 0.4);
  transform: translateY(-2px);
}

.cluster-link-card:hover .cluster-link-media img {
  transform: scale(1.04);
}

.cluster-link-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--headline);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.cluster-link-card span {
  color: var(--muted);
  line-height: 1.65;
}

.cluster-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.cluster-breadcrumbs a:hover {
  color: var(--accent-soft);
}

.cluster-article {
  max-width: 780px;
}

.cluster-article h2 {
  margin-top: 36px;
  font-size: 1.6rem;
}

.cluster-article h3 {
  margin-top: 30px;
  font-size: 1.15rem;
}

.cluster-article p + p {
  margin-top: 14px;
}

.cluster-article .cluster-meta {
  color: var(--muted-2);
}

.cluster-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 60px;
}

.cluster-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 40px;
}

.cluster-footer-copy,
.cluster-footer-links {
  font-family: var(--label);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}

.cluster-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}`r`n`r`n.cluster-footer-links a:hover,`r`n.cluster-footer-copy a:hover {`r`n  color: var(--text);`r`n}

@media (max-width: 940px) {
  .cluster-span-4,
  .cluster-span-5,
  .cluster-span-6,
  .cluster-span-7,
  .cluster-span-8 {
    grid-column: span 12;
  }

  .cluster-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .cluster-topbar-inner,
  .cluster-nav-row,
  .cluster-container,
  .cluster-footer-inner {
    width: min(100% - 32px, 1160px);
  }

  .cluster-topbar-inner {
    padding: 16px 0 14px;
  }

  .cluster-nav {
    gap: 16px;
    font-size: 0.68rem;
  }

  .cluster-brand-home,
  .cluster-brand-cta {
    display: none;
  }

  .cluster-brand-symbol {
    width: 46px;
    height: 46px;
  }

  .cluster-brand-type {
    height: 28px;
  }

  .cluster-hero,
  .cluster-section {
    padding: 56px 0;
  }

  .cluster-card,
  .cluster-panel-copy,
  .cluster-link-card {
    padding: 22px;
  }
}

/* ─── Para quem é ─── */
.pq-section { padding: 72px 0; border-top: 1px solid var(--border); }
.pq-inner { max-width: 1380px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pq-label { display: block; font-family: var(--label); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 18px; }
.pq-title { margin: 0 0 20px; font-family: var(--headline); font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 900; line-height: 0.96; letter-spacing: -0.04em; text-transform: uppercase; color: var(--text); }
.pq-lead { margin: 0; font-size: 1rem; line-height: 1.8; color: var(--muted); }
.pq-list { list-style: none; margin: 0; padding: 0; }
.pq-list li { padding: 18px 0; border-top: 1px solid var(--border); font-size: 1rem; line-height: 1.6; color: var(--text); display: flex; gap: 14px; align-items: flex-start; }
.pq-list li::before { content: "—"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pq-list li:last-child { border-bottom: 1px solid var(--border); }
@media (max-width: 768px) { .pq-inner { grid-template-columns: 1fr; gap: 36px; } }
