/* =========================================================
   MetalEx Engenharia — Landing Page
   Identidade: Navy Profundo + Prata Metálica · Inter
   Tom de voz: Racional · Direto · Técnico
   ========================================================= */

:root {
  /* Brand colors */
  --navy: #2b3967;
  --navy-700: #3f5494;
  --navy-600: #506199;
  --navy-500: #6878ab;
  --navy-400: #8d9bc4;
  --navy-300: #b0bbda;
  --navy-200: #cdd4e8;
  --navy-100: #e4e8f3;
  --navy-50:  #f0f2f8;
  --navy-dark: #1a2550;
  --navy-darker: #111840;

  --silver-hi:  #e8eef3;
  --silver-mid: #b8c5d0;
  --silver-lo:  #8090a0;
  --silver-900: #4a5a65;
  --silver-700: #8fa0ae;

  --bg: #ffffff;
  --bg-mist: #f0f2f8;
  --text: #1a2550;
  --text-body: #3d4a6a;
  --text-muted: #6878ab;
  --border: #dde3f0;

  --grad-hero: linear-gradient(150deg, #1a2550 0%, #2b3967 60%, #243056 100%);
  --grad-dark: linear-gradient(160deg, #1a2550 0%, #111840 100%);
  --grad-silver: linear-gradient(135deg, #e8eef3 0%, #b8c5d0 42%, #8090a0 100%);
  --grad-accent: linear-gradient(120deg, #d4dde5 0%, #8090a0 55%, #b8c5d0 100%);

  --shadow-sm: 0 1px 3px rgba(43,57,103,0.10), 0 1px 2px rgba(43,57,103,0.07);
  --shadow-md: 0 4px 14px rgba(43,57,103,0.13), 0 2px 6px rgba(43,57,103,0.09);
  --shadow-lg: 0 12px 34px rgba(43,57,103,0.16), 0 4px 12px rgba(43,57,103,0.10);
  --shadow-xl: 0 24px 60px rgba(43,57,103,0.22), 0 8px 24px rgba(43,57,103,0.12);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--navy); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--mist { background: var(--bg-mist); }
.section--navy { background: var(--grad-hero); color: #fff; }
.section--dark { background: var(--grad-dark); color: #fff; }

.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 20px;
}
.overline::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.section--navy .overline, .section--dark .overline { color: var(--silver-mid); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .overline { justify-content: center; }

h2.h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}
.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  margin-top: 20px;
}
.section--navy .lead, .section--dark .lead { color: rgba(255,255,255,0.7); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 250ms var(--ease-out), box-shadow 250ms ease, background 250ms ease, color 250ms ease, border-color 250ms ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(43,57,103,0.30);
}
.btn-primary:hover { background: var(--navy-darker); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(43,57,103,0.40); }
.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 26px rgba(0,0,0,0.22);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,0,0,0.30); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-300);
}
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.6); }
.btn-lg { font-size: 16px; padding: 19px 36px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: none;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  will-change: background, padding;
}
.header.scrolled {
  background: rgba(26,37,80,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(17,24,64,0.30);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.brand-logo-img { height: 52px; width: auto; display: block; }
.footer .brand-logo-img { height: 56px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--grad-silver);
  display: grid; place-items: center;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6), 0 4px 12px rgba(43,57,103,0.35);
  flex-shrink: 0;
}
.brand-mark span {
  font-weight: 900;
  font-size: 19px;
  color: var(--navy-dark);
  letter-spacing: -0.04em;
}
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.brand-word small { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--silver-mid); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: color 200ms ease; position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--silver-mid);
  transition: width 250ms var(--ease-out);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }
