/* ════════════════════════════════════════════════════════════
   GRUPO NEXA — Stylesheet
   Identidade: corporate global · navy bancário com accent roxo
   Hand-coded, sem dependências externas além de Google Fonts.
   ════════════════════════════════════════════════════════════ */

/* ───── DESIGN TOKENS ───────────────────────────────────────── */

:root {
  /* Cores principais */
  --navy-900: #08172F;
  --navy-800: #0B1F3A;
  --navy-700: #112A4A;
  --navy-600: #1A3C66;
  --navy-500: #2A5290;

  --purple-600: #5B2DE6;
  --purple-500: #6F46EA;
  --purple-400: #8866EE;
  --purple-glow: rgba(91, 45, 230, 0.18);

  --gold: #C9A961;
  --gold-soft: rgba(201, 169, 97, 0.12);

  --bone-100: #F4F1EA;
  --bone-200: #E9E4D8;
  --bone-300: #D6CFBE;

  --ink-900: #0A0E14;
  --ink-700: #1A1F2A;
  --ink-500: #3A4253;
  --ink-400: #58627A;
  --ink-300: #8A93A6;
  --ink-200: #BDC4D2;

  /* Tipografia */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamentos */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 10vw, 160px);

  /* Bordas e sombras */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-soft: 0 12px 36px -16px rgba(11, 31, 58, 0.18);
  --shadow-strong: 0 24px 64px -24px rgba(11, 31, 58, 0.4);

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ───── RESET ───────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bone-100);
  overflow-x: hidden;
}

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

::selection { background: var(--purple-600); color: white; }

/* ───── UTILITIES ───────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ───── NAV ─────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(244, 241, 234, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(244, 241, 234, 0.96);
  border-bottom-color: rgba(11, 31, 58, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav__logo {
  width: 32px; height: 32px;
  color: var(--purple-600);
  transition: transform 0.5s var(--ease-out);
}

.nav__brand:hover .nav__logo { transform: rotate(-12deg); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-500);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--purple-600);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover { color: var(--navy-800); }
.nav__links a:hover::after { width: 100%; }

.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang-toggle {
  color: var(--ink-300);
  padding: 4px 6px;
  transition: color 0.2s var(--ease);
}

.lang-toggle[aria-pressed="true"] { color: var(--navy-800); }
.lang-toggle:hover { color: var(--purple-600); }
.lang-divider { color: var(--ink-200); }

.nav__burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
}

.nav__burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--navy-800);
  transition: transform 0.3s var(--ease);
}

/* ───── BUTTONS ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy-800);
  color: var(--bone-100);
  box-shadow: 0 4px 16px -4px rgba(11, 31, 58, 0.4);
}

.btn--primary:hover {
  background: var(--purple-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px var(--purple-glow);
}

.btn--primary svg { transition: transform 0.25s var(--ease); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  color: var(--navy-800);
  border: 1.5px solid rgba(11, 31, 58, 0.18);
}

.btn--ghost:hover {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--bone-100);
}

/* ───── HERO ────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 160px 0 var(--section-y);
  background: linear-gradient(180deg, var(--bone-100) 0%, var(--bone-200) 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}

.hero__glow--1 {
  top: -10%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--purple-glow), transparent 70%);
}

.hero__glow--2 {
  bottom: -20%;
  left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(11, 31, 58, 0.12), transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s var(--ease-out);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: white;
  border: 1px solid var(--bone-300);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}

.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-600);
  box-shadow: 0 0 0 4px var(--purple-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin-bottom: 32px;
  max-width: 900px;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--purple-600);
}

.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 72px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(11, 31, 58, 0.1);
  max-width: 760px;
}

.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }

.hero__meta-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-400);
}

.hero__meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  font-feature-settings: 'tnum';
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───── SECTIONS BASE ───────────────────────────────────────── */

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--dark {
  background: var(--navy-900);
  color: var(--bone-100);
}

.section--dark .section__kicker { color: var(--gold); }
.section--dark .section__title { color: var(--bone-100); }

