/* ============================================
   (NoNAP) — Design System v3
   Estúdio Criativo
   Rosa cirúrgico · Creme editorial · Spray paint soul
   ============================================ */

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* === GRAIN === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px;
}

/* === TOKENS === */
:root {
  --bg: #F5F0E8;
  --surface: #EDE8DF;
  --surface-2: #E4DED4;
  --ink: #0A0A0A;
  --ink-80: rgba(10,10,10,0.8);
  --ink-60: rgba(10,10,10,0.6);
  --ink-30: rgba(10,10,10,0.3);
  --ink-10: rgba(10,10,10,0.07);
  --accent: #E63B60;
  --accent-deep: #C42A40;
  --accent-dim: rgba(230,59,96,0.08);
  --white: #FAFAFA;
  --border: rgba(10,10,10,0.1);
  --border-strong: rgba(10,10,10,0.18);

  /* Type scale */
  --type-display: clamp(64px, 10.5vw, 148px);
  --type-xl:      clamp(44px, 6.5vw,  88px);
  --type-lg:      clamp(30px, 4vw,    52px);
  --type-md:      clamp(20px, 2.5vw,  30px);
  --type-base:    16px;
  --type-sm:      14px;
  --type-xs:      13px;
  --type-tag:     11px;
  --type-micro:   10px;

  /* Layout */
  --nav-h: 72px;
  --pad: clamp(24px, 5vw, 80px);
  --max-w: 1280px;
  --radius: 8px;

  /* Fonts */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Rubik Spray Paint', cursive;
  --font-hand: 'Gloria Hallelujah', cursive;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  250ms;
  --dur-mid:   550ms;
  --dur-slow:  850ms;
}

/* === BASE === */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--type-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--accent); color: white; }

