/* ============================================================
   No Correz — estúdio de marca, conteúdo e campanha
   Devagar se vai longe: motion e ritmo deliberados, sem pressa.
   ============================================================ */

:root{
  --carvao:#06070B;
  --carvao-soft:#0b0c17;
  --carvao-card:#0f1026;
  --carvao-card-hi:#15162f;
  --osso:#F8F7FF;
  --osso-dim:#9696A3;
  --chumbo:#5c5c6e;
  --lagoa:#080A63;
  --lagoa-bright:#2116E8;
  --terracota:#6515F5;
  --terracota-bright:#BD32FF;
  --dourado:#6515F5;
  --dourado-bright:#BD32FF;
  --border:rgba(150,150,163,0.14);
  --border-strong:rgba(150,150,163,0.26);
  --gradient-button:linear-gradient(100deg, var(--terracota) 0%, var(--terracota-bright) 100%);

  --midnight:#080A63;
  --royal:#2116E8;
  --violeta:#6515F5;
  --magenta:#BD32FF;
  --slate:#9696A3;
  --chalk:#F8F7FF;
  --rosa:#F0C6FF;

  --font-display:'Poppins', sans-serif;
  --font-body:'Poppins', sans-serif;
  --font-accent:'Fraunces', serif;
  --font-mono:'IBM Plex Mono', monospace;

  --ease-slow: cubic-bezier(.16,.84,.28,1);
  --rail-w: 0px;
}

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

html{scroll-behavior:smooth;}

body{
  background:var(--carvao);
  color:var(--osso);
  font-family:var(--font-body);
  font-weight:400;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

::selection{background:var(--dourado); color:var(--carvao);}

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

h1,h2,h3,blockquote{font-family:var(--font-display);}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:.01ms !important; transition-duration:.01ms !important;}
}

/* ===== grain texture ===== */
.grain{
  position:fixed; inset:0; z-index:2; pointer-events:none;
  opacity:.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== eyebrow / labels ===== */
.eyebrow{
  font-family:var(--font-mono);
  font-size:11px;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--dourado-bright);
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:22px;
}
.eyebrow-dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--dourado-bright);
  box-shadow:0 0 0 3px rgba(189,50,255,.18);
  animation:pulse-dot 2.6s var(--ease-slow) infinite;
  flex-shrink:0;
}
@keyframes pulse-dot{
  0%,100%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.5); opacity:.6; }
}

/* ===== buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:16px 30px;
  border-radius:100px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:14.5px;
  letter-spacing:.01em;
  transition:transform .5s var(--ease-slow), opacity .5s var(--ease-slow), background .5s var(--ease-slow), border-color .5s var(--ease-slow);
}
.btn-primary{
  color:var(--chalk);
  background:var(--violeta);
  box-shadow:0 0 0 0 rgba(240,198,255,0);
}
.btn-primary:hover{
  background:linear-gradient(100deg, var(--magenta) 0%, var(--royal) 100%);
  box-shadow:0 0 22px 1px rgba(240,198,255,.32);
  transform:translateY(-2px);
}
.btn-outline{
  color:var(--osso);
  background:transparent;
  border:1.5px solid var(--royal);
}
.btn-outline:hover{ background:rgba(8,10,99,.35); border-color:var(--violeta); color:var(--osso); transform:translateY(-2px); }
.btn-chalk{ color:var(--carvao); background:var(--chalk); }
.btn-chalk:hover{ transform:translateY(-2px); box-shadow:0 10px 30px -6px rgba(255,255,255,.25); }

/* ============================================================
   LOADER
   ============================================================ */
.loader{
  position:fixed; inset:0; z-index:200;
  background:var(--carvao);
  display:flex; align-items:center; justify-content:center;
}
.loader-mark{
  width:96px; height:96px;
  color:var(--osso);
}
.loader-path{
  stroke-dasharray:600;
  stroke-dashoffset:600;
}


/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float{
  position:fixed;
  bottom:26px;
  right:calc(var(--rail-w) + 22px);
  z-index:60;
  display:flex; align-items:center; gap:10px;
  padding:13px 20px 13px 15px;
  border-radius:100px;
  background:var(--osso);
  color:var(--carvao);
  font-family:var(--font-body);
  font-weight:600;
  font-size:13.5px;
  box-shadow:0 10px 30px -8px rgba(0,0,0,.55);
  transition:transform .45s var(--ease-slow), background .45s var(--ease-slow);
  opacity:0;
}
.wa-float.is-visible{ opacity:1; }
.wa-float:hover{ transform:translateY(-3px); background:var(--dourado-bright); }
.wa-float svg{ width:20px; height:20px; flex-shrink:0; }

