/* ============================================================
   AGÊNCIA LUVEN — SISTEMA DE DESIGN INSTITUCIONAL
   Marketing e Comunicação — Identidade Corporativa Premium
   ============================================================ */

/* ── IMPORTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Cores principais */
  --c-black:        #0e0e0e;
  --c-graphite:     #1c1c1e;
  --c-dark:         #242424;
  --c-charcoal:     #363636;
  --c-mid:          #6a6a72;
  --c-subtle:       #9a9aa4;
  --c-border:       #d4d2ce;
  --c-border-light: #e8e6e2;
  --c-warm-white:   #f6f4f0;
  --c-off-white:    #eceae6;
  --c-white:        #faf9f7;

  /* Destaque — azul petróleo */
  --c-accent:       #1b4f72;
  --c-accent-mid:   #2471a3;
  --c-accent-pale:  #d6e8f5;

  /* Âmbar discreto para estados */
  --c-amber:        #b7791f;
  --c-amber-pale:   #fef3dc;

  /* Tipografia */
  --f-serif:  'Cormorant Garamond', 'Georgia', serif;
  --f-sans:   'Inter', 'Helvetica Neue', sans-serif;
  --f-mono:   'DM Mono', 'Courier New', monospace;

  /* Escala tipográfica */
  --t-xs:   0.75rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-md:   1.125rem;
  --t-lg:   1.375rem;
  --t-xl:   1.75rem;
  --t-2xl:  2.25rem;
  --t-3xl:  3rem;
  --t-4xl:  4rem;
  --t-5xl:  5.5rem;

  /* Espaçamento */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-text: 720px;
  --gutter: 2rem;

  /* Transições */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur: 240ms;
  --dur-slow: 400ms;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);

  /* Bordas */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-sans);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-dark);
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: 400; line-height: 1.2; }

/* ── TIPOGRAFIA GLOBAL ───────────────────────────────────── */
.t-serif   { font-family: var(--f-serif); }
.t-sans    { font-family: var(--f-sans); }
.t-mono    { font-family: var(--f-mono); }

.t-display {
  font-family: var(--f-serif);
  font-size: clamp(var(--t-3xl), 7vw, var(--t-5xl));
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.t-headline {
  font-family: var(--f-serif);
  font-size: clamp(var(--t-xl), 4vw, var(--t-3xl));
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.t-title {
  font-family: var(--f-serif);
  font-size: clamp(var(--t-lg), 2.5vw, var(--t-2xl));
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.t-overline {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mid);
}

.t-body {
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--c-charcoal);
}

.t-body-sm {
  font-size: var(--t-sm);
  line-height: 1.65;
  color: var(--c-mid);
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--max-w-text);
}

.container--wide {
  max-width: 1440px;
}

.section {
  padding-top: var(--s-24);
  padding-bottom: var(--s-24);
}

.section--sm {
  padding-top: var(--s-16);
  padding-bottom: var(--s-16);
}

.section--lg {
  padding-top: var(--s-32);
  padding-bottom: var(--s-32);
}

/* Grid */
.grid { display: grid; }
.grid--2 { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: var(--s-8); }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }

/* Flex helpers */
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--col { flex-direction: column; }
.gap-2 { gap: var(--s-2); }
.gap-4 { gap: var(--s-4); }
.gap-6 { gap: var(--s-6); }
.gap-8 { gap: var(--s-8); }