/* === TYPOGRAPHY === */
h1, .h1 {
  font-size: var(--type-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
h2, .h2 {
  font-size: var(--type-xl);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
h3, .h3 {
  font-size: var(--type-lg);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
h4, .h4 {
  font-size: var(--type-md);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
p { line-height: 1.72; color: var(--ink-60); }
strong { color: var(--ink); font-weight: 700; }

/* Display font */
.display-text {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.82;
  text-transform: uppercase;
}

/* === LABELS === */
.label {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-30);
  display: block;
}
.label-accent { color: var(--accent); }

/* === APARTES === */
.aparte {
  font-family: var(--font-hand);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-30);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track .item {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 36px;
  white-space: nowrap;
  color: var(--ink-30);
}
.marquee-track .dot {
  font-size: 20px;
  color: var(--ink-10);
  flex-shrink: 0;
  line-height: 1;
}
.marquee-dark .marquee-track .item  { color: rgba(245,240,232,0.35); }
.marquee-dark .marquee-track .dot   { color: rgba(245,240,232,0.12); }
.marquee-accent .marquee-track .item { color: rgba(255,255,255,0.5); }
.marquee-accent .marquee-track .dot  { color: rgba(255,255,255,0.2); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SCROLL REVEALS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
[data-reveal="up"]    { transform: translateY(52px); }
[data-reveal="left"]  { transform: translateX(-52px); }
[data-reveal="right"] { transform: translateX(52px); }
[data-reveal="scale"] { transform: scale(0.93); }
[data-reveal="fade"]  { /* opacity only */ }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(245,240,232,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
}
.header-logo { height: 26px; display: flex; align-items: center; }
.header-logo svg { height: 26px; width: auto; }
.header-logo img { height: 26px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 36px; }
.header-nav a {
  font-size: 13px; font-weight: 500;
  color: var(--ink-60);
  transition: color var(--dur-fast) var(--ease-smooth);
  letter-spacing: -0.01em;
}
.header-nav a:hover,
.header-nav a.active { color: var(--ink); }
.header-cta {
  font-family: var(--font-mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: var(--ink) !important;
  padding: 10px 22px !important;
  border-radius: 100px;
  transition: background var(--dur-fast), transform var(--dur-fast) var(--ease-spring) !important;
}
.header-cta:hover {
  background: var(--accent) !important;
  transform: translateY(-1px) !important;
}
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 18px;
  position: relative; z-index: 1001; padding: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease-smooth);
  position: absolute; left: 0;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 8px; }
.nav-toggle span:nth-child(3) { top: 16px; }
.nav-toggle.active span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px var(--pad) 48px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 28px;
  display: block;
}
.hero h1 { margin-bottom: 32px; }
.hero h1 .accent {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.72;
  color: var(--ink-60);
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-cta-row {
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.creature-hero {
  position: absolute;
  right: clamp(-60px, -2vw, -20px);
  bottom: 40px;
  width: clamp(260px, 36vw, 500px);
  opacity: 0.48;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
.hero-ticker {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  position: relative;
  z-index: 2;
}

/* Handwriting animation */
.handwriting-reveal {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.handwriting-reveal::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: var(--bg);
  animation: hw-reveal 1.8s var(--ease-out) forwards;
  animation-delay: 0.6s;
}
@keyframes hw-reveal {
  0% { width: 100%; }
  100% { width: 0%; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 120px var(--pad); position: relative; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-sm  { padding: 80px var(--pad); }
.section-lg  { padding: 160px var(--pad); }
.section-surface { background: var(--surface); }
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark p { color: rgba(245,240,232,0.5); }
.section-dark .label { color: rgba(245,240,232,0.2); }
.section-dark h1, .section-dark h2,
.section-dark h3, .section-dark h4,
.section-dark strong { color: var(--white); }
.section-dark .aparte { color: rgba(245,240,232,0.25); }

.section-accent {
  background: var(--accent);
  color: #fff;
}
.section-accent p { color: rgba(255,255,255,0.65); }
.section-accent h1, .section-accent h2,
.section-accent h3, .section-accent strong { color: #fff; }
.section-accent .label { color: rgba(255,255,255,0.45); }

/* ============================================
   TICKER STRIP
   ============================================ */
.ticker-strip {
  background: var(--ink);
  padding: 20px 0;
  overflow: hidden;
}

/* ============================================
   STAT BLOCKS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 72px;
}
.stat-block {
  background: var(--bg);
  padding: 52px 44px;
  position: relative;
  transition: background var(--dur-fast);
}
.stat-block:hover { background: var(--surface); }
.stat-before {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 12px;
  text-decoration: line-through;
  text-decoration-color: rgba(10,10,10,0.18);
}
.stat-after {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 20px;
}
.stat-after span { color: var(--ink); }
.stat-label { font-size: var(--type-xs); color: var(--ink-60); line-height: 1.55; }
.stat-arrow {
  position: absolute; top: 48px; right: 40px;
  font-size: 22px; color: var(--ink-30); opacity: 0.45;
}

/* ============================================
   BENEFITS GRID (Summer-style numbered)
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
}
.benefit-card {
  padding: 48px 36px;
  border: 1px solid var(--border);
  border-right: none;
  transition: background var(--dur-fast);
}
.benefit-card:last-child { border-right: 1px solid var(--border); }
.benefit-card:hover { background: var(--surface); }
.benefit-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--ink);
  line-height: 0.85;
  margin-bottom: 20px;
  opacity: 0.08;
}
.benefit-title {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.benefit-desc {
  font-size: 14px; line-height: 1.72; color: var(--ink-60);
}

/* ============================================
   MANIFESTO LAYOUT
   ============================================ */
.manifesto-section { position: relative; overflow: hidden; }
.manifesto-quote {
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.55;
  color: rgba(245,240,232,0.85);
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.manifesto-quote strong { color: #fff; font-weight: 700; }
.creature-manifesto {
  position: absolute;
  right: -80px; bottom: -60px;
  width: clamp(300px, 40vw, 580px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
  filter: invert(1);
}

/* ============================================
   MÉTODO — Numbered List
   ============================================ */
.metodo-list { list-style: none; border-top: 1px solid var(--border); margin-top: 72px; }
.metodo-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: start;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--dur-fast);
}
.metodo-item:hover { background: var(--surface); padding: 44px 32px; margin: 0 -32px; }
.metodo-n {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.15em;
  color: var(--ink-30);
  padding-top: 6px;
}
.metodo-title {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.metodo-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-60);
  max-width: 520px;
}
.metodo-day {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.1em;
  color: var(--ink-30);
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 8px;
}

/* ============================================
   SERVIÇOS — Numbered List
   ============================================ */
.servicos-list { list-style: none; border-top: 1px solid var(--border); margin-top: 72px; }
.servico-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--dur-fast);
}
.servico-item:hover { background: var(--surface); padding: 36px 32px; margin: 0 -32px; }
.servico-item:hover .servico-arrow { color: var(--ink); transform: translate(4px, -4px); }
.servico-link { position: absolute; inset: 0; z-index: 1; }
.servico-n {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.15em;
  color: var(--ink-30);
}
.servico-name {
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.servico-tagline { font-size: 13px; color: var(--ink-60); line-height: 1.5; }
.servico-price {
  font-family: var(--font-mono);
  font-size: var(--type-sm);
  letter-spacing: 0.04em;
  color: var(--ink-60);
  text-align: right;
  white-space: nowrap;
}
.servico-arrow {
  font-size: 20px; color: var(--ink-30);
  transition: color var(--dur-fast), transform var(--dur-fast) var(--ease-spring);
  display: block; margin-top: 6px; text-align: right;
}

/* ============================================
   SPLIT SECTION (para quem)
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.split-light {
  background: var(--bg);
  padding: 80px var(--pad);
  border-right: 1px solid var(--border);
}
.split-dark {
  background: var(--ink);
  padding: 80px var(--pad);
}
.split-dark h3, .split-dark h4 { color: var(--white); }
.split-dark p { color: rgba(245,240,232,0.5); }
.perfil-list {
  list-style: none; margin-top: 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.perfil-item {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--dur-fast), transform var(--dur-fast) var(--ease-spring);
}
.perfil-item:hover { border-color: var(--ink-30); transform: translateX(4px); }
.perfil-title {
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 5px; color: var(--ink);
}
.perfil-desc { font-size: 13px; line-height: 1.65; color: var(--ink-60); }
.split-dark .perfil-item { background: rgba(245,240,232,0.04); border-color: rgba(245,240,232,0.08); }
.split-dark .perfil-item:hover { border-color: rgba(245,240,232,0.22); transform: none; }
.split-dark .perfil-title { color: var(--white); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  padding: 15px 36px;
  border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; letter-spacing: -0.01em;
  transition:
    background var(--dur-fast) var(--ease-smooth),
    color var(--dur-fast) var(--ease-smooth),
    transform var(--dur-fast) var(--ease-smooth),
    border-color var(--dur-fast) var(--ease-smooth);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--ink-80); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-2px); }

.btn-ghost-light { background: transparent; color: rgba(245,240,232,0.75); border: 1.5px solid rgba(245,240,232,0.2); }
.btn-ghost-light:hover { border-color: rgba(245,240,232,0.65); color: #fff; }

.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-magnetic { transition: transform 0.45s var(--ease-spring) !important; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative; overflow: hidden;
  text-align: center;
  padding: 160px var(--pad);
}
.cta-section .section-inner { position: relative; z-index: 2; }
.creature-cta {
  position: absolute;
  bottom: -30px; right: clamp(-80px, -4vw, -20px);
  width: clamp(220px, 30vw, 400px);
  opacity: 0.12;
  pointer-events: none; z-index: 1;
}
.section-dark .creature-cta    { filter: invert(1); opacity: 0.08; }
.section-accent .creature-cta  { filter: invert(1) brightness(2); opacity: 0.1; mix-blend-mode: screen; }

/* ============================================
   CARDS
   ============================================ */
.card {
  padding: 32px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--bg);
  transition: border-color var(--dur-mid) var(--ease-smooth), transform var(--dur-fast) var(--ease-spring);
}
.card:hover { border-color: var(--ink-30); transform: translateY(-4px); }

/* Service cards (servicos page) */
.servico-card {
  padding: 40px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--bg);
  transition: border-color var(--dur-mid), transform var(--dur-fast) var(--ease-spring);
}
.servico-card:hover { border-color: var(--ink-30); transform: translateY(-4px); }
.servico-card.flagship { border: 2px solid var(--accent); position: relative; }
.servico-card.flagship::before {
  content: 'FLAGSHIP';
  position: absolute; top: -10px; left: 24px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em;
  background: var(--accent); color: #fff; padding: 3px 10px; border-radius: 4px;
}

/* Servico page components */
.servico-card-name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.servico-card-meta {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em;
  color: var(--ink-30); margin-bottom: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.servico-card-desc { font-size: 15px; line-height: 1.7; color: var(--ink-60); margin-bottom: 20px; }
.servico-card-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.servico-card-items li {
  font-size: 13px; padding-left: 18px;
  position: relative; color: var(--ink-60);
}
.servico-card-items li::before { content: '→'; position: absolute; left: 0; color: var(--ink-30); }

/* ============================================
   MÉTODO PAGE (full detail)
   ============================================ */
.metodo-stage-full {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 48px; padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.metodo-stage-full:last-child { border-bottom: none; }

/* ============================================
   CASE CARDS
   ============================================ */
.case-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3; background: var(--surface-2);
  cursor: pointer; transition: transform 0.35s var(--ease-out);
}
.case-card:hover { transform: scale(1.02); }
.case-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s;
}
.case-card:hover .case-card-overlay {
  background: linear-gradient(to top, rgba(230,59,96,0.9) 0%, rgba(230,59,96,0.12) 60%);
}
.case-card-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.case-card-type {
  font-family: var(--font-mono); font-size: var(--type-tag);
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.case-status-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  margin-right: 8px; vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ============================================
   SOBRE PAGE
   ============================================ */
.valor-card {
  padding: 32px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--bg);
}
.valor-n {
  font-family: var(--font-mono); font-size: var(--type-micro);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-30); margin-bottom: 12px;
}
.valor-title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.valor-text { font-size: 14px; line-height: 1.7; color: var(--ink-60); }

.enne-seal { margin: 32px 0 48px; }
.enne-seal svg { width: 80px; height: 80px; opacity: 0.15; }

.enne-card {
  padding: 28px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--bg);
}
.enne-card.active { border-color: var(--accent); background: var(--accent-dim); }
.enne-role {
  font-family: var(--font-mono); font-size: var(--type-micro);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-30); margin-bottom: 8px;
}
.enne-name { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.enne-desc { font-size: 13px; line-height: 1.6; color: var(--ink-60); }

/* ============================================
   CONTACT / FORM
   ============================================ */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-mono); font-size: var(--type-tag);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-30); margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-body); font-size: 15px;
  padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: 6px; color: var(--ink);
  transition: border-color var(--dur-fast); outline: none; -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); }