@media (max-width:600px){
  .wa-float span{ display:none; }
  .wa-float{ padding:14px; bottom:20px; right:20px; }
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar{
  position:fixed; top:0; left:0; right:0;
  z-index:100;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
  height:68px;
  padding:0 clamp(16px,3vw,24px);
  background:rgba(8,9,11,.6);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:background .5s var(--ease-slow), border-color .5s var(--ease-slow), height .4s var(--ease-slow);
}
.topbar.is-scrolled{
  height:60px;
  background:rgba(8,9,11,.94);
}
.topbar-side{ display:flex; align-items:center; }
.topbar-left{ grid-column:1; justify-self:start; }
.topbar-right{ grid-column:3; justify-self:end; }

.menu-trigger{
  display:flex; align-items:center; gap:10px;
  color:var(--osso);
  padding:8px 14px 8px 10px;
  border-radius:100px;
  border:1px solid var(--border-strong);
  background:var(--carvao-card);
  transition:border-color .3s ease;
}
.menu-trigger:hover{ border-color:var(--osso-dim); }
.menu-dots{
  display:grid; grid-template-columns:repeat(2,4px); grid-template-rows:repeat(2,4px);
  gap:3px;
  transition:transform .4s var(--ease-slow);
}
.menu-dots i{
  width:4px; height:4px; border-radius:50%;
  background:var(--osso-dim);
  transition:background .35s ease, transform .4s var(--ease-slow);
}
.menu-trigger:hover .menu-dots i{ background:var(--osso); }
.menu-trigger-label{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.menu-trigger.is-open .menu-dots{ transform:rotate(90deg); }
.menu-trigger.is-open .menu-dots i{ background:var(--dourado-bright); }

.lang-switch{
  grid-column:2;
  justify-self:center;
  display:flex; align-items:center;
  gap:3px;
  padding:4px;
  height:40px;
  border-radius:100px;
  border:1px solid var(--border-strong);
  background:var(--carvao-card);
}
.lang-btn{
  display:flex; align-items:center; gap:7px;
  height:100%;
  padding:0 12px 0 7px;
  border-radius:100px;
  font-family:var(--font-mono);
  font-size:11px;
  font-weight:500;
  letter-spacing:.04em;
  color:var(--osso-dim);
  transition:background .3s ease, color .3s ease;
}
.flag-icon{
  width:22px; height:auto;
  border-radius:3px;
  flex-shrink:0;
  display:block;
  box-shadow:0 0 0 1px rgba(255,255,255,.08);
}
.lang-btn.is-active{
  background:var(--carvao-card-hi);
  color:var(--osso);
  box-shadow:inset 0 0 0 1px var(--violeta), inset 0 0 10px -4px var(--royal), inset 0 0 14px -6px var(--magenta);
}
.lang-btn.is-disabled{ opacity:.4; cursor:not-allowed; }

.header-cta{
  display:inline-flex; align-items:center; gap:9px;
  padding:9px 18px 9px 9px;
  border-radius:100px;
  border:1px solid var(--border-strong);
  background:var(--carvao-card);
  color:var(--osso);
  font-size:13px;
  font-weight:600;
  transition:border-color .35s ease, transform .35s var(--ease-slow);
}
.header-cta:hover{ border-color:#25D366; transform:translateY(-1px); }
.header-cta-icon{
  width:24px; height:24px; border-radius:50%;
  background:var(--carvao-card-hi);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.header-cta-icon svg{ width:14px; height:14px; }

@media (max-width:760px){
  .menu-trigger-label{ display:none; }
  .menu-trigger{ padding:9px; }
  .lang-switch{ display:none; }
  .header-cta span{ display:none; }
  .header-cta{ padding:9px; }
}

@media (max-width:600px){
  .header-cta span{ display:none; }
  .header-cta{ padding:10px; border-radius:50%; }
}

/* ===== MEGA MENU ===== */
.mega-overlay{
  position:fixed; inset:0; z-index:95;
  background:rgba(8,9,11,.7);
  backdrop-filter:blur(2px);
  opacity:0; visibility:hidden;
  transition:opacity .4s var(--ease-slow), visibility .4s;
}
.mega-overlay.is-open{ opacity:1; visibility:visible; }

.mega-menu{
  position:fixed;
  top:92px; left:50%;
  transform:translate(-50%,-14px);
  width:min(1040px, calc(100vw - 40px));
  max-height:calc(100vh - 120px);
  overflow:auto;
  z-index:96;
  background:var(--carvao-card);
  border:1px solid var(--border-strong);
  border-radius:22px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .45s var(--ease-slow), transform .45s var(--ease-slow), visibility .45s;
}
.mega-menu.is-open{
  opacity:1; visibility:visible; pointer-events:auto;
  transform:translate(-50%,0);
}
.mega-menu-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:0;
}
.mega-links{
  padding:48px 44px;
  display:flex; flex-direction:column; justify-content:space-between;
  border-right:1px solid var(--border);
  min-height:420px;
}
.mega-nav{ display:flex; flex-direction:column; gap:6px; }
.mega-link{
  position:relative;
  font-family:var(--font-display);
  font-size:clamp(26px,3.4vw,36px);
  font-weight:600;
  letter-spacing:-.01em;
  color:var(--osso-dim);
  padding:8px 0 8px 20px;
  transition:color .3s ease;
}
.mega-link::before{
  content:'';
  position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:6px; height:6px; border-radius:50%;
  background:transparent;
  transition:background .3s ease;
}
.mega-link:hover, .mega-link.is-active{ color:var(--osso); }
.mega-link:hover::before, .mega-link.is-active::before{ background:var(--dourado-bright); }
.mega-link-political{ font-size:clamp(20px,2.6vw,27px); }
.mega-link-political::after{
  content:'';
  position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:6px; height:6px; border-radius:50%;
  background:var(--royal);
  box-shadow:4px 0 0 0 var(--magenta);
}
.mega-link-political::before{ display:none; }
.mega-foot{ margin-top:40px; }
.mega-foot-mark{ width:22px; height:22px; color:var(--osso-dim); margin-bottom:10px; }
.mega-foot-label{
  display:block;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--chumbo);
  margin-bottom:14px;
}
.mega-foot-links{ display:flex; gap:20px; }
.mega-foot-links a{ font-size:13px; color:var(--osso-dim); transition:color .3s ease; }
.mega-foot-links a:hover{ color:var(--dourado-bright); }

.mega-projects{ padding:48px 40px; display:flex; flex-direction:column; gap:20px; }
.mega-projects-label{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--chumbo);
  margin-bottom:4px;
}
.mega-project{
  display:block;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
  transition:border-color .4s ease;
}
.mega-project:hover{ border-color:var(--border-strong); }
.mega-project-media{
  aspect-ratio:16/10;
  background:var(--carvao-soft);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.mega-project-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s var(--ease-slow);
}
.mega-project:hover .mega-project-media img{ transform:scale(1.06); }
.mega-project-media span{
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--chumbo);
}
.mega-project-foot{ display:flex; justify-content:space-between; align-items:center; padding:14px 16px; }
.mega-project-name{ font-size:14.5px; font-weight:600; }
.mega-project-cat{ font-family:var(--font-mono); font-size:10px; letter-spacing:.06em; text-transform:uppercase; color:var(--osso-dim); }