.header .btn { padding: 12px 22px; font-size: 14px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 250ms ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 76px;
}
.hero-bg-grid {
  position: absolute; inset: -64px;
  background-image:
    linear-gradient(rgba(184,197,208,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,197,208,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, #000 0%, transparent 80%);
  pointer-events: none;
  animation: gridDrift 26s linear infinite;
}
@keyframes gridDrift { to { background-position: 64px 64px; } }
.hero-glow {
  position: absolute;
  width: 720px; height: 720px;
  right: -180px; top: -160px;
  background: radial-gradient(circle, rgba(184,197,208,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }

/* Fullscreen background image + legibility overlay */
.hero-media { position: absolute; left: 0; right: 0; top: -6%; height: 112%; z-index: 0; overflow: hidden; will-change: transform; }
.hero-imgph { width: 100%; height: 100%; will-change: transform; animation: kenBurns 24s ease-in-out infinite alternate; }
.hero-imgph::before { display: none; }
.hero-imgph .imgph-label { max-width: 420px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
@keyframes kenBurns { from { transform: scale(1.03); } to { transform: scale(1.14); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, rgba(17,24,64,0.96) 0%, rgba(20,29,68,0.86) 34%, rgba(26,37,80,0.55) 66%, rgba(26,37,80,0.30) 100%),
    linear-gradient(to top, rgba(17,24,64,0.9) 0%, rgba(17,24,64,0.15) 34%, transparent 60%);
}

.hero-bg-grid { z-index: 2; }
.hero-inner { position: relative; z-index: 3; width: 100%; will-change: transform, opacity; }
.hero-copy { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(184,197,208,0.35);
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--silver-mid); box-shadow: 0 0 0 4px rgba(184,197,208,0.18); }
.hero h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(110deg, #8090a0 0%, #e8eef3 30%, #ffffff 45%, #b8c5d0 60%, #8090a0 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-bullets { list-style: none; margin: 36px 0 40px; display: grid; gap: 14px; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 14px; font-size: clamp(15px, 1.5vw, 17px); color: rgba(255,255,255,0.82); line-height: 1.45; }
.hero-bullets .check {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; margin-top: 1px;
  background: rgba(184,197,208,0.14); border: 1px solid rgba(184,197,208,0.3);
  display: grid; place-items: center;
}
.hero-bullets .check svg { width: 13px; height: 13px; stroke: var(--silver-mid); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual (image placeholder) */
.hero-visual { position: relative; will-change: transform; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(184,197,208,0.18);
  aspect-ratio: 4 / 5;
  animation: floatA 7.5s ease-in-out infinite;
}
@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-badge-float {
  position: absolute;
  right: clamp(20px, 5vw, 64px); bottom: 116px; left: auto;
  background: #fff; color: var(--navy);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  z-index: 3;
}
.hero-badge-float .num { font-size: 30px; font-weight: 900; letter-spacing: -0.03em; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-badge-float .lbl { font-size: 12px; font-weight: 600; color: var(--text-muted); line-height: 1.3; max-width: 120px; }
.hero-badge-float { animation: floatB 6s ease-in-out infinite; }
@keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.hero-scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3); border-radius: 14px; position: relative; }
.hero-scroll .mouse::before { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: var(--silver-mid); border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translate(-50%,12px); } }

/* ---------- Image placeholder ---------- */
.imgph {
  position: relative;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(184,197,208,0.10) 0 12px, rgba(184,197,208,0.04) 12px 24px),
    var(--grad-hero);
  display: grid; place-items: center;
  overflow: hidden;
}
.imgph::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(184,197,208,0.16), transparent 55%);
}
.imgph-label {
  position: relative; z-index: 1;
  font-family: 'Menlo','Monaco','Courier New',monospace;
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(232,238,243,0.78);
  text-align: center;
  padding: 16px 22px;
  max-width: 80%;
  line-height: 1.5;
}
.imgph-label .ic { display: block; margin: 0 auto 12px; width: 34px; height: 34px; opacity: 0.7; }
.imgph.light {
  background:
    repeating-linear-gradient(135deg, rgba(43,57,103,0.05) 0 12px, rgba(43,57,103,0.02) 12px 24px),
    var(--bg-mist);
}
.imgph.light .imgph-label { color: var(--navy-500); }
.imgph.light::after { background: radial-gradient(circle at 70% 20%, rgba(43,57,103,0.05), transparent 55%); }

/* ---------- Challenge cards (Desafios) ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.challenge-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 350ms var(--ease-out), box-shadow 350ms ease, border-color 350ms ease;
}
.challenge-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--grad-accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 400ms var(--ease-out);
}
.challenge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.challenge-card:hover::before { transform: scaleY(1); }
.challenge-num { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; color: var(--navy-300); margin-bottom: 18px; font-family: 'Menlo',monospace; }
.challenge-card h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 14px; color: var(--text); }
.challenge-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ---------- Application cards ---------- */
.grid-apps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 350ms var(--ease-out), box-shadow 350ms ease;
  display: flex; flex-direction: column;
}
.app-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.app-card-media { aspect-ratio: 16 / 10; position: relative; }
.app-card:hover .app-card-media .imgph { transform: scale(1.04); }
.app-card-media .imgph { transition: transform 600ms var(--ease-out); }
.app-card-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(26,37,80,0.78); backdrop-filter: blur(6px);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--radius-full);
  border: 1px solid rgba(184,197,208,0.3);
}
.app-card-body { padding: 32px 32px 36px; }
.app-card-body h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 14px; }
.app-card-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ---------- Diferenciais (dark numbered list) ---------- */
.diff-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.diff-list { display: grid; gap: 4px; }
.diff-item {
  display: flex; gap: 26px; align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid rgba(184,197,208,0.16);
}
.diff-item:last-child { border-bottom: 1px solid rgba(184,197,208,0.16); }
.diff-item .idx {
  font-size: 15px; font-weight: 800; letter-spacing: 0.05em;
  color: var(--silver-mid); font-family: 'Menlo',monospace;
  flex-shrink: 0; padding-top: 4px; min-width: 36px;
}
.diff-item .txt { font-size: clamp(17px, 1.9vw, 22px); font-weight: 600; line-height: 1.35; color: rgba(255,255,255,0.92); letter-spacing: -0.01em; }
.diff-item:hover .txt { color: #fff; }
.diff-aside { position: relative; }
.diff-aside .imgph { border-radius: var(--radius-lg); aspect-ratio: 3 / 4; box-shadow: var(--shadow-xl); }
.diff-aside-img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); display: block; }
.diff-cta { margin-top: 44px; }