.form-textarea { min-height: 140px; resize: vertical; }

/* ============================================
   BRACKET DECORATION (Summer-style)
   ============================================ */
.bracket-wrap {
  position: relative;
  padding: 48px 32px;
}
.bracket-wrap::before,
.bracket-wrap::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--accent);
  border-style: solid;
}
.bracket-wrap::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
}
.bracket-wrap::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 60px;
}
.faq-item {
  padding: 32px;
  border: 1px solid var(--border);
  border-right: none;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.faq-item:nth-child(2n) { border-right: 1px solid var(--border); }
.faq-item:hover { background: var(--surface); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
}
.faq-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--border-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink-30);
  flex-shrink: 0; margin-left: 16px;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.faq-item:hover .faq-toggle { border-color: var(--ink); color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; line-height: 1.72; color: var(--ink-60);
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 16px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 80px var(--pad) 48px;
  position: relative; overflow: hidden;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 48px; margin-bottom: 64px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  font-size: 14px; color: var(--ink-60);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: var(--type-micro);
  letter-spacing: 0.08em;
  color: var(--ink-30);
}
.footer-back-top {
  width: 48px; height: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink-30);
  transition: border-color var(--dur-fast), color var(--dur-fast);
  cursor: pointer;
}
.footer-back-top:hover { border-color: var(--ink); color: var(--ink); }