@media (max-width:760px){
  .mega-menu{ top:80px; max-height:calc(100vh - 100px); }
  .mega-menu-inner{ grid-template-columns:1fr; }
  .mega-links{ border-right:none; border-bottom:1px solid var(--border); padding:32px 26px; min-height:0; }
  .mega-link{ font-size:24px; }
  .mega-projects{ padding:26px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  min-height:100vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding:140px clamp(20px,4vw,56px) 90px;
  overflow:hidden;
  background:#0b0b0b;
}
.hero-bg{
  position:absolute; inset:-6%;
  z-index:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(189,50,255,.34), transparent 38%),
    radial-gradient(circle at 45% 38%, rgba(101,21,245,.36), transparent 42%),
    radial-gradient(circle at 88% 72%, rgba(33,22,232,.40), transparent 40%),
    radial-gradient(circle at 50% 92%, rgba(240,198,255,.14), transparent 32%),
    radial-gradient(50% 45% at 50% 55%, rgba(6,7,11,.78), transparent 78%),
    #06070B;
  animation:atmo-drift 18s ease-in-out infinite alternate;
}
@keyframes atmo-drift{
  0%{ transform:translate(0,0) scale(1); }
  100%{ transform:translate(-2%,2%) scale(1.06); }
}
.hero-lines{
  position:absolute; inset:0;
  width:100%; height:100%;
  opacity:.6;
}
.hl{
  stroke-width:1;
  stroke:var(--dourado-bright);
  stroke-dasharray:5 6;
  animation:hl-drift 70s linear infinite;
}
.hl-1{ opacity:.26; stroke:var(--magenta); }
.hl-2{ opacity:.22; stroke:var(--royal); animation-duration:86s; animation-direction:reverse; }
.hl-3{ opacity:.16; stroke:var(--slate); animation-duration:100s; }
.hl-4{ opacity:.2; stroke:var(--royal); animation-duration:78s; animation-direction:reverse; }
.hl-5{ opacity:.18; stroke:var(--violeta); animation-duration:78s; }
@keyframes hl-drift{
  to{ stroke-dashoffset:-500; }
}
@media (max-width:760px){
  .hero-lines{ opacity:.4; }
}
@media (prefers-reduced-motion: reduce){
  .hl{ animation:none; }
}

.hero-inner{ position:relative; z-index:1; max-width:800px; display:flex; flex-direction:column; align-items:center; }
.hero-eyebrow{
  opacity:0;
  color:var(--osso-dim);
  justify-content:center;
}

.hero-title{
  font-weight:500;
  font-size:clamp(32px, 4.6vw, 60px);
  line-height:1.18;
  letter-spacing:-.015em;
  color:var(--osso);
  max-width:1100px;
  margin-bottom:28px;
  opacity:0;
  transform:translateY(14px);
}
.hero-title em, .case-title em, .projects-title em, .founder-title em, .contact-title em, .how-cta h3 em{
  font-family:var(--font-accent);
  font-style:italic;
  font-weight:600;
  position:relative;
  background:linear-gradient(90deg, var(--magenta) 0%, var(--violeta) 50%, var(--royal) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-title em{ opacity:0; }
.hero-title em::before, .case-title em::before, .projects-title em::before, .founder-title em::before, .contact-title em::before, .how-cta h3 em::before{
  content:'';
  position:absolute;
  inset:-70% -30%;
  background:radial-gradient(60% 60% at 50% 55%, rgba(189,50,255,.20) 0%, rgba(101,21,245,.14) 55%, transparent 75%);
  z-index:-1;
}

.hero-sub{
  font-size:clamp(15px,1.4vw,17.5px);
  line-height:1.7;
  color:var(--osso-dim);
  max-width:700px;
  margin-bottom:40px;
  opacity:0;
}
.hero-actions{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; opacity:0; }

@media (max-width:600px){
  .hero{ padding-top:120px; padding-bottom:70px; }
  .hero-actions{ flex-direction:column; width:100%; max-width:340px; }
  .hero-actions .btn{ width:100%; }
}

/* ============================================================
   SHARED SECTION RHYTHM
   ============================================================ */
section{
  position:relative;
  padding:min(11vw,128px) clamp(20px,4vw,56px);
  padding-right:calc(clamp(20px,4vw,56px) + var(--rail-w));
}

[data-reveal]{
  opacity:0;
  transform:translateY(36px);
}

/* ============================================================
   BRANDS MARQUEE
   ============================================================ */
.brands{
  padding:70px 0;
  border-top:1px solid var(--border);
  background:var(--carvao);
  overflow:hidden;
}
.brands-title{
  text-align:center;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--chumbo);
  margin-bottom:44px;
  padding:0 20px;
}
.marquee-row{
  position:relative;
  overflow:hidden;
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-bottom:14px;
}
.marquee-row:last-child{ margin-bottom:0; }
.marquee-track{
  display:flex;
  align-items:center;
  width:max-content;
  animation:marquee-left 52s linear infinite;
}
.marquee-track-rev{
  animation-name:marquee-right;
  animation-duration:60s;
}
.marquee-row:hover .marquee-track{ animation-play-state:paused; }
@keyframes marquee-left{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@keyframes marquee-right{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}
.marquee-name{
  font-size:clamp(24px,3.4vw,40px);
  font-weight:500;
  color:var(--chumbo);
  white-space:nowrap;
  padding:0 28px;
  transition:color .3s ease;
}
.marquee-name:hover{ color:var(--osso); }
.marquee-dot{
  width:7px; height:7px;
  border-radius:50%;
  flex-shrink:0;
}
.dot-royal{ background:var(--royal); }
.dot-flare{ background:var(--magenta); }

@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation:none; }
}
@media (max-width:600px){
  .marquee-name{ font-size:20px; padding:0 18px; }
}

/* ============================================================
   SOBRE A FUNDADORA
   ============================================================ */
.founder{
  border-top:1px solid var(--border);
  display:grid;
  grid-template-columns:minmax(0,460px) 1fr;
  gap:clamp(32px,5vw,80px);
  align-items:center;
}
.founder-photo-wrap{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--border-strong);
}
.founder-photo-wrap::before{
  content:'';
  position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(189,50,255,.30), transparent 60%),
    radial-gradient(40% 40% at 50% 50%, rgba(101,21,245,.16), transparent 65%),
    radial-gradient(60% 50% at 100% 100%, rgba(33,22,232,.32), transparent 60%);
  mix-blend-mode:screen;
}
.founder-photo{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
}
.founder-photo-name{
  position:absolute; z-index:2; left:22px; bottom:18px;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.28em;
  color:var(--osso);
  opacity:.85;
}
.founder-title{
  font-size:clamp(28px, 3.6vw, 44px);
  font-weight:700;
  line-height:1.2;
  letter-spacing:-.02em;
  margin-bottom:24px;
}
.founder-text{ color:var(--osso-dim); font-size:15.5px; line-height:1.75; max-width:520px; margin-bottom:18px; }