/* ── HEADER / NAV ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border-light);
  transition: box-shadow var(--dur) var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-name {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-black);
  line-height: 1;
}

.nav__logo-sub {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mid);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}

.nav__link {
  font-size: var(--t-sm);
  font-weight: 400;
  color: var(--c-charcoal);
  letter-spacing: 0.01em;
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width var(--dur) var(--ease);
}

.nav__link:hover { color: var(--c-accent); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--c-accent); }
.nav__link.active::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-white);
  background: var(--c-accent);
  padding: var(--s-2) var(--s-5);
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  letter-spacing: 0.02em;
}

.nav__cta:hover {
  background: var(--c-black);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-dark);
  transition: all var(--dur) var(--ease);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 68px;
  background: var(--c-graphite);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(27, 79, 114, 0.12) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.hero__grid-pattern {
  position: absolute;
  inset: 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);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 70%, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--s-24);
  max-width: 820px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}

.hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--c-accent-mid);
}

.hero__eyebrow-text {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent-mid);
}

.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--c-white);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: var(--s-6);
}

.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.hero__subtitle {
  font-size: clamp(var(--t-base), 1.5vw, var(--t-md));
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: var(--s-10);
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}

.hero__stat-row {
  position: relative;
  z-index: 2;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--s-8) 0;
}

.hero__stat {
  flex: 1;
  padding: var(--s-4) var(--s-8);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero__stat:last-child { border-right: none; }

.hero__stat-value {
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: -0.02em;
  display: block;
}

.hero__stat-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: var(--s-1);
}

/* ── BOTÕES ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-sans);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: var(--s-3) var(--s-6);
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--c-white);
  color: var(--c-black);
  border: 1px solid transparent;
}

.btn--primary:hover {
  background: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--c-white);
}

.btn--dark {
  background: var(--c-black);
  color: var(--c-white);
  border: 1px solid transparent;
}

.btn--dark:hover {
  background: var(--c-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
  padding: var(--s-3) var(--s-6);
}

.btn--ghost:hover {
  background: var(--c-accent);
  color: var(--c-white);
}

.btn--lg {
  padding: var(--s-4) var(--s-8);
  font-size: var(--t-base);
}

.btn--sm {
  padding: var(--s-2) var(--s-4);
  font-size: var(--t-xs);
}

/* Ícone de seta */
.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--dur) var(--ease);
}
.btn:hover .arrow-icon { transform: translateX(3px); }

/* ── SEÇÃO LABEL / HEADER ────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

.section-label__line {
  width: 24px;
  height: 1px;
  background: var(--c-accent);
  flex-shrink: 0;
}

.section-label__text {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}

/* ── DIVISOR ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--c-border-light);
  width: 100%;
}

.divider--dark { background: var(--c-border); }

/* ── CARDS CORPORATIVOS ──────────────────────────────────── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  padding: var(--s-8);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--flat {
  background: var(--c-warm-white);
  border: none;
  border-radius: var(--r-md);
}

.card--bordered {
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}

.card__number {
  font-family: var(--f-serif);
  font-size: var(--t-4xl);
  font-weight: 300;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: var(--s-4);
  letter-spacing: -0.04em;
}

.card__icon {
  width: 40px;
  height: 40px;
  background: var(--c-accent-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  flex-shrink: 0;
}

.card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.5;
}

.card__label {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-subtle);
  margin-bottom: var(--s-3);
}

.card__title {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: var(--s-3);
  line-height: 1.3;
}

.card__body {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--c-mid);
}

/* ── SOBRE PREVIEW / EMPRESA ─────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.split-section--reverse {
  direction: rtl;
}

.split-section--reverse > * {
  direction: ltr;
}

.split-panel {
  padding: var(--s-24) var(--s-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-panel--dark {
  background: var(--c-graphite);
  color: var(--c-white);
}

.split-panel--accent {
  background: var(--c-accent);
  color: var(--c-white);
}

.split-panel--warm {
  background: var(--c-warm-white);
}

/* ── SERVIÇOS ────────────────────────────────────────────── */
.service-item {
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--c-border-light);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: var(--s-6);
  align-items: start;
  transition: all var(--dur) var(--ease);
  cursor: default;
}

.service-item:last-child { border-bottom: none; }

.service-item:hover {
  padding-left: var(--s-3);
}

.service-item__num {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  color: var(--c-subtle);
  padding-top: 4px;
  letter-spacing: 0.05em;
}

.service-item__content {}

.service-item__title {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}

.service-item__desc {
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.65;
  max-width: 520px;
}

.service-item__arrow {
  color: var(--c-subtle);
  font-size: var(--t-xl);
  line-height: 1;
  transition: all var(--dur) var(--ease);
  padding-top: 2px;
}

.service-item:hover .service-item__arrow {
  color: var(--c-accent);
  transform: translateX(4px);
}