/* Legacy footer support */
.footer-slogan {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 800;
  letter-spacing: -0.04em; margin-bottom: 20px;
}
.footer-nav {
  display: flex; gap: 32px; margin-bottom: 20px; flex-wrap: wrap;
}
.footer-nav a {
  font-size: 13px; color: var(--ink-60);
  transition: color var(--dur-fast);
}
.footer-nav a:hover { color: var(--ink); }
.footer-meta {
  font-family: var(--font-mono); font-size: var(--type-tag);
  letter-spacing: 0.08em; color: var(--ink-30);
  display: flex; flex-direction: column; gap: 5px;
}
.footer-enne { opacity: 0.1; flex-shrink: 0; }

/* ============================================
   MISC
   ============================================ */
.limiar-line {
  width: 100%; height: 1px;
  background: var(--border); margin: 80px 0;
  position: relative;
}
.limiar-line::before {
  content: 'ACORDADO'; position: absolute; left: 0; top: -18px;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.2em; color: var(--ink-30);
}
.limiar-line::after {
  content: 'DORMINDO'; position: absolute; right: 0; top: -18px;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.2em; color: var(--ink-30);
}
.tag {
  font-family: var(--font-mono); font-size: var(--type-tag);
  letter-spacing: 0.05em; color: var(--ink-30);
  padding: 4px 12px; border: 1px solid var(--border);
  border-radius: 20px; display: inline-block;
}