@media (max-width:800px){
  .founder{ grid-template-columns:1fr; }
  .founder-photo-wrap{ max-width:340px; }
}

/* ============================================================
   NÚMEROS
   ============================================================ */
.stats{ border-top:1px solid var(--border); }
.stats-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:40px;
  max-width:1080px; margin:0 auto;
  text-align:center;
}
.stat{ display:flex; flex-direction:column; align-items:center; }
.stat-num{
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(48px,7vw,84px);
  line-height:1;
  letter-spacing:-.02em;
  margin-bottom:16px;
  color:var(--chalk);
  text-shadow:0 10px 34px rgba(189,50,255,.4), 0 2px 0 rgba(240,198,255,.14);
}
.stat-num-mix{ text-shadow:0 10px 34px rgba(101,21,245,.42), 0 2px 0 rgba(189,50,255,.14); }
.stat-num-blue{ text-shadow:0 10px 38px rgba(33,22,232,.58), 0 2px 0 rgba(101,21,245,.18); }
.stat-label{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--osso-dim);
}
.stat-sub{
  display:block;
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:.1em;
  color:var(--chumbo);
  margin-top:10px;
}

@media (max-width:700px){
  .stats-grid{ grid-template-columns:1fr; gap:44px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services{
  background:var(--chalk);
  color:var(--carvao);
  border-top:1px solid var(--border);
}
.services-head{ margin-bottom:70px; }
.services-title{
  font-size:clamp(32px,5vw,58px);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-.02em;
  color:var(--carvao);
}
.services .eyebrow{ color:var(--dourado-bright); }

.service-list{ border-top:1px solid rgba(8,9,11,.12); }
.service-row{
  position:relative;
  display:flex;
  align-items:baseline;
  gap:clamp(20px,4vw,56px);
  padding:38px 4px;
  border-bottom:1px solid rgba(8,9,11,.12);
  transition:padding-left .55s var(--ease-slow);
  overflow:hidden;
}
.service-row:hover{ padding-left:22px; }
.service-index{
  font-family:var(--font-mono);
  font-size:14px;
  color:rgba(8,9,11,.35);
  flex-shrink:0;
  width:34px;
  padding-top:10px;
  transition:color .4s var(--ease-slow);
}
.service-row:hover .service-index{ color:var(--dourado-bright); }
.service-body{ flex:1; min-width:0; }
.service-body h3{
  font-size:clamp(24px,3.2vw,36px);
  font-weight:700;
  margin-bottom:10px;
  letter-spacing:-.02em;
  color:var(--carvao);
}
.service-body p{
  color:rgba(8,9,11,.62);
  font-size:15px;
  line-height:1.65;
  max-width:560px;
}
.service-tag{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--chalk);
  background:var(--dourado-bright);
  padding:6px 12px;
  border-radius:100px;
  flex-shrink:0;
  align-self:flex-start;
  margin-top:6px;
}
.service-wash{
  position:absolute; inset:0; z-index:-1;
  opacity:0;
  transition:opacity .55s var(--ease-slow);
}
.service-row:hover .service-wash{ opacity:.1; }
.service-wash[data-wash="flare"]{ background:radial-gradient(60% 140% at 0% 50%, var(--magenta), transparent 70%); }
.service-wash[data-wash="royal"]{ background:radial-gradient(60% 140% at 0% 50%, var(--royal), transparent 70%); }
.service-wash[data-wash="mix"]{ background:linear-gradient(100deg, var(--royal) 0%, var(--violeta) 50%, var(--magenta) 100%); }

.is-featured{ background:rgba(8,9,11,.03); }

@media (max-width:700px){
  .service-row{ flex-wrap:wrap; padding:28px 4px; row-gap:14px; }
  .service-row:hover{ padding-left:4px; }
  .service-index{ order:1; padding-top:2px; }
  .service-tag{ order:2; margin-top:0; }
  .service-body{ order:3; flex-basis:100%; }
}

/* ============================================================
   PROJECTS SELECIONADOS (home)
   ============================================================ */
.projects{
  border-top:1px solid var(--border);
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}
.projects-label-row{
  display:flex; align-items:center; gap:18px;
  margin-bottom:56px;
}
.projects-label-line{ flex:1; height:1px; background:var(--border-strong); }
.projects-label-text{
  flex-shrink:0;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--osso-dim);
}
.projects-label-num{ color:var(--dourado-bright); }
.projects-head{ max-width:700px; text-align:left; margin-bottom:64px; }
.projects-title{
  font-size:clamp(30px,4.4vw,52px);
  font-weight:700;
  line-height:1.12;
  letter-spacing:-.02em;
  margin-bottom:18px;
  text-align:left;
}
.projects-note{ color:var(--osso-dim); font-size:15.5px; line-height:1.7; max-width:560px; text-align:left; }

.project-list{ display:flex; flex-direction:column; gap:28px; }
.project-card{
  display:flex;
  align-items:stretch;
  gap:clamp(28px,4vw,56px);
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
  transition:border-color .5s var(--ease-slow);
}
.project-card:hover{ border-color:var(--border-strong); }
.project-card.is-reverse{ flex-direction:row-reverse; }

.project-media{
  position:relative;
  flex:0 0 44%;
  border-radius:14px;
  overflow:hidden;
  background:var(--carvao-card);
  aspect-ratio:5/4;
}
.project-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s var(--ease-slow);
}
.project-card:hover .project-media img{ transform:scale(1.04); }
.project-media.is-empty{
  display:flex; align-items:center; justify-content:center;
  border:1px dashed var(--border-strong);
}
.project-media.is-empty span{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--chumbo);
}

.project-body{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:14px 8px;
  min-width:0;
}
.project-meta{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--dourado-bright);
  margin-bottom:14px;
}
.project-body h3{
  font-size:clamp(24px,2.6vw,32px);
  font-weight:700;
  letter-spacing:-.01em;
  margin-bottom:8px;
}
.project-case-title{ color:var(--osso-dim); font-style:italic; font-family:var(--font-accent); font-size:16px; margin-bottom:10px; }
.project-body > p:not(.project-case-title){ color:var(--osso-dim); font-size:15px; line-height:1.7; max-width:480px; margin-bottom:20px; }
.project-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; }
.project-tags span{
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--osso-dim);
  border:1px solid var(--border-strong);
  padding:5px 11px;
  border-radius:100px;
}
.project-link{
  display:inline-flex;
  font-weight:600;
  font-size:14px;
  color:var(--osso);
  transition:color .3s ease, gap .3s ease;
  gap:6px;
}
a.project-link:hover{ color:var(--dourado-bright); gap:10px; }
.project-link.is-disabled{ color:var(--chumbo); cursor:default; }