/* ── DIFERENCIAIS ────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.diff-item {
  background: var(--c-white);
  padding: var(--s-8) var(--s-8);
  position: relative;
}

.diff-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--c-accent);
  transition: height var(--dur-slow) var(--ease);
}

.diff-item:hover::before { height: 100%; }

.diff-item__num {
  font-family: var(--f-serif);
  font-size: var(--t-3xl);
  font-weight: 300;
  color: var(--c-off-white);
  line-height: 1;
  margin-bottom: var(--s-4);
  letter-spacing: -0.04em;
}

.diff-item__title {
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}

.diff-item__text {
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.65;
}

/* ── PROCESSO ────────────────────────────────────────────── */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-8);
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--c-border-light);
  position: relative;
}

.process-step:last-child { border-bottom: none; }

.process-step__indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.process-step__num {
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  color: var(--c-mid);
  flex-shrink: 0;
  background: var(--c-white);
  position: relative;
  z-index: 1;
  transition: all var(--dur) var(--ease);
}

.process-step:hover .process-step__num {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.process-step__line {
  flex: 1;
  width: 1px;
  background: var(--c-border-light);
  margin-top: var(--s-2);
}

.process-step:last-child .process-step__line { display: none; }

.process-step__content {
  padding-top: 8px;
  padding-bottom: var(--s-6);
}

.process-step__title {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: var(--s-2);
}

.process-step__text {
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.7;
  max-width: 480px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-border-light);
}

.faq-item {
  border-bottom: 1px solid var(--c-border-light);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--s-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-item__q-text {
  font-family: var(--f-serif);
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--c-dark);
  text-align: left;
  letter-spacing: -0.005em;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
  color: var(--c-mid);
  font-size: var(--t-lg);
  line-height: 1;
}

.faq-item.open .faq-item__icon {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-item.open .faq-item__answer { max-height: 200px; }

.faq-item__a-text {
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.75;
  padding-bottom: var(--s-5);
  max-width: 680px;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-band {
  background: var(--c-graphite);
  padding: var(--s-20) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}

.cta-band__text {}

.cta-band__title {
  font-family: var(--f-serif);
  font-size: clamp(var(--t-xl), 3.5vw, var(--t-3xl));
  font-weight: 300;
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--s-3);
}

.cta-band__sub {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--c-black);
  color: rgba(255,255,255,0.5);
  padding-top: var(--s-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s-12);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {}

.footer__brand-name {
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: 0.02em;
  margin-bottom: var(--s-1);
}

.footer__brand-sub {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: var(--s-5);
}

.footer__brand-desc {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer__section-title {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: var(--s-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.footer__link {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--dur) var(--ease);
}

.footer__link:hover { color: rgba(255,255,255,0.85); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}

.footer__contact-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  min-width: 60px;
  padding-top: 2px;
}

.footer__contact-value {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  transition: color var(--dur) var(--ease);
}

.footer__contact-value a:hover { color: rgba(255,255,255,0.85); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5) 0;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.01em;
}

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}

.footer__legal-link {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.2);
  transition: color var(--dur) var(--ease);
}

.footer__legal-link:hover { color: rgba(255,255,255,0.5); }

/* ── SOBRE (INSTITUCIONAL) ───────────────────────────────── */
.page-hero {
  padding-top: calc(68px + var(--s-16));
  padding-bottom: var(--s-16);
  background: var(--c-warm-white);
  border-bottom: 1px solid var(--c-border-light);
}

.page-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-12);
}

.page-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(var(--t-2xl), 5vw, var(--t-4xl));
  font-weight: 300;
  color: var(--c-dark);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.page-hero__meta {
  flex-shrink: 0;
  text-align: right;
}

.page-hero__meta-item {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-subtle);
  line-height: 2;
}

.timeline {
  position: relative;
  padding-left: var(--s-12);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--c-border-light);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--s-10);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--s-12) - 5px);
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  background: var(--c-white);
  transition: border-color var(--dur) var(--ease);
}

.timeline-item:hover::before {
  border-color: var(--c-accent);
}

.timeline-item__year {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: var(--s-1);
  text-transform: uppercase;
}

.timeline-item__title {
  font-family: var(--f-serif);
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: var(--s-2);
}

