/* ============================================================
   VITANZA — SITE INSTITUCIONAL
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --vz-black: #0A0A0A;
  --vz-onyx: #141414;
  --vz-graphite: #1F1F1F;
  --vz-charcoal: #2A2A2A;
  --vz-ash: #3A3A3A;
  --vz-smoke: #6B6B6B;
  --vz-stone: #9A9A9A;
  --vz-mist: #C9C7C4;
  --vz-pearl: #EDE9E4;
  --vz-ivory: #F7F4EF;
  --vz-rose-gold: #D4A28A;
  --vz-rose-gold-soft: #E8C5B0;
  --vz-rose-gold-deep: #8E5C45;
  --vz-copper: #B97E5C;

  --metallic: linear-gradient(135deg, #6B3F2A 0%, #B97E5C 22%, #E8C5B0 45%, #B97E5C 70%, #6B3F2A 100%);

  --font-display: 'Marcellus', 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-num: 'Manrope', 'Inter', sans-serif;

  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body {
  background: var(--vz-black);
  color: var(--vz-pearl);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  z-index: 100;
  color: #fff;
  background: rgba(10, 10, 10, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease-out-soft), backdrop-filter 0.4s var(--ease-out-soft), color 0.4s var(--ease-out-soft), border-color 0.4s var(--ease-out-soft);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: rgba(237, 233, 228, 0.06);
}
.nav.is-on-cream {
  color: var(--vz-black);
  background: rgba(247, 244, 239, 0.82);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: rgba(10, 10, 10, 0.06);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  height: 36px;
  position: relative;
  z-index: 220;
}
.nav__brand img {
  height: 36px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease-out-soft), filter 0.4s var(--ease-out-soft);
}
.nav.is-scrolled .nav__brand img { height: 30px; }
/* On cream sections, the rose-gold emblem stays itself; no inversion needed
   (rose-gold reads on both backgrounds). Slight contrast bump on cream: */
.nav.is-on-cream .nav__brand img { filter: contrast(1.05); }
.nav__list {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav__list a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease-out-soft);
}
.nav__list a:hover { opacity: 1; }
.nav__list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 0.5px;
  background: currentColor;
  transition: width 0.35s var(--ease-out-soft);
}
.nav__list a:hover::after { width: 100%; }

.nav__cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 0.5px solid currentColor;
  transition: all 0.35s var(--ease-out-soft);
}
.nav__cta:hover { background: #fff; color: var(--vz-black); }

/* Hamburger toggle */
.nav__toggle {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 220;
}
.nav__toggle-line {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 0.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out-soft), opacity 0.3s var(--ease-out-soft), top 0.4s var(--ease-out-soft);
}
.nav__toggle-line:nth-child(1) { top: 12px; }
.nav__toggle-line:nth-child(2) { top: 20px; }
.nav__toggle.is-open .nav__toggle-line:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav__toggle.is-open .nav__toggle-line:nth-child(2) { top: 16px; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--vz-black);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-soft);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__inner {
  height: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px 28px 36px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(212,162,138,0.10), transparent 70%),
    var(--vz-black);
}
.mobile-menu__eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vz-rose-gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.mobile-menu__eyebrow::before {
  content: '';
  width: 36px;
  height: 0.5px;
  background: currentColor;
}
.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 36px 0;
}
.mobile-menu__list li {
  border-top: 0.5px solid rgba(255,255,255,0.10);
}
.mobile-menu__list li:last-child {
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
}
.mobile-menu__list a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 38px);
  letter-spacing: -0.005em;
  color: var(--vz-pearl);
  transition: color 0.3s var(--ease-out-soft), padding 0.3s var(--ease-out-soft);
}
.mobile-menu__list a:active { color: var(--vz-rose-gold); padding-left: 8px; }
.mobile-menu__num {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--vz-rose-gold);
  font-weight: 500;
  min-width: 32px;
}
.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 0.5px solid rgba(255,255,255,0.10);
  padding-top: 24px;
}
.mobile-menu__sig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--vz-rose-gold);
}
.mobile-menu__cta {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vz-pearl);
  border: 0.5px solid rgba(237,233,228,0.30);
  padding: 16px 20px;
  text-align: center;
}