/* Display accent text */
.text-display { font-family: var(--font-display); }
.text-hand { font-family: var(--font-hand); }

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-accent  { color: var(--accent); }
.text-dim     { color: var(--ink-30); }
.text-white   { color: #fff; }
.text-mono    { font-family: var(--font-mono); }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mb-80 { margin-bottom: 80px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }
.mt-80 { margin-top: 80px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid .benefit-card:nth-child(2n) { border-right: 1px solid var(--border); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: 1px solid var(--border) !important; }
  .split-section { grid-template-columns: 1fr; }
  .split-light { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-grid { grid-template-columns: 1fr; }
  .metodo-item { grid-template-columns: 48px 1fr; }
  .metodo-day { display: none; }
  .servico-item { grid-template-columns: 48px 1fr auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-inner:not(.footer-top ~ *) { grid-template-columns: 1fr; }
  .header-nav {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 360px; height: 100vh;
    background: var(--bg); flex-direction: column;
    justify-content: center; gap: 40px; padding: 40px;
    transition: right 0.35s var(--ease-smooth);
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    border-left: 1px solid var(--border); z-index: 999;
  }
  .header-nav.open { right: 0; }
  .header-nav a { font-size: 20px !important; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: space-between; }
  .creature-hero { opacity: 0.28; width: clamp(180px, 44vw, 280px); bottom: 100px; }
  .metodo-stage-full { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid .benefit-card { border-right: 1px solid var(--border) !important; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .metodo-item { grid-template-columns: 1fr; gap: 12px; }
  .metodo-item:hover { margin: 0; padding: 44px 0; }
  .servico-item { grid-template-columns: 48px 1fr; }
  .servico-item:hover { margin: 0; padding: 36px 0; }
  .creature-hero { display: none; }
  .section { padding: 80px var(--pad); }
  .stats-grid { gap: 2px; }
  .split-light, .split-dark { padding: 60px var(--pad); }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE COLOR THEMES — vary weight of existing palette
   ============================================ */
body.page-home {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1E1E1E;
  --ink: #F5F0E8;
  --ink-80: rgba(245,240,232,0.8);
  --ink-60: rgba(245,240,232,0.55);
  --ink-30: rgba(245,240,232,0.25);
  --ink-10: rgba(245,240,232,0.07);
  --border: rgba(245,240,232,0.1);
  --border-strong: rgba(245,240,232,0.18);
  --white: #0A0A0A;
}

body.page-servicos { /* light/cream — default tokens, no overrides needed */ }

body.page-metodo {
  --bg: #E63B60;
  --surface: #D1304F;
  --surface-2: #C42A40;
  --ink: #FFFFFF;
  --ink-80: rgba(255,255,255,0.85);
  --ink-60: rgba(255,255,255,0.6);
  --ink-30: rgba(255,255,255,0.3);
  --ink-10: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.15);
  --border-strong: rgba(255,255,255,0.25);
  --white: #0A0A0A;
}

body.page-cases {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1E1E1E;
  --ink: #F5F0E8;
  --ink-80: rgba(245,240,232,0.8);
  --ink-60: rgba(245,240,232,0.55);
  --ink-30: rgba(245,240,232,0.25);
  --ink-10: rgba(245,240,232,0.07);
  --border: rgba(245,240,232,0.1);
  --border-strong: rgba(245,240,232,0.18);
  --white: #0A0A0A;
}

body.page-sobre {
  /* warm shift */
  --bg: #F2EBE0;
  --surface: #E8DFD2;
  --surface-2: #DED4C6;
}

body.page-contato {
  /* accent-forward */
  --bg: #F5F0E8;
}

/* ============================================
   HEADER ADAPTATION FOR DARK PAGES
   ============================================ */
body.page-home .site-header,
body.page-cases .site-header {
  background: rgba(10,10,10,0.9);
  border-bottom-color: rgba(245,240,232,0.08);
}
body.page-metodo .site-header {
  background: rgba(230,59,96,0.92);
  border-bottom-color: rgba(255,255,255,0.1);
}
body.page-home .site-header .header-nav a,
body.page-cases .site-header .header-nav a,
body.page-metodo .site-header .header-nav a {
  color: rgba(245,240,232,0.55);
}
body.page-home .site-header .header-nav a:hover,
body.page-home .site-header .header-nav a.active,
body.page-cases .site-header .header-nav a:hover,
body.page-cases .site-header .header-nav a.active,
body.page-metodo .site-header .header-nav a:hover,
body.page-metodo .site-header .header-nav a.active {
  color: #F5F0E8;
}
body.page-home .header-cta,
body.page-cases .header-cta,
body.page-metodo .header-cta {
  color: #0A0A0A !important;
  background: #F5F0E8 !important;
}
body.page-home .header-cta:hover,
body.page-cases .header-cta:hover,
body.page-metodo .header-cta:hover {
  background: var(--accent) !important;
  color: #fff !important;
}
body.page-home .nav-toggle span,
body.page-cases .nav-toggle span,
body.page-metodo .nav-toggle span {
  background: #F5F0E8;
}
body.page-home .header-logo img,
body.page-home .header-logo svg,
body.page-cases .header-logo img,
body.page-cases .header-logo svg,
body.page-metodo .header-logo img,
body.page-metodo .header-logo svg {
  filter: brightness(0) invert(1);
}
body.page-home .site-footer,
body.page-cases .site-footer,
body.page-metodo .site-footer {
  border-top-color: rgba(245,240,232,0.08);
}
body.page-home .footer-copy,
body.page-cases .footer-copy,
body.page-metodo .footer-copy {
  color: rgba(245,240,232,0.25);
}

/* ============================================
   CALCULATOR
   ============================================ */
.calc-section {
  padding: 120px var(--pad);
  background: var(--surface);
}
.calc-inner {
  max-width: 720px;
  margin: 0 auto;
}
.calc-step {
  margin-bottom: 32px;
}
.calc-step-label {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 12px;
  display: block;
}
.calc-step-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.calc-option {
  font-size: 14px;
  padding: 10px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-smooth);
  background: transparent;
  color: var(--ink-60);
}
.calc-option:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.calc-option.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.calc-result {
  margin-top: 48px;
  padding: 40px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--bg);
  text-align: center;
  display: none;
}
.calc-result.visible {
  display: block;
}
.calc-result-range {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 8px;
}
.calc-result-note {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Dark page calculator overrides */
/* Serviços is now light — no dark calculator overrides needed */

@media (max-width: 600px) {
  .calc-options {
    flex-direction: column;
  }
  .calc-option {
    text-align: center;
  }
}

/* ============================================
   SERVICE PILLARS (new services layout)
   ============================================ */
.pillar-header {
  padding: 80px var(--pad) 40px;
  position: relative;
}
.pillar-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.pillar-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.82;
  color: var(--ink);
  opacity: 0.12;
}
.pillar-label {
  font-family: var(--font-mono);
  font-size: var(--type-tag);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-30);
}