/* ---------- Processo (steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; counter-reset: step; }
.steps::before {
  content: ''; position: absolute; top: 31px; left: 8%; right: 8%; height: 2px;
  background: var(--border); z-index: 0;
}
.steps .progress-line {
  position: absolute; top: 31px; left: 8%; height: 2px; z-index: 1;
  background: var(--grad-accent); width: 0; transition: width 1.4s var(--ease-out);
}
.step { position: relative; z-index: 2; padding: 0 18px; text-align: left; }
.step-dot {
  width: 62px; height: 62px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: grid; place-items: center;
  font-size: 19px; font-weight: 800; color: var(--navy);
  margin-bottom: 26px;
  transition: transform 450ms var(--ease-spring), box-shadow 350ms ease, background 350ms ease, color 350ms ease, border-color 350ms ease;
}
.step.lit .step-dot { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-lg); transform: scale(1.04); }
.step h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.25; }
.step p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }

/* ---------- Comparativa ---------- */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff;
}
.compare-col { display: flex; flex-direction: column; }
.compare-head { padding: 30px 36px; font-weight: 700; font-size: 17px; display: flex; align-items: center; gap: 12px; }
.compare-col.market .compare-head { background: var(--bg-mist); color: var(--text-muted); }
.compare-col.metalex .compare-head { background: var(--navy); color: #fff; }
.compare-col.metalex .compare-head .pill { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-mid); border: 1px solid rgba(184,197,208,0.4); padding: 3px 10px; border-radius: var(--radius-full); }
.compare-row {
  padding: 26px 36px 26px 64px;
  font-size: 15px; line-height: 1.55;
  border-top: 1px solid var(--border);
  position: relative; min-height: 100px; display: flex; align-items: center;
}
.compare-row::before {
  content: ''; position: absolute; left: 30px; top: 28px;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
}
.compare-col.market .compare-row { color: var(--text-muted); }
.compare-col.market .compare-row::before { content: '×'; background: var(--navy-200); color: var(--navy-600); }
.compare-col.metalex .compare-row { color: var(--text); font-weight: 500; background: linear-gradient(90deg, rgba(43,57,103,0.025), transparent 70%); }
.compare-col.metalex .compare-row::before { content: '✓'; background: var(--navy); color: #fff; }

/* ---------- Sobre / Números ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: #fff; padding: 38px 32px; }
.stat .val { font-size: clamp(40px, 5vw, 56px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--navy); white-space: nowrap; }
.stat .val .suffix { font-size: 0.5em; font-weight: 800; color: var(--navy-400); margin-left: 4px; letter-spacing: 0; }
.stat .desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-top: 16px; }
.about-copy p { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-body); line-height: 1.7; margin-bottom: 22px; }
.about-copy p:first-of-type { font-size: clamp(19px, 2vw, 24px); font-weight: 600; color: var(--text); letter-spacing: -0.01em; line-height: 1.45; }
.about-copy .btn { margin-top: 16px; }

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 210px; gap: 16px; }
.gallery .cell { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery .cell .imgph { transition: transform 700ms var(--ease-out); }
.gallery .cell:hover .imgph { transform: scale(1.06); }
.gallery-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 700ms var(--ease-out); }
.gallery .cell:hover .gallery-img { transform: scale(1.06); }
.gallery .cell.g-a { grid-column: span 3; grid-row: span 2; }
.gallery .cell.g-b { grid-column: span 3; grid-row: span 1; }
.gallery .cell.g-c { grid-column: span 2; grid-row: span 1; }

/* ---------- Localização ---------- */
.loc-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.loc-list { list-style: none; display: grid; gap: 18px; margin: 32px 0 36px; }
.loc-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.45; }
.loc-list .pin { width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px; background: rgba(184,197,208,0.14); border: 1px solid rgba(184,197,208,0.3); display: grid; place-items: center; }
.loc-list .pin svg { width: 14px; height: 14px; stroke: var(--silver-mid); }
.loc-list li b { color: #fff; font-weight: 700; }
.map-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy-dark); border: 1px solid rgba(184,197,208,0.16);
  box-shadow: var(--shadow-xl); aspect-ratio: 4 / 3;
}
.map-svg { width: 100%; height: 100%; display: block; }
.map-legend {
  position: absolute; left: 22px; bottom: 22px; z-index: 3;
  background: rgba(17,24,64,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(184,197,208,0.2);
  border-radius: var(--radius-md); padding: 14px 18px;
  display: grid; gap: 8px;
}
.map-legend .row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.75); }
.map-legend .swatch { width: 14px; height: 14px; border-radius: 4px; }
.ring-pulse { transform-origin: 252px 248px; animation: ringPulse 3.4s ease-in-out infinite; }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.12); opacity: 0.6; } }
@media (prefers-reduced-motion: reduce) { .ring-pulse { animation: none; } }