.projects-more{ display:flex; justify-content:center; margin-top:52px; }

@media (max-width:800px){
  .project-card, .project-card.is-reverse{ flex-direction:column; }
  .project-media{ flex-basis:auto; aspect-ratio:16/10; }
}

/* ============================================================
   PORTFOLIO GRID (work/portfolio.html)
   ============================================================ */
.portfolio-filters-section{ padding-top:10px; }
.portfolio-filters{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-bottom:50px;
}
.filter-btn{
  padding:10px 20px;
  border-radius:100px;
  border:1.5px solid var(--border-strong);
  font-size:13.5px;
  font-weight:500;
  color:var(--osso-dim);
  transition:border-color .35s ease, color .35s ease, background .35s ease;
}
.filter-btn:hover{ color:var(--osso); border-color:var(--osso-dim); }
.filter-btn.is-active{ background:var(--dourado-bright); border-color:var(--dourado-bright); color:var(--carvao); font-weight:600; }

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.portfolio-card{
  display:block;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  transition:transform .5s var(--ease-slow), border-color .5s var(--ease-slow), opacity .4s ease, filter .4s ease;
}
.portfolio-card:hover{ transform:translateY(-5px); border-color:var(--border-strong); }
.portfolio-card.is-filtered-out{
  opacity:0; transform:scale(.94);
  pointer-events:none;
}
.portfolio-card.is-hidden{ display:none; }
.portfolio-card-media{
  aspect-ratio:16/10;
  background:var(--carvao-card);
  overflow:hidden;
}
.portfolio-card-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s var(--ease-slow);
}
.portfolio-card:hover .portfolio-card-media img{ transform:scale(1.05); }
.portfolio-card-media.is-empty{
  display:flex; align-items:center; justify-content:center;
  border-bottom:1px dashed var(--border-strong);
}
.portfolio-card-media.is-empty span{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--chumbo);
}
.portfolio-card-foot{
  display:flex; flex-direction:column; gap:8px;
  padding:18px 20px 22px;
}
.portfolio-card-meta{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--dourado-bright);
}
.portfolio-card.is-empty .portfolio-card-meta{ color:var(--chumbo); }
.portfolio-card-name{
  font-size:19px;
  font-weight:700;
  letter-spacing:-.01em;
}

@media (max-width:860px){
  .portfolio-grid{ grid-template-columns:1fr 1fr; gap:16px; }
}
@media (max-width:560px){
  .portfolio-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing{ border-top:1px solid var(--border); }
.pricing-head{ max-width:640px; margin-bottom:60px; }
.pricing-title{
  font-size:clamp(30px,4.4vw,50px);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-.02em;
  margin-bottom:18px;
}
.pricing-note{ color:var(--osso-dim); font-size:15.5px; line-height:1.7; }

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  align-items:start;
}
.price-card{
  display:flex; flex-direction:column;
  border:1px solid var(--border);
  border-radius:18px;
  padding:30px 26px;
  background:var(--carvao-card);
}
.price-card.is-highlight{
  border-color:var(--dourado-bright);
  background:var(--carvao-soft);
}
.price-card-head{ margin-bottom:24px; }
.price-card-head h3{
  font-size:19px;
  font-weight:700;
  margin-bottom:10px;
  letter-spacing:-.01em;
}
.price-tag{
  font-family:var(--font-mono);
  font-size:24px;
  font-weight:500;
  color:var(--dourado-bright);
}
.price-group{ margin-bottom:20px; }
.price-group-title{
  display:block;
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--osso-dim);
  margin-bottom:10px;
}
.price-group ul{ display:flex; flex-direction:column; gap:7px; }
.price-group li{
  position:relative;
  padding-left:16px;
  font-size:13.5px;
  line-height:1.5;
  color:var(--osso-dim);
}
.price-group li::before{
  content:'';
  position:absolute; left:0; top:8px;
  width:5px; height:5px; border-radius:50%;
  background:var(--dourado-bright);
}
.price-cta{ margin-top:auto; padding-top:26px; width:100%; text-align:center; }

@media (max-width:900px){
  .pricing-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   CAMPANHAS POLÍTICAS (entrada home)
   ============================================================ */
.political-teaser{
  border-top:1px solid var(--border);
  max-width:1200px;
  margin-left:auto; margin-right:auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.political-teaser::before{
  content:'';
  position:absolute; inset:-20% -10%;
  z-index:-1;
  background:
    radial-gradient(30% 40% at 0% 0%, rgba(33,22,232,.24), transparent 65%),
    radial-gradient(24% 30% at 50% 50%, rgba(101,21,245,.14), transparent 65%),
    radial-gradient(30% 40% at 100% 100%, rgba(189,50,255,.18), transparent 65%);
}
.political-teaser-title{
  font-size:clamp(28px,3.6vw,42px);
  font-weight:700;
  line-height:1.18;
  letter-spacing:-.02em;
  margin-bottom:18px;
}
.political-teaser-note{ color:var(--osso-dim); font-size:15px; line-height:1.7; max-width:480px; margin-bottom:22px; }
.political-teaser-indicators{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px; }
.political-teaser-indicators span{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--osso-dim);
  border:1px solid var(--border-strong);
  padding:7px 14px;
  border-radius:100px;
}
.political-teaser-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.political-teaser-media{
  position:relative;
  aspect-ratio:1/1;
}
.pt-img{
  position:absolute;
  border-radius:16px;
  border:1px solid var(--border-strong);
  object-fit:cover;
  box-shadow:0 20px 50px -12px rgba(0,0,0,.6);
}
.pt-img-1{ width:66%; aspect-ratio:4/5; top:0; left:0; z-index:1; }
.pt-img-2{ width:56%; aspect-ratio:4/5; bottom:0; right:0; z-index:2; }

@media (max-width:860px){
  .political-teaser{ grid-template-columns:1fr; }
  .political-teaser-media{ aspect-ratio:16/11; max-width:420px; margin:0 auto; }
}

/* ============================================================
   CAMPANHAS POLÍTICAS — página interna
   ============================================================ */
.hero-sub-page{ min-height:78vh; }

.pillars-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.pillar-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:30px 26px;
  transition:border-color .4s ease;
}
.pillar-card:hover{ border-color:var(--border-strong); }
.pillar-num{
  display:block;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--dourado-bright);
  margin-bottom:16px;
}
.pillar-card h3{ font-size:19px; font-weight:700; margin-bottom:10px; }
.pillar-card p{ color:var(--osso-dim); font-size:14.5px; line-height:1.65; }