@media (max-width: 880px) {
  .nav { padding: 16px 20px; gap: 14px; }
  .nav__list { display: none; }
  .nav__toggle { display: block; }
  /* Compact CTA stays visible next to the hamburger */
  .nav__cta {
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.28em;
    border-color: rgba(237,233,228,0.40);
    color: var(--vz-pearl);
  }
  .nav.is-on-cream .nav__cta {
    border-color: rgba(10,10,10,0.30);
    color: var(--vz-black);
  }
}
/* Tiny phones: hide compact CTA — menu still surfaces it */
@media (max-width: 380px) {
  .nav__cta { display: none; }
}
@media (max-width: 880px) {
  body.menu-open { overflow: hidden; }
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vz-rose-gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 0.5px;
  background: currentColor;
  display: inline-block;
}

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.01em;
}

.h-1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.005em;
}

.h-2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
}

.serif {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
}

.lead {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--vz-mist);
}

.body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vz-mist);
}

.body--sm {
  font-size: 13px;
  line-height: 1.65;
  color: var(--vz-stone);
}

.copper { color: var(--vz-rose-gold); }

.metallic-text {
  background: var(--metallic);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.section {
  padding: 140px 48px;
  position: relative;
}
.section--tight { padding: 100px 48px; }
.section--xl { padding: 200px 48px; }

.section--ivory {
  background: var(--vz-ivory);
  color: var(--vz-black);
}
.section--ivory .body { color: #4A4A4A; }
.section--ivory .body--sm { color: #6B6B6B; }
.section--ivory .lead { color: #2A2A2A; }
.section--ivory .eyebrow { color: var(--vz-rose-gold-deep); }

.section--onyx { background: var(--vz-onyx); }

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.container--narrow { max-width: 920px; margin: 0 auto; }

.section__num {
  position: absolute;
  top: 48px;
  right: 48px;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--vz-rose-gold);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .section { padding: 100px 24px; }
  .section--tight { padding: 80px 24px; }
  .section--xl { padding: 140px 24px; }
  .section__num { top: 24px; right: 24px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212,162,138,0.06), transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 70%, rgba(185,126,92,0.08), transparent 60%),
    var(--vz-black);
  z-index: -1;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

.hero__logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: min(560px, 60vw);
  opacity: 0.92;
  pointer-events: none;
}
.hero__logo img { width: 100%; height: auto; }

.hero__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding-bottom: 20px;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
  max-width: 800px;
}
.hero__tagline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--vz-rose-gold);
}
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  align-items: flex-end;
}
.hero__meta .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vz-stone);
}
.hero__meta .val {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vz-pearl);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vz-stone);
  z-index: 2;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--vz-rose-gold), transparent);
  animation: scrollPulse 2.4s var(--ease-in-out) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 768px) {
  .hero { padding: 0 24px 60px; }
  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero__meta { text-align: left; align-items: flex-start; }
  .hero__logo { width: min(360px, 80vw); }
  .hero__scroll { display: none; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--vz-black);
  position: relative;
}
.manifesto__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--vz-pearl);
  max-width: 920px;
}
.manifesto__text em {
  font-style: italic;
  color: var(--vz-rose-gold);
  font-weight: 400;
}
.manifesto__signoff {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.02em;
  color: var(--vz-rose-gold);
  display: block;
  margin-top: 32px;
  font-weight: 400;
}