/* ---------- FAQ ---------- */
.faq { max-width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 4px; text-align: left;
}
.faq-q-text { font-size: clamp(17px, 1.8vw, 20px); font-weight: 600; color: var(--text); letter-spacing: -0.01em; transition: color 250ms ease; }
.faq-item.open .faq-q-text { color: var(--navy); }
.faq-icon { width: 34px; height: 34px; flex-shrink: 0; border: 1.5px solid var(--border); border-radius: 50%; display: grid; place-items: center; position: relative; transition: 300ms var(--ease-out); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--navy-500); border-radius: 2px; transition: 300ms var(--ease-out); }
.faq-icon::before { width: 13px; height: 2px; }
.faq-icon::after { width: 2px; height: 13px; }
.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); transform: rotate(90deg); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 400ms var(--ease-out); }
.faq-a-inner { padding: 0 4px 30px; font-size: 16px; color: var(--text-body); line-height: 1.75; max-width: 92%; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; position: relative; overflow: hidden; }
.cta-final .glow { position: absolute; width: 700px; height: 700px; left: 50%; top: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(184,197,208,0.14), transparent 60%); pointer-events: none; }
.cta-final h2 { font-size: clamp(32px, 5vw, 58px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; max-width: 900px; margin: 0 auto; text-wrap: balance; }
.cta-final .btn { margin-top: 44px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-darker); color: rgba(255,255,255,0.6); padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: start; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer .brand-word b { color: #fff; }
.footer-tag { font-size: 15px; line-height: 1.6; margin-top: 20px; max-width: 320px; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver-mid); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: color 200ms ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform 300ms var(--ease-spring);
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }

/* ---------- Showcase panels: fade individual ao entrar na tela ---------- */
.showcase-panel.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 400ms ease,
              border-color 400ms ease;
}
.showcase-panel.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .hero-bg-grid, .hero-glow, .hero h1 .accent, .hero-frame, .hero-badge-float, .hero-imgph { animation: none !important; }
}