.political-case{
  display:flex;
  align-items:stretch;
  gap:clamp(28px,4vw,56px);
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
}
.political-case-media{
  flex:0 0 44%;
  border-radius:14px;
  overflow:hidden;
  aspect-ratio:5/4;
}
.political-case-media img{ width:100%; height:100%; object-fit:cover; }
.political-case-body{ flex:1; display:flex; flex-direction:column; justify-content:center; padding:14px 8px; }
.political-case-body h3{ font-size:clamp(22px,2.6vw,30px); font-weight:700; margin-bottom:14px; }
.political-case-body p{ color:var(--osso-dim); font-size:15px; line-height:1.7; max-width:480px; margin:16px 0 20px; }
@media (max-width:800px){
  .political-case{ flex-direction:column; }
  .political-case-media{ flex-basis:auto; aspect-ratio:16/10; }
}

.deliverables-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
}
.deliverable-item{
  display:flex; align-items:center; gap:16px;
  padding:20px 26px;
  border-bottom:1px solid var(--border);
  border-right:1px solid var(--border);
  font-size:15px; font-weight:500;
}
.deliverable-item:nth-child(2n){ border-right:none; }
.deliverable-item span{
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--dourado-bright);
  flex-shrink:0;
}
@media (max-width:700px){
  .deliverables-grid{ grid-template-columns:1fr; }
  .deliverable-item{ border-right:none; }
}

.pricing-grid-political{ align-items:stretch; }
.price-card-blue{ border-color:rgba(33,22,232,.4); }
.price-card-mix{ border-image:linear-gradient(135deg, var(--royal), var(--magenta)) 1; position:relative; }
.price-card-red{ border-color:rgba(240,198,255,.35); }
.price-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--dourado-bright);
  color:var(--carvao);
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:700;
  padding:6px 16px;
  border-radius:100px;
}
.price-card-desc{ color:var(--osso-dim); font-size:13.5px; line-height:1.6; margin-top:10px; }

.pricing-legal{
  max-width:820px;
  color:var(--osso-dim);
  font-size:13px;
  line-height:1.7;
  margin-top:46px;
}
.pricing-legal-list{
  max-width:820px;
  margin-top:16px;
  display:flex; flex-direction:column; gap:8px;
}
.pricing-legal-list li{
  position:relative; padding-left:16px;
  color:var(--chumbo); font-size:12.5px; line-height:1.6;
}
.pricing-legal-list li::before{
  content:''; position:absolute; left:0; top:7px;
  width:4px; height:4px; border-radius:50%;
  background:var(--chumbo);
}

.political-cta-bg{
  background:
    radial-gradient(55% 60% at 15% 25%, rgba(33,22,232,.34), transparent 65%),
    radial-gradient(30% 35% at 50% 50%, rgba(101,21,245,.18), transparent 65%),
    radial-gradient(55% 60% at 85% 80%, rgba(189,50,255,.24), transparent 65%),
    linear-gradient(160deg, var(--midnight) 0%, var(--carvao) 55%, var(--carvao-soft) 145%);
}

@media (max-width:900px){
  .pillars-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials{
  border-top:1px solid var(--border);
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}
.testimonial-empty{
  border:1px dashed var(--border-strong);
  border-radius:18px;
  padding:60px 24px;
  text-align:center;
}
.testimonial-empty span{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--chumbo);
}

/* ============================================================
   DÚVIDAS
   ============================================================ */
.faq{
  border-top:1px solid var(--border);
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}
.faq-list{ max-width:820px; display:flex; flex-direction:column; }
.faq-item{
  border-bottom:1px solid var(--border);
  padding:22px 0;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  font-size:16.5px; font-weight:600;
  color:var(--osso);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+';
  flex-shrink:0;
  font-family:var(--font-mono);
  font-size:20px; font-weight:400;
  color:var(--dourado-bright);
  transition:transform .35s var(--ease-slow);
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{
  color:var(--osso-dim);
  font-size:14.5px;
  line-height:1.7;
  margin-top:14px;
  max-width:680px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--border);
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
  padding-top:min(13vw,150px);
  padding-bottom:min(13vw,150px);
  background:var(--carvao);
}
.contact-bg{
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(60% 70% at 8% 20%, rgba(33,22,232,.42), transparent 65%),
    radial-gradient(34% 40% at 50% 50%, rgba(101,21,245,.20), transparent 65%),
    radial-gradient(60% 70% at 92% 90%, rgba(189,50,255,.30), transparent 65%),
    linear-gradient(160deg, var(--midnight) 0%, var(--carvao) 45%, var(--carvao) 60%, var(--carvao-soft) 145%);
}
.contact > *{ position:relative; z-index:1; }
.contact-title{
  font-size:clamp(36px,7vw,84px);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.03em;
  margin-bottom:22px;
}
.contact-sub{
  color:var(--osso-dim);
  font-size:16.5px;
  max-width:440px;
  margin-bottom:40px;
}
.contact-actions{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; justify-content:center; margin-bottom:0; }
.contact-email{
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--osso-dim);
  padding-bottom:6px;
  border-bottom:1px solid var(--border-strong);
  transition:border-color .4s var(--ease-slow), color .4s var(--ease-slow);
}
.contact-email:hover{ color:var(--dourado-bright); border-color:var(--dourado-bright); }

/* ============================================================
   COMO TRABALHAMOS
   ============================================================ */