/* ============================================================
   ESSÊNCIA — pillars
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 0.5px solid rgba(0,0,0,0.12);
  border-left: 0.5px solid rgba(0,0,0,0.12);
}
.pillar {
  padding: 56px 48px;
  border-right: 0.5px solid rgba(0,0,0,0.12);
  border-bottom: 0.5px solid rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  transition: background 0.5s var(--ease-out-soft);
}
.pillar:hover { background: rgba(212,162,138,0.04); }
.pillar__num {
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--vz-rose-gold-deep);
  font-weight: 500;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 4px;
}
.pillar__body {
  font-size: 15px;
  line-height: 1.7;
  color: #4A4A4A;
  max-width: 380px;
}
@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 40px 28px; }
  .pillar__title { font-size: 26px; }
}

/* ============================================================
   VALORES — horizontal strip
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 0.5px solid rgba(255,255,255,0.12);
}
.value {
  padding: 48px 32px;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.value:last-child { border-right: none; }
.value__index {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--vz-rose-gold);
  font-weight: 500;
}
.value__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 8px;
}
.value__body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--vz-stone);
  margin-top: auto;
  padding-top: 40px;
}
.value::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--vz-rose-gold);
  transition: width 0.6s var(--ease-out-soft);
}
.value:hover::after { width: 100%; }
@media (max-width: 880px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .values { grid-template-columns: 1fr; }
  .value { border-right: none; }
}

/* ============================================================
   ARQUÉTIPO — split layout
   ============================================================ */
.archetype {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: center;
}
.archetype__visual {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(212,162,138,0.20), transparent 60%),
    var(--vz-onyx);
  position: relative;
  overflow: hidden;
  border: 0.5px solid rgba(212,162,138,0.18);
}
.archetype__visual::before {
  content: 'O HERÓI';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  letter-spacing: 0.04em;
  background: var(--metallic);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  animation: metallicShift 8s ease-in-out infinite;
}
.archetype__visual::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 0.5px solid rgba(212,162,138,0.20);
  pointer-events: none;
}
@keyframes metallicShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.archetype__corners {
  position: absolute;
  inset: 12px;
  pointer-events: none;
}
.archetype__corners span {
  position: absolute;
  width: 16px; height: 16px;
  border: 0.5px solid var(--vz-rose-gold);
  opacity: 0.6;
}
.archetype__corners span:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.archetype__corners span:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.archetype__corners span:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.archetype__corners span:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }

.archetype__attrs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 0.5px solid rgba(255,255,255,0.10);
}
.archetype__attr {
  padding: 24px 0;
  padding-right: 24px;
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
}
.archetype__attr dt {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vz-rose-gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.archetype__attr dd {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--vz-pearl);
  margin-bottom: 6px;
}
.archetype__attr p {
  font-size: 12px;
  color: var(--vz-stone);
  line-height: 1.6;
}

@media (max-width: 880px) {
  .archetype { grid-template-columns: 1fr; gap: 56px; }
  .archetype__attrs { grid-template-columns: 1fr; }
}

/* ============================================================
   PERSONAS
   ============================================================ */
.personas {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0.5px solid rgba(0,0,0,0.12);
}
.persona {
  display: grid;
  grid-template-columns: 100px 220px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.12);
  align-items: start;
  position: relative;
  transition: padding 0.4s var(--ease-out-soft);
}
.persona:hover { padding-left: 16px; }
.persona__index {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--vz-rose-gold-deep);
  font-weight: 500;
  padding-top: 8px;
}
.persona__id {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.persona__name {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
}
.persona__meta {
  font-size: 12px;
  color: #6B6B6B;
  letter-spacing: 0.04em;
  line-height: 1.55;
  font-family: var(--font-num);
}
.persona__story {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: #2A2A2A;
  font-weight: 300;
  max-width: 620px;
}
.persona__story strong {
  font-style: normal;
  font-weight: 400;
  color: var(--vz-rose-gold-deep);
  font-family: var(--font-display);
  font-size: 16px;
  display: block;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .persona { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .persona__name { font-size: 28px; }
}

/* ============================================================
   TOM DE VOZ — yes/no
   ============================================================ */
.voice-attrs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  margin-bottom: 80px;
}
.voice-attr {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.18);
}
.voice-attr strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--vz-pearl);
}
.voice-attr span {
  font-size: 13px;
  color: var(--vz-stone);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .voice-attrs { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.voice-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 80px;
  border-top: 0.5px solid rgba(255,255,255,0.18);
}
.voice-table__head {
  padding: 20px 28px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 0.5px solid rgba(255,255,255,0.18);
}
.voice-table__head--yes { color: var(--vz-rose-gold); }
.voice-table__head--no { color: var(--vz-stone); padding-left: 32px; border-left: 0.5px solid rgba(255,255,255,0.18); }

.voice-table__cell {
  padding: 24px 28px;
  font-size: 16px;
  line-height: 1.55;
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
}
.voice-table__cell--yes {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--vz-pearl);
}
.voice-table__cell--no {
  padding-left: 32px;
  border-left: 0.5px solid rgba(255,255,255,0.18);
  color: var(--vz-smoke);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.18);
}