/* ---------- Processo: sem animação de entrada ---------- */
#processo .reveal,
#processo .reveal.from-l,
#processo .reveal.from-r {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* =========================================================
   AUTHENTIC / SCROLL-DRIVEN ADDITIONS
   ========================================================= */

/* ---- Top scroll progress bar ---- */
.scrollbar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-silver); z-index: 200;
  box-shadow: 0 0 12px rgba(184,197,208,0.5);
}

/* ---- Section index (editorial / technical) ---- */
.overline .ix {
  font-family: 'Menlo','Monaco','Courier New',monospace;
  font-style: normal; font-weight: 700; font-size: 11px;
  letter-spacing: 0.05em; color: var(--navy-300);
  padding-right: 2px;
}
.section--navy .overline .ix, .section--dark .overline .ix { color: rgba(184,197,208,0.55); }

/* ---- Blueprint corner brackets on placeholders ---- */
.imgph::before {
  content: ''; position: absolute; inset: 14px; z-index: 2; pointer-events: none;
  --t: 16px; --w: 1.5px; --c: rgba(184,197,208,0.55);
  background:
    linear-gradient(var(--c),var(--c)) top left/var(--t) var(--w) no-repeat,
    linear-gradient(var(--c),var(--c)) top left/var(--w) var(--t) no-repeat,
    linear-gradient(var(--c),var(--c)) top right/var(--t) var(--w) no-repeat,
    linear-gradient(var(--c),var(--c)) top right/var(--w) var(--t) no-repeat,
    linear-gradient(var(--c),var(--c)) bottom left/var(--t) var(--w) no-repeat,
    linear-gradient(var(--c),var(--c)) bottom left/var(--w) var(--t) no-repeat,
    linear-gradient(var(--c),var(--c)) bottom right/var(--t) var(--w) no-repeat,
    linear-gradient(var(--c),var(--c)) bottom right/var(--w) var(--t) no-repeat;
}
.imgph.light::before { --c: rgba(43,57,103,0.35); }

/* ---- Credentials marquee ---- */
.marquee {
  background: var(--navy-dark); color: #fff; overflow: hidden;
  border-top: 1px solid rgba(184,197,208,0.12);
  border-bottom: 1px solid rgba(184,197,208,0.12);
}
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 28px;
  padding: 26px 0; white-space: nowrap;
}
.marquee-item .word { font-size: clamp(17px, 2vw, 24px); font-weight: 700; letter-spacing: -0.01em; padding: 0 38px; color: rgba(255,255,255,0.88); }
.marquee-item .word.hi { background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.marquee-item .star { width: 9px; height: 9px; transform: rotate(45deg); background: var(--silver-mid); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- Aplicações — sticky scroll showcase ---- */
.showcase { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: start; }
.showcase-aside { position: sticky; top: 120px; align-self: start; }
.showcase-nav { list-style: none; margin-top: 36px; display: grid; gap: 2px; }
.showcase-nav li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-top: 1px solid var(--border);
  color: var(--navy-300); font-weight: 600; font-size: 16px;
  cursor: pointer; transition: color 350ms ease, padding 350ms var(--ease-out);
  letter-spacing: -0.01em;
}
.showcase-nav li:last-child { border-bottom: 1px solid var(--border); }
.showcase-nav li .n { font-family: 'Menlo',monospace; font-size: 12px; font-weight: 700; color: var(--navy-200); transition: color 350ms ease; }
.showcase-nav li.active { color: var(--navy); padding-left: 14px; }
.showcase-nav li.active .n { color: var(--silver-lo); }
.showcase-panels { display: grid; gap: 28px; }
.showcase-panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow 400ms ease, border-color 400ms ease;
  scroll-margin-top: 120px;
}
.showcase-panel.active { box-shadow: var(--shadow-lg); border-color: transparent; }
.showcase-panel .panel-media { aspect-ratio: 21 / 9; position: relative; }
.showcase-panel .panel-media .imgph { transition: transform 800ms var(--ease-out); transform: scale(1.0); }
.showcase-panel.active .panel-media .imgph { transform: scale(1.05); }
.panel-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 800ms var(--ease-out); transform: scale(1.0); }
.showcase-panel.active .panel-img { transform: scale(1.05); }
.panel-tag {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  background: rgba(26,37,80,0.8); backdrop-filter: blur(6px); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--radius-full); border: 1px solid rgba(184,197,208,0.3);
}
.panel-body { padding: 36px 40px 40px; position: relative; }
.panel-body .watermark {
  position: absolute; top: 24px; right: 36px;
  font-family: 'Menlo',monospace; font-size: 72px; font-weight: 800;
  color: var(--navy-50); line-height: 1; letter-spacing: -0.04em; pointer-events: none;
}
.panel-body h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; position: relative; }
.panel-body p { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 88%; position: relative; }