.how{
  border-top:1px solid var(--border);
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}
.how-grid{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-bottom:22px;
}
.how-row-top{
  display:grid;
  grid-template-columns:42fr 16fr 42fr;
  align-items:stretch;
  gap:22px;
  position:relative;
  isolation:isolate;
}
.how-row-bottom{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.how-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:30px 28px;
  background:var(--carvao-card);
  transition:border-color .5s var(--ease-slow);
  overflow:hidden;
  position:relative;
}
.how-card:hover{ border-color:var(--border-strong); }
.how-icon-badge{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px;
  border-radius:13px;
  margin-bottom:20px;
  border:1px solid var(--border-strong);
  background:rgba(255,255,255,.02);
  transition:border-color .4s ease, transform .4s var(--ease-slow);
}
.how-card:hover .how-icon-badge{ transform:translateY(-2px); }
.how-icon-badge-blue{ background:rgba(33,22,232,.14); border-color:rgba(33,22,232,.4); color:var(--royal); }
.how-icon-badge-violet{ background:rgba(101,21,245,.14); border-color:rgba(101,21,245,.4); color:var(--violeta); }
.how-icon-badge-magenta{ background:rgba(189,50,255,.14); border-color:rgba(189,50,255,.4); color:var(--magenta); }
.how-icon{ width:23px; height:23px; }
.how-step-num{
  display:block;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--osso-dim);
  margin-bottom:10px;
}
.how-card h3{ font-size:22px; font-weight:700; margin-bottom:12px; letter-spacing:-.01em; }
.how-card h4{ font-size:16px; font-weight:700; margin-bottom:10px; }
.how-card p{ color:var(--osso-dim); font-size:14.5px; line-height:1.65; }
.how-card-main{ display:flex; flex-direction:column; justify-content:flex-end; min-height:340px; }
.how-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; max-width:100%; }
.how-tags span{
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--osso-dim);
  border:1px solid var(--border-strong);
  padding:6px 12px;
  border-radius:100px;
  transition:border-color .3s ease, color .3s ease;
}
.how-tags-wrap span:nth-child(odd):hover{ border-color:var(--royal); color:var(--osso); }
.how-tags-wrap span:nth-child(even):hover{ border-color:var(--magenta); color:var(--osso); }

.how-col-right{ display:flex; flex-direction:column; gap:22px; min-width:0; }
.how-card-sm{ flex:1; }
.how-dots{ display:flex; margin-bottom:16px; }
.how-dots span{
  width:24px; height:24px; border-radius:50%;
  border:2px solid var(--carvao-card);
  margin-left:-8px;
}
.how-dots span:first-child{ margin-left:0; }

.how-card-wide{ display:flex; flex-direction:column; }

/* ===== coluna central exclusiva do NCZ ===== */
.how-ncz-col{
  min-width:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
  position:relative;
  isolation:isolate;
  z-index:5;
}
.how-ncz-wrap{
  width:100%;
  max-width:240px;
  min-width:200px;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
  position:relative;
}
.how-ncz-glow{
  position:absolute;
  inset:-20% -40%;
  width:auto; height:auto;
  opacity:.15;
  filter:blur(36px);
  z-index:-1;
}
.how-ncz{
  position:relative;
  width:clamp(150px, 14vw, 200px);
  height:auto;
  overflow:visible;
  filter:drop-shadow(0 0 16px rgba(255,255,255,.08));
}
.ncz-path{
  stroke-dasharray:640;
  animation:ncz-reveal 7s cubic-bezier(.5,.05,.4,1) infinite;
}
.how-ncz-marks path:nth-child(2){ animation-delay:.12s; }
.how-ncz-marks path:nth-child(3){ animation-delay:.24s; }
@keyframes ncz-reveal{
  0%{ stroke-dashoffset:640; fill-opacity:0; }
  42%{ stroke-dashoffset:0; fill-opacity:0; }
  54%{ stroke-dashoffset:0; fill-opacity:1; }
  80%{ stroke-dashoffset:0; fill-opacity:1; }
  92%{ stroke-dashoffset:0; fill-opacity:0; }
  100%{ stroke-dashoffset:640; fill-opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .ncz-path{ animation:none; stroke-dashoffset:0; fill-opacity:1; }
}

.how-cta{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px;
  border-radius:20px;
  padding:38px 40px;
  background:linear-gradient(115deg, var(--midnight) 0%, var(--carvao) 55%, var(--carvao-card) 145%);
  border:1px solid var(--border-strong);
}
.how-cta h3{ font-size:clamp(20px,2.6vw,28px); font-weight:700; margin-bottom:8px; letter-spacing:-.01em; }
.how-cta p{ color:var(--osso-dim); font-size:14.5px; }

@media (max-width:900px){
  .how-row-top{ display:flex; flex-direction:column; }
  .how-row-bottom{ grid-template-columns:1fr; }
  .how-ncz-col{ min-height:240px; }
  .how-ncz-wrap{ max-width:none; min-width:0; min-height:0; }
  .how-ncz{ width:clamp(130px,34vw,160px); }
}
@media (max-width:600px){
  .how-cta{ padding:30px 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  padding:80px clamp(20px,4vw,56px) 30px;
  border-top:1px solid var(--border);
}
.footer-top{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:56px;
  border-bottom:1px solid var(--border);
  margin-bottom:26px;
}
.footer-mark{ width:140px; height:auto; color:var(--osso); margin-bottom:18px; }
.footer-tagline{ color:var(--osso-dim); font-size:14px; line-height:1.6; max-width:260px; }
.footer-col{ display:flex; flex-direction:column; gap:14px; }
.footer-col-title{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--chumbo);
  margin-bottom:4px;
}
.footer-col a{
  font-size:14px;
  color:var(--osso-dim);
  transition:color .3s ease;
  width:fit-content;
}
.footer-col a:hover{ color:var(--dourado-bright); }
.footer-region{ font-size:12.5px; color:var(--chumbo); line-height:1.5; max-width:220px; margin-top:2px; }
.footer-row{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-family:var(--font-mono);
  font-size:11.5px;
  color:var(--chumbo);
  letter-spacing:.02em;
}

@media (max-width:760px){
  .footer-top{ grid-template-columns:1fr 1fr; gap:32px; }
  .footer-brand{ grid-column:1 / -1; }
}

/* ============================================================
   CASE STUDY PAGES
   ============================================================ */
.case-hero{
  padding:160px clamp(20px,4vw,56px) 40px;
  padding-right:calc(clamp(20px,4vw,56px) + var(--rail-w));
  max-width:1180px;
}
.case-back{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--osso-dim);
  margin-bottom:32px;
  transition:color .35s var(--ease-slow), gap .35s var(--ease-slow);
}
.case-back:hover{ color:var(--dourado-bright); gap:12px; }
.case-title{
  font-size:clamp(40px,7vw,88px);
  font-weight:800;
  line-height:1;
  letter-spacing:-.03em;
  margin-bottom:18px;
}
.case-title-thin{ font-weight:500; color:var(--chalk); }
.case-tagline{ color:var(--osso-dim); font-size:17px; max-width:560px; }