.timeline-item__text {
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.7;
  max-width: 480px;
}

/* Missão Visão Valores */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.mvv-item {
  padding: var(--s-10) var(--s-8);
  border-right: 1px solid var(--c-border-light);
  position: relative;
}

.mvv-item:last-child { border-right: none; }

.mvv-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--s-8);
  right: var(--s-8);
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform var(--dur-slow) var(--ease);
  transform-origin: left;
}

.mvv-item:hover::after { transform: scaleX(1); }

.mvv-item__label {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--s-4);
}

.mvv-item__title {
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.mvv-item__text {
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.7;
}

/* Valores lista */
.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.values-item {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-5);
  background: var(--c-warm-white);
  border-radius: var(--r-md);
}

.values-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.values-item__content {}

.values-item__title {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: var(--s-1);
}

.values-item__text {
  font-size: var(--t-xs);
  color: var(--c-mid);
  line-height: 1.65;
}

/* ── CONTATO ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-16);
  align-items: start;
}

.contact-info {}

.contact-info__title {
  font-family: var(--f-serif);
  font-size: clamp(var(--t-xl), 3vw, var(--t-2xl));
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.contact-info__intro {
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.75;
  margin-bottom: var(--s-8);
}

.contact-block {
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-border-light);
}

.contact-block:last-child { border-bottom: 1px solid var(--c-border-light); }

.contact-block__label {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-subtle);
  margin-bottom: var(--s-1);
}

.contact-block__value {
  font-size: var(--t-base);
  color: var(--c-dark);
  font-weight: 400;
  transition: color var(--dur) var(--ease);
}

.contact-block__value a:hover { color: var(--c-accent); }

.contact-block__sub {
  font-size: var(--t-xs);
  color: var(--c-subtle);
  margin-top: var(--s-1);
}

/* Form */
.form-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--s-10);
  box-shadow: var(--shadow-sm);
}

.form-card__title {
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: var(--s-2);
}

.form-card__sub {
  font-size: var(--t-sm);
  color: var(--c-mid);
  margin-bottom: var(--s-8);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  margin-bottom: var(--s-4);
}

.form-field:last-child { margin-bottom: 0; }

.form-field--full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mid);
}

.form-input {
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  background: var(--c-warm-white);
  color: var(--c-dark);
  font-size: var(--t-sm);
  transition: all var(--dur) var(--ease);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--c-accent);
  background: var(--c-white);
  box-shadow: 0 0 0 3px var(--c-accent-pale);
}

.form-input::placeholder { color: var(--c-subtle); }

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: var(--s-4);
  background: var(--c-accent);
  color: var(--c-white);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--f-sans);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  margin-top: var(--s-2);
  text-transform: uppercase;
}

.form-submit:hover {
  background: var(--c-black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── PÁGINAS LEGAIS (TERMOS, PRIVACIDADE, REEMBOLSO) ──────── */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--s-16);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(68px + var(--s-8));
}

.legal-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--c-border-light);
}

.legal-nav__item {
  padding: var(--s-2) var(--s-4);
  font-size: var(--t-sm);
  color: var(--c-mid);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all var(--dur) var(--ease);
  line-height: 1.5;
}

.legal-nav__item:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
}

.legal-nav__item.active {
  color: var(--c-accent);
  border-color: var(--c-accent);
}

.legal-content {}

.legal-section {
  margin-bottom: var(--s-12);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid var(--c-border-light);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-h2 {
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--c-dark);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-4);
  line-height: 1.25;
}

.legal-h3 {
  font-family: var(--f-sans);
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--c-charcoal);
  margin-bottom: var(--s-3);
  margin-top: var(--s-6);
}

.legal-p {
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.8;
  margin-bottom: var(--s-4);
}

.legal-p:last-child { margin-bottom: 0; }

.legal-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

.legal-ul li {
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.7;
  padding-left: var(--s-5);
  position: relative;
}

.legal-ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 300;
}

.legal-highlight {
  background: var(--c-accent-pale);
  border-left: 3px solid var(--c-accent);
  padding: var(--s-4) var(--s-5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--s-6) 0;
}

.legal-highlight p {
  font-size: var(--t-sm);
  color: var(--c-accent);
  line-height: 1.7;
  margin: 0;
}

