/* ============================================================
   GROLLS — Refrigeração Profissional
   Landing page · tema dark industrial frio + premium técnico
   Estrutura: tokens > fontes > base > componentes > seções > responsivo
   ============================================================ */

/* ---------- Fontes locais (subsets latin / latin-ext) ---------- */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/jost-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/jost-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+20A0-20AB, U+2113, U+A720-A7FF;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+20A0-20AB, U+2113, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  --accent: #19D3FF;        /* azul neon frio */
  --accent-deep: #00A9C7;   /* azul gelo */
  --accent-dark: #0B2D39;   /* azul escuro */
  --on-accent: #03161c;     /* texto sobre botão neon */

  --ink: #FFFFFF;           /* texto principal (claro) */
  --ink-soft: #BFC7CE;      /* texto secundário */
  --ink-faint: #8b97a1;     /* texto sutil */

  --paper: #0A0A0A;         /* fundo principal (preto absoluto) */
  --paper-mute: #0d1217;    /* fundo alternado (grafite levíssimo) */
  --dark: #0A0F13;
  --dark-deep: #070a0c;
  --graphite: #151A1F;      /* superfície de cards */
  --graphite-2: #11161b;
  --line: rgba(25,211,255,.16);   /* borda neon sutil */
  --line-soft: rgba(191,199,206,.10);
  --ice: #E6F7FF;           /* detalhe gelo bem sutil */

  --font-body: 'Jost', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;

  --nav-h: 88px;
  --maxw: 1240px;
  --section-pad: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 64px);

  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--accent); color: var(--on-accent); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ============================================================
   COMPONENTES
   ============================================================ */

/* ---------- Logo (imagem GROLL'S) ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand__img { display: block; width: auto; filter: drop-shadow(0 0 12px rgba(25,211,255,.28)); }
/* fallback do wordmark em texto (caso a imagem não seja usada) */
.brand__flake { color: var(--accent); flex: none; filter: drop-shadow(0 0 8px rgba(25,211,255,.45)); }
.brand__name {
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: .26em; text-transform: uppercase; line-height: 1;
  font-size: 1.05rem; color: var(--ink);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font: 600 12px/1 var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s ease, filter .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.btn--sm { padding: 13px 24px; }
.btn--lg { font-size: 13px; padding: 18px 38px; }
.btn--accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%); color: var(--on-accent); box-shadow: 0 10px 30px -12px rgba(25,211,255,.5); }
.btn--accent:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(25,211,255,.6); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(25,211,255,.4); }
.btn--ghost:hover { background: rgba(25,211,255,.08); border-color: rgba(25,211,255,.85); }
.btn--glow { box-shadow: 0 18px 50px -16px rgba(25,211,255,.6); }

/* ---------- Eyebrow (rótulo com filete) ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--accent-deep);
  font: 500 11px/1 var(--font-body);
  letter-spacing: .34em;
  text-transform: uppercase;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--center { justify-content: center; }
.eyebrow__rule { display: block; width: 30px; height: 1px; background: currentColor; }

/* ---------- Títulos ---------- */
.headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.headline--light { color: var(--ink); }
.headline--xl { font-size: clamp(2.2rem, 5.4vw, 4.4rem); line-height: 1; letter-spacing: -.02em; }

.prose {
  margin-top: 24px;
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 520px;
}

.link-underline {
  font: 500 12px/1 var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid rgba(25,211,255,.35);
  padding-bottom: 6px;
  transition: border-color .3s ease, color .3s ease;
}
.link-underline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Seção genérica ---------- */
.section { padding: var(--section-pad); scroll-margin-top: var(--nav-h); }
.section--light { background: var(--paper); }
.section--mute { background: var(--paper-mute); }
.section--dark { background: var(--dark); }

.section__head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section__head--center { flex-direction: column; align-items: center; text-align: center; }