.case-meta-block{
  padding:0 clamp(20px,4vw,56px) 0;
  padding-right:calc(clamp(20px,4vw,56px) + var(--rail-w));
  max-width:1180px;
  margin:0 auto 40px;
  display:grid;
  grid-template-columns:1fr 300px;
  gap:36px;
  align-items:start;
}
.case-cover{
  width:100%;
  border-radius:18px;
  border:1px solid var(--border);
  display:block;
}
.case-meta{
  display:flex; flex-direction:column; gap:20px;
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px;
  background:var(--carvao-card);
}
.case-meta-item{ display:flex; flex-direction:column; gap:6px; }
.case-meta-item span{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--osso-dim);
}
.case-meta-item strong{ font-size:14.5px; font-weight:600; }
@media (max-width:820px){
  .case-meta-block{ grid-template-columns:1fr; }
}

.case-story{
  max-width:1180px;
  margin:0 auto;
  padding:60px clamp(20px,4vw,56px);
  padding-right:calc(clamp(20px,4vw,56px) + var(--rail-w));
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  border-top:1px solid var(--border);
}
.case-story-block p:not(.eyebrow){ color:var(--osso-dim); font-size:16px; line-height:1.75; }

@media (max-width:760px){
  .case-story{ grid-template-columns:1fr; gap:34px; }
}

.case-preview{
  max-width:1180px;
  margin:0 auto;
  padding:60px clamp(20px,4vw,56px);
  padding-right:calc(clamp(20px,4vw,56px) + var(--rail-w));
  border-top:1px solid var(--border);
}
.case-preview-frame{
  position:relative;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:var(--carvao-card);
}
.case-preview-bar{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px;
  border-bottom:1px solid var(--border);
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--osso-dim);
}
.case-preview-expand{
  display:inline-flex; align-items:center; gap:7px;
  padding:8px 14px;
  border-radius:100px;
  background:var(--osso);
  color:var(--carvao);
  font-family:var(--font-body);
  font-size:11.5px;
  font-weight:600;
  letter-spacing:0;
  text-transform:none;
  transition:background .35s var(--ease-slow), transform .35s var(--ease-slow);
}
.case-preview-expand:hover{ background:var(--dourado-bright); transform:translateY(-1px); }
.case-preview-expand svg{ width:13px; height:13px; }
.case-preview-scroll{
  height:min(70vh, 680px);
  overflow-y:auto;
  scroll-behavior:smooth;
}
.case-preview-scroll img{ display:block; width:100%; }
.case-preview-hint{
  position:absolute; right:20px; bottom:14px;
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--osso-dim);
  background:rgba(8,9,11,.75);
  padding:5px 10px;
  border-radius:100px;
  pointer-events:none;
}

.case-preview-scroll::-webkit-scrollbar,
.case-lightbox-scroll::-webkit-scrollbar{ width:8px; }
.case-preview-scroll::-webkit-scrollbar-track,
.case-lightbox-scroll::-webkit-scrollbar-track{ background:transparent; }
.case-preview-scroll::-webkit-scrollbar-thumb,
.case-lightbox-scroll::-webkit-scrollbar-thumb{ background:var(--border-strong); border-radius:100px; }

/* ===== LIGHTBOX ===== */
.case-lightbox{
  position:fixed; inset:0; z-index:300;
  background:rgba(10,10,10,.88);
  backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  padding:5vh 20px;
  opacity:0;
  visibility:hidden;
  transition:opacity .4s var(--ease-slow);
}
.case-lightbox.is-open{ opacity:1; visibility:visible; }
.case-lightbox-inner{
  width:100%; max-width:820px;
  height:90vh;
  background:var(--carvao);
  border:1px solid var(--border-strong);
  border-radius:18px;
  overflow:hidden;
  display:flex; flex-direction:column;
  transform:translateY(24px);
  transition:transform .4s var(--ease-slow);
}
.case-lightbox.is-open .case-lightbox-inner{ transform:translateY(0); }
.case-lightbox-bar{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 22px;
  border-bottom:1px solid var(--border);
  font-family:var(--font-mono);
  font-size:11.5px;
  color:var(--osso-dim);
  flex-shrink:0;
}
.case-lightbox-close{
  width:32px; height:32px;
  border-radius:50%;
  border:1px solid var(--border-strong);
  color:var(--osso);
  font-size:18px;
  line-height:1;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .3s, color .3s;
}
.case-lightbox-close:hover{ border-color:var(--dourado-bright); color:var(--dourado-bright); }
.case-lightbox-scroll{ flex:1; overflow-y:auto; }
.case-lightbox-scroll img{ display:block; width:100%; }

@media (max-width:700px){
  .case-preview-scroll{ height:60vh; }
  .case-lightbox-inner{ height:94vh; }
  .case-preview-hint{ display:none; }
}

.case-next{
  max-width:1180px;
  margin:0 auto;
  padding:50px clamp(20px,4vw,56px) 100px;
  padding-right:calc(clamp(20px,4vw,56px) + var(--rail-w));
  border-top:1px solid var(--border);
}
.case-next-label{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--osso-dim);
  margin-bottom:24px;
}
.case-next-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
}
.case-next-card{
  display:block;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  transition:transform .5s var(--ease-slow), border-color .5s var(--ease-slow);
}
.case-next-card:hover{ transform:translateY(-4px); border-color:var(--border-strong); }
.case-next-media{ aspect-ratio:16/10; overflow:hidden; background:var(--carvao-card); }
.case-next-media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease-slow); }
.case-next-card:hover .case-next-media img{ transform:scale(1.05); }
.case-next-name{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding:16px 18px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:15px;
  color:var(--osso);
}