.section--accent {
  background: var(--navy-800);
  color: var(--bone-100);
}

.section--accent .section__kicker { color: var(--purple-400); }
.section--accent .section__title { color: var(--bone-100); }

.section__head {
  max-width: 900px;
  margin-bottom: 72px;
}

.section__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--purple-600);
  margin-bottom: 20px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}

.section__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--purple-600);
}

.section--dark .section__title em,
.section--accent .section__title em {
  color: var(--gold);
}

.section__lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 720px;
  margin-top: 24px;
}

/* ───── SOBRE ──────────────────────────────────────────────── */

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__copy p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: 24px;
}

.about__copy p:last-child { margin-bottom: 0; }
.about__copy strong { color: var(--navy-900); font-weight: 600; }

.about__card {
  padding: 40px;
  background: white;
  border: 1px solid var(--bone-300);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 100px;
}

.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bone-300);
}

.about__dl { display: flex; flex-direction: column; gap: 18px; }

.about__dl div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__dl dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-400);
}

.about__dl dd {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-800);
  font-feature-settings: 'tnum';
}

/* ───── PILARES ─────────────────────────────────────────────── */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar {
  padding: 40px 32px;
  background: var(--navy-900);
  position: relative;
  transition: background 0.4s var(--ease);
}

.pillar:hover { background: var(--navy-800); }

.pillar__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--bone-100);
  margin-bottom: 16px;
}

.pillar p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-200);
  margin-bottom: 24px;
}

.pillar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pillar__tags li {
  padding: 4px 10px;
  background: rgba(91, 45, 230, 0.15);
  border: 1px solid rgba(91, 45, 230, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--purple-400);
  letter-spacing: 0.02em;
}

/* ───── TECNOLOGIA PROPRIETÁRIA ─────────────────────────────── */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.product {
  padding: 40px;
  background: white;
  border: 1px solid var(--bone-300);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--purple-400);
}

.product__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bone-200);
}

.product__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product__logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}

.product__logo svg { width: 24px; height: 24px; }

.product__logo--nexacalls {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  color: white;
}

.product__logo--zyra {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold);
}

.product__head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

.product__url {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-400);
  font-feature-settings: 'tnum';
}

.product__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.product__badge--live {
  background: rgba(91, 45, 230, 0.1);
  color: var(--purple-600);
}

.product__badge--dev {
  background: var(--gold-soft);
  color: #8B7239;
}

.product__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

.product__lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-500);
  margin-bottom: 24px;
}

.product__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.product__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-700);
}

.product__features svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  color: var(--purple-600);
}

.product__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 18px;
  background: var(--navy-800);
  color: var(--bone-100);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
}

.product__cta:hover {
  background: var(--purple-600);
  transform: translateX(3px);
}

/* ───── MERCADOS ────────────────────────────────────────────── */

.markets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.market {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}

.market:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.market__flag {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.market h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--bone-100);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.market__status {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(91, 45, 230, 0.25);
  color: white;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.market__status--soon {
  background: var(--gold-soft);
  color: var(--gold);
}

.market p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-200);
}

.market--active .market__flag::before {
  content: '';
}

/* ───── NÚMEROS ─────────────────────────────────────────────── */

.numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.number {
  padding: 48px 32px;
  background: var(--navy-900);
  text-align: center;
  position: relative;
}

.number__prefix {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--gold);
  vertical-align: top;
  margin-right: 4px;
}

.number__value {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bone-100);
  font-feature-settings: 'tnum';
  margin-bottom: 16px;
}

.number__value--text {
  color: var(--purple-400);
}

.number__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-200);
  line-height: 1.5;
  letter-spacing: 0.01em;
  max-width: 220px;
  margin: 0 auto;
}

/* ───── PARCEIROS ───────────────────────────────────────────── */

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.partner {
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--bone-300);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.25s var(--ease);
}