/* utilitário de granulado */
.noise, .hero__noise, .media-card__noise, .cta__noise {
  position: absolute; inset: 0;
  background-image: var(--noise);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .95s cubic-bezier(.16,.84,.44,1), transform .95s cubic-bezier(.16,.84,.44,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 64px);
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease, box-shadow .4s ease, padding .4s ease;
}
.nav.is-scrolled {
  background: rgba(10,14,18,.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 30px -10px rgba(0,0,0,.8);
  padding: 14px clamp(20px, 5vw, 64px);
}

.nav__logo { display: block; flex: none; }
.nav__logo .brand__img { height: 54px; }
.nav.is-scrolled .nav__logo .brand__img { height: 46px; transition: height .4s ease; }

.nav__links { display: flex; align-items: center; gap: 38px; color: var(--ink); }
.nav__links > a:not(.btn) {
  text-decoration: none;
  font: 500 12px/1 var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .8;
  transition: opacity .3s ease, color .3s ease;
}
.nav__links > a:not(.btn):hover { opacity: 1; color: var(--accent); }

/* botão Instagram (SVG neon) */
.nav__ig { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; flex: none; color: var(--ink); opacity: .85; transition: color .3s ease, opacity .3s ease; }
.nav__ig:hover { color: var(--accent); opacity: 1; }
.nav__ig svg { width: 100%; height: 100%; }

.nav__burger {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__burger span { display: block; width: 26px; height: 1.5px; background: var(--ink); transition: background .4s ease; }
.nav__burger span:last-child { width: 18px; align-self: flex-end; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 130;
  background: var(--dark-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 34px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--ink);
  font: 30px/1 var(--font-body); cursor: pointer;
}
.mobile-menu__logo { margin-bottom: 8px; }
.mobile-menu__logo .brand__img { height: 110px; }
.mobile-menu > a[data-menu-link]:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font: 400 22px/1 var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-menu .btn { margin-top: 8px; padding: 15px 34px; font-size: 13px; }
.mobile-menu__ig { display: inline-flex; width: 30px; height: 30px; margin-top: 4px; color: var(--accent); }
.mobile-menu__ig svg { width: 100%; height: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute; inset: -6% -2%;
  background:
    radial-gradient(120% 90% at 64% 24%, rgba(25,211,255,.20) 0%, rgba(0,169,199,.10) 32%, rgba(10,10,12,.96) 76%),
    radial-gradient(80% 60% at 20% 90%, rgba(11,45,57,.55) 0%, rgba(10,10,12,0) 60%),
    linear-gradient(160deg, #0c161c 0%, #0a1318 46%, #060809 100%);
  background-size: cover;
  transform: scale(1.08);
  will-change: transform;
}
.hero__noise { opacity: .06; }
.hero__vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,8,9,.55) 0%, rgba(6,8,9,.1) 32%, rgba(6,8,9,.25) 70%, rgba(6,8,9,.85) 100%);
}
.hero__inner {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 120px clamp(20px, 5vw, 40px) 90px;
  max-width: 1000px;
  animation: floatIn 1.1s cubic-bezier(.16,.84,.44,1) both;
}
.hero__logo {
  margin-bottom: 30px;
}
.hero__logo .brand__img {
  height: clamp(140px, 22vw, 230px);
  filter: drop-shadow(0 10px 36px rgba(25,211,255,.35));
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.4vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 16ch;
}
.hero__title .accent { color: var(--accent); text-shadow: 0 0 30px rgba(25,211,255,.4); }
.hero__lead {
  margin-top: 30px;
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 620px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 44px; }
.hero__cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(191,199,206,.6);
  font: 500 10px/1 var(--font-body); letter-spacing: .3em; text-transform: uppercase;
}
.hero__cue svg { animation: cue 2s ease-in-out infinite; }

@keyframes floatIn { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes cue { 0%, 100% { transform: translateY(0); opacity: .55; } 50% { transform: translateY(8px); opacity: 1; } }

/* ============================================================
   SOBRE
   ============================================================ */
.about__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about__text { flex: 1 1 380px; min-width: 300px; }
.about__media { flex: 1 1 380px; min-width: 300px; }

.stats { list-style: none; display: flex; flex-wrap: wrap; gap: 48px; margin-top: 46px; }
.stats__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; color: var(--accent); }
.stats__label { display: block; margin-top: 8px; font: 500 11px/1 var(--font-body); letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); }