/* ── UTILIDADES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }

.mt-2  { margin-top: var(--s-2); }
.mt-4  { margin-top: var(--s-4); }
.mt-6  { margin-top: var(--s-6); }
.mt-8  { margin-top: var(--s-8); }
.mt-12 { margin-top: var(--s-12); }
.mt-16 { margin-top: var(--s-16); }

.mb-2  { margin-bottom: var(--s-2); }
.mb-4  { margin-bottom: var(--s-4); }
.mb-6  { margin-bottom: var(--s-6); }
.mb-8  { margin-bottom: var(--s-8); }
.mb-12 { margin-bottom: var(--s-12); }
.mb-16 { margin-bottom: var(--s-16); }

.color-accent { color: var(--c-accent); }
.color-mid    { color: var(--c-mid); }
.color-dark   { color: var(--c-dark); }
.color-white  { color: var(--c-white); }

.bg-warm  { background: var(--c-warm-white); }
.bg-dark  { background: var(--c-graphite); }
.bg-black { background: var(--c-black); }

.weight-300 { font-weight: 300; }
.weight-400 { font-weight: 400; }
.weight-500 { font-weight: 500; }

.serif { font-family: var(--f-serif); }
.mono  { font-family: var(--f-mono); }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: var(--s-1) var(--s-3);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--c-accent-pale);
  color: var(--c-accent);
  border: 1px solid rgba(27, 79, 114, 0.15);
}

.badge--dark {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.1);
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-6);
  background: #25d366;
  color: #fff;
  border-radius: var(--r-sm);
  font-size: var(--t-sm);
  font-weight: 500;
  transition: all var(--dur) var(--ease);
  border: none;
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Números destacados */
.stat-large {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-dark);
}

/* ── ANIMAÇÕES ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s var(--ease) both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ── SCROLL HEADER ───────────────────────────────────────── */
.js-nav-scroll { transition: box-shadow var(--dur) var(--ease); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --gutter: 1.5rem; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }

  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: var(--s-16) var(--s-10); }
  .split-section--reverse { direction: ltr; }

  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid  { grid-template-columns: 1fr; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; border-left: none; border-bottom: 1px solid var(--c-border-light); padding-bottom: var(--s-6); margin-bottom: var(--s-8); }
  .legal-nav__list { flex-direction: row; flex-wrap: wrap; gap: var(--s-1); border: none; }
  .legal-nav__item { border-left: none; border-bottom: 2px solid transparent; margin-left: 0; border-radius: var(--r-sm); padding: var(--s-1) var(--s-3); }
  .legal-nav__item:hover, .legal-nav__item.active { border-left-color: transparent; border-bottom-color: var(--c-accent); }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --gutter: 1.25rem;
    --s-24: 4rem;
    --s-32: 5rem;
  }

  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-white);
    padding: var(--s-6) var(--gutter);
    border-bottom: 1px solid var(--c-border-light);
    box-shadow: var(--shadow-md);
    gap: var(--s-1);
  }

  .nav__links.open .nav__link {
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--c-border-light);
    font-size: var(--t-base);
  }

  .nav__links.open .nav__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: var(--s-2);
  }

  .hero { min-height: auto; padding-bottom: 0; }
  .hero__content { padding-bottom: var(--s-16); }
  .hero__stat-row { flex-direction: column; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: var(--s-4); }
  .hero__stat:last-child { border-bottom: none; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .page-hero__inner { flex-direction: column; gap: var(--s-4); }
  .page-hero__meta  { text-align: left; }

  .service-item { grid-template-columns: 40px 1fr; }
  .service-item__arrow { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal-links { flex-wrap: wrap; gap: var(--s-3); }

  .process-step { grid-template-columns: 56px 1fr; gap: var(--s-4); }

  .section { padding-top: var(--s-16); padding-bottom: var(--s-16); }
  .section--lg { padding-top: var(--s-20); padding-bottom: var(--s-20); }
}

@media (max-width: 480px) {
  :root { --gutter: 1rem; }
  .split-panel { padding: var(--s-12) var(--s-6); }
  .form-card { padding: var(--s-6); }
}