/* ---- Diferenciais — sticky visual + scroll-activated list ---- */
.diff-aside { position: sticky; top: 120px; align-self: start; }
.diff-list { position: relative; padding-left: 30px; }
.diff-rail { position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: rgba(184,197,208,0.16); }
.diff-rail-fill { position: absolute; left: 0; top: 0; width: 2px; height: 0; background: var(--grad-accent); transition: height 200ms linear; }
.diff-item { border-top: 1px solid rgba(184,197,208,0.16); opacity: 0.45; transition: opacity 450ms ease; }
.diff-item:last-child { border-bottom: 1px solid rgba(184,197,208,0.16); }
.diff-item.active { opacity: 1; }
.diff-item .idx { transition: color 350ms ease; }
.diff-item.active .idx { color: #fff; }
.diff-item.active .txt { color: #fff; }

/* ---- Processo — vertical scroll timeline ---- */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.tl-rail { position: absolute; left: 31px; top: 10px; bottom: 10px; width: 2px; background: var(--border); }
.tl-fill { position: absolute; left: 31px; top: 10px; width: 2px; height: 0; background: var(--grad-accent); transition: height 150ms linear; }
.tl-step { position: relative; padding: 0 0 52px 104px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 0; top: -4px; width: 64px; height: 64px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border); display: grid; place-items: center;
  font-size: 19px; font-weight: 800; color: var(--navy); z-index: 2;
  transition: transform 450ms var(--ease-spring), background 400ms ease, color 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}
.tl-step.lit .tl-dot { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-lg); transform: scale(1.06); }
.tl-meta { font-family: 'Menlo',monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--navy-300); margin-bottom: 8px; }
.tl-step h3 { font-size: clamp(20px, 2.2vw, 25px); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.2; }
.tl-step p { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 90%; }

/* ---- Reveal directions ---- */
.reveal.from-l { transform: translateX(-48px); }
.reveal.from-r { transform: translateX(48px); }
.reveal.from-l.in, .reveal.from-r.in { transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { gap: 48px; }
  .diff-grid, .about-grid, .loc-grid { grid-template-columns: 1fr; gap: 44px; }
  .diff-aside { order: -1; max-width: 460px; position: static; }
  .showcase { grid-template-columns: 1fr; gap: 36px; }
  .showcase-aside { position: static; }
  .showcase-nav { display: none; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery .cell.g-a { grid-column: span 4; grid-row: span 2; }
  .gallery .cell.g-b { grid-column: span 4; }
  .gallery .cell.g-c { grid-column: span 2; }
}

/* ---- Tablet / small desktop: hamburger menu ---- */
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header .btn { display: none; }
}