.partner:hover {
  border-color: var(--purple-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.partner span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.partner small {
  font-size: 0.75rem;
  color: var(--ink-400);
  letter-spacing: 0.02em;
}

/* ───── CONTATO ─────────────────────────────────────────────── */

.section--contact { background: var(--bone-200); }

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.contact__col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bone-300);
  letter-spacing: -0.005em;
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
  transition: all 0.2s var(--ease);
}

.contact__item:last-child { border-bottom: 0; }

a.contact__item:hover {
  padding-left: 8px;
}

a.contact__item:hover .contact__value {
  color: var(--purple-600);
}

.contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-400);
}

.contact__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.5;
  transition: color 0.2s var(--ease);
}

/* ───── FOOTER ──────────────────────────────────────────────── */

.footer {
  background: var(--navy-900);
  color: var(--ink-200);
  padding: 80px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-300);
  max-width: 320px;
}

.footer__brand strong { color: var(--bone-100); font-weight: 600; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--bone-100);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

.footer__logo svg {
  width: 32px; height: 32px;
  color: var(--purple-400);
}

.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bone-100);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  font-size: 0.875rem;
  color: var(--ink-300);
  transition: color 0.2s var(--ease);
}

.footer__col a:hover { color: var(--purple-400); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-top: 32px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-300);
}

.footer__legal strong { color: var(--bone-100); font-weight: 600; }
.footer__compliance { text-align: right; }
.footer__compliance a { color: var(--purple-400); }

/* ───── COOKIES ─────────────────────────────────────────────── */

.cookies {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 200;
  padding: 20px 24px;
  background: var(--navy-900);
  color: var(--bone-100);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.4);
  max-width: 720px;
  margin: 0 auto;
  animation: slideUp 0.4s var(--ease-out);
}

.cookies__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookies p {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-200);
  min-width: 240px;
}

.cookies a { color: var(--purple-400); text-decoration: underline; }

.cookies__btn {
  padding: 10px 20px;
  background: var(--purple-600);
  color: white;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.cookies__btn:hover { background: var(--purple-500); transform: translateY(-1px); }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───── ANIMAÇÕES SCROLL ────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───── LEGAL PAGES ─────────────────────────────────────────── */

.legal-page {
  padding: 140px 0 100px;
  background: var(--bone-100);
  min-height: 80vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.legal-content .updated {
  font-size: 0.875rem;
  color: var(--ink-400);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bone-300);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy-800);
  margin: 48px 0 16px;
  letter-spacing: -0.015em;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-700);
  margin: 28px 0 12px;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: 16px;
}

.legal-content ul { padding-left: 24px; margin-bottom: 24px; }
.legal-content li { list-style: disc; margin-bottom: 8px; }
.legal-content strong { color: var(--navy-900); font-weight: 600; }
.legal-content a { color: var(--purple-600); text-decoration: underline; }
.legal-content a:hover { color: var(--purple-500); }

/* ───── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__card { position: static; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .nav__inner.is-open { flex-wrap: wrap; }
  .nav__inner.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--bone-300);
    gap: 14px;
  }

  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; gap: 24px; }
  .footer__compliance { text-align: left; }

  .cookies { bottom: 12px; left: 12px; right: 12px; padding: 16px; }
  .cookies__inner { flex-direction: column; align-items: stretch; }
  .cookies__btn { width: 100%; }

  .hero { padding-top: 130px; }
}

@media (max-width: 480px) {
  .nav__lang { display: none; }
  .nav__inner.is-open .nav__lang {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding-top: 12px;
    border-top: 1px solid var(--bone-300);
  }
  .pillar { padding: 32px 24px; }
  .product { padding: 32px 24px; }
}

/* ───── PRINT ───────────────────────────────────────────────── */

@media print {
  .nav, .cookies, .hero__cta { display: none; }
  body { background: white; color: black; }
  .section--dark, .section--accent { background: white; color: black; }
}

/* ───── ACCESSIBILITY ───────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--purple-600);
  outline-offset: 4px;
  border-radius: 4px;
}