@media (max-width: 700px) {
  .voice-table { grid-template-columns: 1fr; }
  .voice-table__head--no, .voice-table__cell--no {
    border-left: none;
    padding-left: 28px;
  }
}

/* ============================================================
   QUOTE / pullquote between sections
   ============================================================ */
.pullquote {
  text-align: center;
  padding: 160px 48px;
  background: var(--vz-black);
  position: relative;
}
.pullquote::before, .pullquote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--vz-rose-gold));
}
.pullquote::before { top: 60px; }
.pullquote::after { bottom: 60px; transform: translateX(-50%) rotate(180deg); }
.pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 1000px;
  margin: 0 auto;
}
.pullquote__text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--vz-rose-gold);
}

/* ============================================================
   FOOTER / contato
   ============================================================ */
.footer {
  background: var(--vz-onyx);
  padding: 100px 48px 36px;
  border-top: 0.5px solid rgba(212,162,138,0.18);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
}
.footer__brand h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 24px;
}
.footer__brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--vz-mist);
  max-width: 380px;
  line-height: 1.55;
}
.footer__col h4 {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vz-rose-gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--vz-mist);
  transition: color 0.3s var(--ease-out-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__col a:hover { color: var(--vz-rose-gold); }
.footer__col a span.arrow { opacity: 0; transition: all 0.3s var(--ease-out-soft); }
.footer__col a:hover span.arrow { opacity: 1; transform: translateX(4px); }
.footer__hint {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  padding: 6px 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 1px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vz-smoke);
}
.footer__bottom .signature {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 14px;
  color: var(--vz-rose-gold);
}