.media-card {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 8px;
  background: linear-gradient(150deg, #0e3a48 0%, #0a2730 50%, #07151b 100%);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.7), inset 0 0 60px -20px rgba(25,211,255,.25);
}
.media-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.media-card__noise { opacity: .1; }
.media-card__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: var(--accent);
  font: 500 11px/1.5 var(--font-body); letter-spacing: .3em; text-transform: uppercase; text-align: center;
}
.media-card__placeholder svg { filter: drop-shadow(0 0 14px rgba(25,211,255,.5)); }
.media-card__placeholder span { color: var(--ink-soft); }

/* ============================================================
   CATEGORIAS / COLEÇÕES
   ============================================================ */
.collections__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2vw, 30px);
}
.collection {
  position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 8px;
  background: #ffffff; text-decoration: none;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.7);
  transition: box-shadow .5s ease, transform .5s ease, border-color .5s ease;
}
.collection__bg { position: absolute; inset: 0; transition: transform .9s cubic-bezier(.16,.84,.44,1); }
.collection__noise { position: absolute; inset: 0; background-image: var(--noise); mix-blend-mode: overlay; opacity: .08; pointer-events: none; }
.collection__shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,10,13,0) 30%, rgba(6,10,13,.65) 100%);
  transition: background .5s ease;
}
.collection__icon {
  position: absolute; top: 18px; right: 18px; color: var(--accent);
  opacity: .8; pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(25,211,255,.45));
}
.collection__num {
  position: absolute; top: 20px; left: 20px;
  font: 500 10px/1 var(--font-body); letter-spacing: .28em; text-transform: uppercase;
  color: rgba(230,247,255,.7); pointer-events: none;
}
.collection__caption { position: absolute; inset: auto 0 0 0; padding: 26px 24px; pointer-events: none; }
.collection__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1.1;
  letter-spacing: .01em; text-transform: uppercase; color: #fff;
}
.collection__more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  font: 500 11px/1 var(--font-body); letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .45s ease, opacity .45s ease;
}
.collection:hover { box-shadow: 0 38px 70px -30px rgba(25,211,255,.35); transform: translateY(-4px); border-color: rgba(25,211,255,.4); }
.collection:hover .collection__bg { transform: scale(1.07); }
.collection:hover .collection__shade { background: linear-gradient(180deg, rgba(6,10,13,0) 30%, rgba(6,10,13,.85) 100%); }
.collection:hover .collection__more { max-height: 30px; opacity: 1; }

/* ============================================================
   DESTAQUES
   ============================================================ */
.features__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.feature {
  padding: 38px 30px; border: 1px solid var(--line); border-radius: 8px;
  background: linear-gradient(180deg, var(--graphite) 0%, var(--graphite-2) 100%);
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}
.feature:hover { border-color: rgba(25,211,255,.45); box-shadow: 0 28px 50px -30px rgba(25,211,255,.3); transform: translateY(-4px); }
.feature__icon { color: var(--accent); margin-bottom: 24px; filter: drop-shadow(0 0 10px rgba(25,211,255,.4)); }
.feature__title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; line-height: 1.2;
  letter-spacing: .01em; text-transform: uppercase; color: var(--ink);
}
.feature__text { margin-top: 14px; font-weight: 300; font-size: .98rem; line-height: 1.7; color: var(--ink-faint); }

/* ============================================================
   LIFESTYLE / SHOWROOM (mosaico)
   ============================================================ */
.lifestyle__note {
  font-weight: 300; font-size: 1rem; line-height: 1.7;
  color: var(--ink-soft); max-width: 340px;
}
.lifestyle__mosaic {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px;
}
.tile {
  position: relative; overflow: hidden; border-radius: 8px;
  border: 1px solid var(--line-soft);
  grid-column: span var(--cspan, 1); grid-row: span var(--rspan, 1);
}
.tile__bg { position: absolute; inset: 0; transition: transform 1s cubic-bezier(.16,.84,.44,1); }
.tile__noise { position: absolute; inset: 0; background-image: var(--noise); mix-blend-mode: overlay; opacity: .07; pointer-events: none; }
.tile__icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(25,211,255,.4); pointer-events: none;
}
.tile:hover .tile__bg { transform: scale(1.08); }
.tile--logo {
  background: radial-gradient(120% 120% at 50% 0%, rgba(25,211,255,.12) 0%, rgba(10,14,18,0) 60%), var(--graphite-2);
  border-color: var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 18px;
}
.tile__logo {
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 0 20px rgba(25,211,255,.4));
  transition: transform 1s cubic-bezier(.16,.84,.44,1);
}
.tile__logo img { max-width: 78%; max-height: 88%; object-fit: contain; }
.tile__tagline {
  color: var(--ice);
  font: 600 12px/1.4 var(--font-body); letter-spacing: .18em; text-align: center; text-transform: uppercase;
}
.tile--logo:hover .tile__logo { transform: scale(1.05); }