@media (max-width: 760px) {
  .wrap { padding: 0 22px; }
  .grid-2, .grid-apps, .compare, .stats { grid-template-columns: 1fr; }
  .compare-col.market { border-bottom: 1px solid var(--border); }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps::before, .steps .progress-line { display: none; }
  .step { display: grid; grid-template-columns: 62px 1fr; gap: 22px; align-items: start; }
  .step-dot { margin-bottom: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery .cell.g-a { grid-column: span 2; grid-row: span 2; }
  .gallery .cell.g-b { grid-column: span 2; grid-row: span 1; }
  .gallery .cell.g-c { grid-column: span 1; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero-badge-float { display: none; }
  /* Hero CTAs: stack vertically, full-width */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  /* Section CTA buttons: full-width on mobile */
  #diferenciais .btn, #sobre .btn, #contato .btn { width: 100%; justify-content: center; }
  .panel-body { padding: 28px 24px 30px; }
  .panel-body p { max-width: 100%; }
  .panel-body .watermark { font-size: 52px; top: 16px; right: 22px; }
  .tl-step { padding-left: 84px; padding-bottom: 40px; }
  .tl-dot { width: 56px; height: 56px; }
  .tl-rail, .tl-fill { left: 27px; }
  .diff-list { padding-left: 24px; }
  /* Footer bottom: stack on very small screens */
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ══════════════════════════════════════════════
   MODAIS BUILDV — Formulários + Privacidade + Cookies
   ══════════════════════════════════════════════ */
.form-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.form-overlay.open { opacity: 1; pointer-events: all; }
.form-modal {
  background: #f8f7f4;
  border-radius: var(--radius-lg);
  width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.form-overlay.open .form-modal { transform: translateY(0); }
.form-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 28px 28px 0;
}
.form-modal-header h2 { font-size: 17px; font-weight: 700; color: var(--navy); }
.form-modal-header p  { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.form-modal-close {
  background: none; border: 1px solid #ddd; border-radius: 4px;
  cursor: pointer; font-size: 17px; color: #888;
  padding: 2px 9px; line-height: 1.5; flex-shrink: 0; margin-left: 16px;
  transition: border-color 0.2s;
}
.form-modal-close:hover { border-color: var(--navy); color: var(--navy); }
.form-modal form { padding: 22px 28px 28px; display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.form-group input,
.form-group select {
  padding: 11px 13px; border: 1px solid #dde3f0; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 14px; background: #fff; color: var(--navy);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(43,57,103,0.12); }
.file-label {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px; border: 1px dashed #b0bbda; border-radius: var(--radius-sm);
  background: #fff; cursor: pointer; font-size: 13px; color: var(--text-muted);
  transition: border-color 0.2s;
}
.file-label:hover { border-color: var(--navy); color: var(--navy); }
input[type="file"] { display: none; }
.file-name { font-size: 12px; }
.form-submit {
  padding: 13px; background: var(--navy); color: #fff; border: none;
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 14px;
  font-weight: 600; cursor: pointer; transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.88; }
.form-submit:disabled { opacity: 0.45; cursor: not-allowed; }
.form-feedback { padding: 11px 14px; border-radius: var(--radius-sm); font-size: 13px; display: none; }
.form-feedback.success { background: #f0faf4; border: 1px solid #a3d9b1; color: #1a6b35; }
.form-feedback.error   { background: #fdf2f2; border: 1px solid #e8b4b4; color: #8a2020; }

/* Política de Privacidade */
.privacy-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.privacy-overlay.open { opacity: 1; pointer-events: all; }
.privacy-modal {
  background: #fff; border-radius: var(--radius-lg);
  width: 100%; max-width: 640px; max-height: 86vh;
  display: flex; flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.privacy-overlay.open .privacy-modal { transform: translateY(0); }
.privacy-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid #eee; flex-shrink: 0;
}
.privacy-header h2 { font-size: 15px; font-weight: 700; color: var(--navy); }
.privacy-close { background: none; border: none; cursor: pointer; font-size: 22px; color: #999; padding: 4px; }
.privacy-close:hover { color: var(--navy); }
.privacy-body { overflow-y: auto; padding: 24px; font-size: 13px; line-height: 1.78; color: #333; }
.privacy-body h3 { font-size: 13px; font-weight: 700; color: var(--navy); margin: 20px 0 6px; }
.privacy-body p, .privacy-body ul { margin-bottom: 12px; }
.privacy-body ul { padding-left: 18px; }

/* Cookie Notice */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  background: var(--navy-darker, #111840); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform 0.48s cubic-bezier(0.16,1,0.3,1);
}
.cookie-notice.show { transform: translateY(0); }
.cookie-notice p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55; flex: 1; min-width: 200px; }
.cookie-notice p button { background: none; border: none; padding: 0; color: var(--silver-hi, #e8eef3); font-size: inherit; font-family: inherit; cursor: pointer; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 9px 22px; border-radius: var(--radius-sm); font-family: var(--font); font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: opacity 0.2s; }
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn--accept { background: #fff; color: var(--navy); border: none; }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.2); }
@media (max-width: 600px) {
  .cookie-notice { padding: 16px 20px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