@media (max-width: 880px) {
  .footer { padding: 80px 24px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s var(--ease-out-soft), transform 1.1s var(--ease-out-soft);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay1 { transition-delay: 0.12s; }
.reveal--delay2 { transition-delay: 0.24s; }
.reveal--delay3 { transition-delay: 0.36s; }

/* Marquee for tagline strip */
.marquee {
  overflow: hidden;
  border-top: 0.5px solid rgba(255,255,255,0.10);
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
  background: var(--vz-black);
  padding: 32px 0;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 80px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 0.02em;
  color: var(--vz-pearl);
  display: flex;
  align-items: center;
  gap: 80px;
}
.marquee__item::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--vz-rose-gold);
  border-radius: 50%;
  display: inline-block;
}
.marquee__item em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--vz-rose-gold);
  font-weight: 300;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   MOBILE — comprehensive overrides (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Section rhythm */
  .section { padding: 80px 22px; }
  .section--tight { padding: 64px 22px; }
  .section--xl { padding: 110px 22px; }

  /* Section number — push to single line, smaller, less prominent */
  .section__num {
    top: 20px; right: 20px;
    font-size: 9px;
    letter-spacing: 0.28em;
    max-width: 130px;
    text-align: right;
    line-height: 1.4;
  }

  /* Hero */
  .hero { padding: 0 22px 56px; }
  .hero__logo { width: min(320px, 78vw); transform: translate(-50%, -58%); }
  .hero__bottom { grid-template-columns: 1fr; gap: 28px; padding-bottom: 0; }
  .hero__tagline { font-size: clamp(40px, 11vw, 64px); }
  .hero__meta { text-align: left; align-items: flex-start; gap: 6px; }
  .hero__scroll { display: none; }

  /* Eyebrow tighter */
  .eyebrow { font-size: 10px; letter-spacing: 0.28em; gap: 12px; }
  .eyebrow::before { width: 24px; }

  /* Type — tighten clamp floors for small screens */
  .h-1 { font-size: clamp(32px, 9vw, 48px); line-height: 1.08; }
  .h-2 { font-size: clamp(24px, 7vw, 32px); }
  .lead { font-size: 17px; line-height: 1.55; }
  .body { font-size: 14px; line-height: 1.7; }

  /* Manifesto */
  .manifesto__text { font-size: clamp(20px, 5.6vw, 26px); line-height: 1.4; }
  .manifesto__signoff { font-size: 18px; margin-top: 24px; }

  /* Pillars — single col, smaller padding */
  .pillars { margin-top: 48px; }
  .pillar { padding: 32px 22px; gap: 12px; }
  .pillar__title { font-size: 22px; }
  .pillar__body { font-size: 14px; }

  /* Values — stack, generous touch */
  .values { grid-template-columns: 1fr; margin-top: 40px; }
  .value {
    padding: 32px 22px;
    border-right: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  .value__index { flex: 0 0 100%; }
  .value__title { font-size: 24px; flex: 0 0 auto; }
  .value__body {
    font-size: 13px;
    padding-top: 0;
    margin-top: 0;
    flex: 0 0 100%;
  }

  /* Archetype */
  .archetype { gap: 40px; }
  .archetype__visual { aspect-ratio: 1/1; }
  .archetype__visual::before { font-size: clamp(40px, 12vw, 64px); }
  .archetype__attrs { grid-template-columns: 1fr; margin-top: 32px; }
  .archetype__attr { padding: 18px 0; padding-right: 0; }

  /* Personas */
  .personas { margin-top: 48px; }
  .persona { padding: 32px 0; gap: 14px; }
  .persona:hover { padding-left: 0; }
  .persona__index { padding-top: 0; font-size: 11px; }
  .persona__name { font-size: 26px; }
  .persona__story { font-size: 16px; line-height: 1.55; }

  /* Voice attrs */
  .voice-attrs { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; margin-bottom: 56px; }
  .voice-attr { padding-top: 18px; gap: 8px; }
  .voice-attr strong { font-size: 20px; }
  .voice-attr span { font-size: 12px; }

  /* Voice table — keep two cols stacked vertically (yes block then no block) */
  .voice-table { grid-template-columns: 1fr; margin-top: 56px; }
  .voice-table__head { padding: 16px 20px; font-size: 10px; }
  .voice-table__head--no { padding-left: 20px; border-left: none; border-top: 0.5px dashed rgba(255,255,255,0.18); }
  .voice-table__cell { padding: 18px 20px; font-size: 14px; }
  .voice-table__cell--no { padding-left: 20px; border-left: none; }

  /* Pullquote */
  .pullquote { padding: 96px 22px; }
  .pullquote::before, .pullquote::after { height: 36px; }
  .pullquote::before { top: 36px; }
  .pullquote::after { bottom: 36px; }
  .pullquote__text { font-size: clamp(28px, 8.5vw, 44px); line-height: 1.18; }

  /* Footer */
  .footer { padding: 64px 22px 28px; }
  .footer__top { gap: 36px; padding-bottom: 40px; }
  .footer__brand h3 { font-size: clamp(28px, 8vw, 40px); margin-bottom: 16px; }
  .footer__brand p { font-size: 16px; }
  .footer__col h4 { margin-bottom: 18px; }

  /* Marquee */
  .marquee { padding: 22px 0; }
  .marquee__track { gap: 56px; }
  .marquee__item { font-size: clamp(28px, 7vw, 44px); gap: 56px; }

  /* Section number ‚Äî hide on hero overlap */
  #personas .section__num,
  #tom .section__num,
  #manifesto .section__num,
  #essencia .section__num,
  #arquetipo .section__num { font-size: 9px; }
}

/* Even tighter — small phones */
@media (max-width: 380px) {
  .section, .section--tight { padding-left: 18px; padding-right: 18px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .footer { padding-left: 18px; padding-right: 18px; }
  .pillar { padding-left: 18px; padding-right: 18px; }
  .value { padding-left: 18px; padding-right: 18px; }
  .voice-attrs { grid-template-columns: 1fr; }
}

/* Reduce-motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