/* tiles de marcas (cervejas) — fundo branco para os logos coloridos */
.tile--brand {
  background: #ffffff;
  border-color: var(--line);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(18px, 3vw, 34px);
}
.tile__brand {
  max-width: 78%; max-height: 62%; width: auto; object-fit: contain;
  transition: transform .8s cubic-bezier(.16,.84,.44,1);
}
/* logos mais quadradas (Eisenbahn, Brahma): ~20% maiores p/ igualar as largas */
.tile__brand--big { max-width: 94%; max-height: 75%; }
.tile--brand:hover .tile__brand { transform: scale(1.06); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.testimonial {
  background: linear-gradient(180deg, var(--graphite) 0%, var(--graphite-2) 100%);
  border: 1px solid var(--line); border-radius: 8px; padding: 38px 34px;
  display: flex; flex-direction: column; gap: 20px;
  transition: box-shadow .4s ease, transform .4s ease, border-color .4s ease;
}
.testimonial:hover { box-shadow: 0 30px 56px -34px rgba(25,211,255,.3); transform: translateY(-4px); border-color: rgba(25,211,255,.4); }
.testimonial__stars { color: var(--accent); font-size: 15px; letter-spacing: 4px; }
.testimonial__text { font-weight: 300; font-size: 1.12rem; line-height: 1.65; color: var(--ink); }
.testimonial__person { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--accent), var(--accent-dark)); flex: none; box-shadow: 0 0 16px -2px rgba(25,211,255,.5); }
.testimonial__name { font: 600 13px/1 var(--font-body); letter-spacing: .04em; color: var(--ink); }
.testimonial__city { margin-top: 6px; font: 400 11px/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta { position: relative; overflow: hidden; background: var(--dark-deep); text-align: center; padding: clamp(90px, 13vw, 170px) clamp(20px, 5vw, 64px); }
.cta__glow { position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 0%, rgba(25,211,255,.18) 0%, rgba(10,10,10,0) 60%); }
.cta__noise { opacity: .05; }
.cta__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta__lead {
  margin: 26px auto 0; max-width: 540px;
  font-weight: 300; font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.7;
  color: var(--ink-soft);
}
.cta .btn { margin-top: 42px; padding: 20px 48px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-deep); border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 84px) clamp(20px, 5vw, 64px) 40px; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 48px; }
.footer__brand { flex: 1 1 280px; min-width: 240px; }
.footer__logo { margin-bottom: 20px; }
.footer__logo .brand__img { height: 86px; }
.footer__brand p { font-weight: 300; font-size: .98rem; line-height: 1.7; color: var(--ink-faint); max-width: 340px; }
.footer__cols { display: flex; gap: clamp(48px, 8vw, 110px); flex-wrap: wrap; }
.footer__col h3 { font: 500 11px/1 var(--font-body); letter-spacing: .26em; text-transform: uppercase; color: var(--accent); margin-bottom: 22px; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col a { font: 300 14px/1 var(--font-body); color: var(--ink-soft); text-decoration: none; transition: color .3s ease; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  max-width: var(--maxw); margin: 56px auto 0; padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
}
.footer__bottom span { font: 400 11px/1.4 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 700px) {
  .lifestyle__mosaic { grid-template-columns: repeat(2, 1fr); }
  .tile { grid-column: span min(var(--cspan, 1), 2); }
  .section__head { align-items: flex-start; }
  .stats { gap: 32px; }
}

@media (max-width: 480px) {
  .hero__inner { padding-top: 110px; }
  .btn--lg { padding: 16px 30px; }
  .feature { padding: 30px 24px; }
  .testimonial { padding: 30px 26px; }
}

/* ---------- Acessibilidade: reduzir movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
