/* ==========================================================================
   Kadami Multimarcas — style.css
   Paleta da marca: #000000 / #FF0000 / #FFFFFF / #333333
   ========================================================================== */

/* ---------- Fontes da identidade visual ---------- */
/* Títulos: a fonte de marca "Enixe" não possui glyphs de números nem de
   letras acentuadas (á, ç, ã…) — os títulos ficavam disformes em português.
   Usamos a "Saira" (geométrica/esportiva, corte próximo ao logotipo Kadami)
   com suporte completo ao português. Variable font: um arquivo por subset. */
@font-face {
  font-family: "Saira";
  src: url("../fonts/saira-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Saira";
  src: url("../fonts/saira-latin-ext.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2C60-2C7F, U+A720-A7FF;
}
/* As fontes Altone Trial não incluem glyphs de números.
   O unicode-range abaixo exclui os dígitos 0-9 (U+30–U+39) para que
   o navegador use a fonte de sistema apenas nos números, sem "tofu". */
@font-face {
  font-family: "Altone";
  src: url("../fonts/Altone-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0-2F, U+3A-10FFFF;
}
@font-face {
  font-family: "Altone";
  src: url("../fonts/Altone-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0-2F, U+3A-10FFFF;
}

/* ---------- Tokens ---------- */
:root {
  --black: #0a0a0a;
  --pure-black: #000;
  --ink: #141414;
  --red: #ff0000;
  --red-600: #e00000;
  --red-700: #c40000;
  --white: #ffffff;
  --grey-900: #1a1a1a;
  --grey-800: #262626;
  --grey-700: #333333;
  --grey-500: #6b6b6b;
  --grey-300: #c9c9c9;
  --grey-150: #e7e7e8;
  --grey-100: #f2f2f3;
  --grey-50: #f8f8f9;

  --text: #1b1b1b;
  --text-soft: #4a4a4a;
  --text-invert: #f4f4f5;
  --text-invert-soft: #b9b9bd;

  --font-title: "Saira", "Arial Narrow", "Oswald", system-ui, sans-serif;
  --font-sub: "Altone", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Altone", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .08);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, .12);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, .22);
  --ring: 0 0 0 3px rgba(255, 0, 0, .35);

  --header-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 .5em;
  /* letter-spacing fica em "normal": qualquer tracking quebra o
     posicionamento da cedilha/til (Ç, Ã, Õ) da fonte dos títulos no Chrome. */
  letter-spacing: normal;
  text-transform: uppercase;
}
h2 { font-size: clamp(1.8rem, 4.4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.3vw, 1.4rem); }

p { margin: 0 0 1rem; }
::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

/* ---------- Skip link (acessibilidade) ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding: clamp(56px, 9vw, 110px) 0;
  position: relative;
}
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.section--grey { background: var(--grey-50); }
.section--dark {
  background: var(--black);
  color: var(--text-invert);
}
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p { color: var(--text-invert-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}
.section--dark .eyebrow { color: #ff5252; }
.section--dark .eyebrow::before { background: #ff5252; }

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-soft);
  max-width: 62ch;
}
.section--dark .lead { color: var(--text-invert-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .eyebrow { justify-content: center; }

.text-red { color: var(--red); }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  min-height: 54px;
  border: 2px solid var(--btn-bg);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, border-color .25s, color .25s;
  text-align: center;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 0, 0, .28);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  border-color: currentColor;
}
.btn--ghost:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  border-color: var(--ink);
}
.btn--dark:hover { box-shadow: 0 16px 34px rgba(0, 0, 0, .28); }
.btn--wa {
  --btn-bg: #25d366;
  --btn-fg: #fff;
  border-color: #25d366;
}
.btn--wa:hover { box-shadow: 0 16px 34px rgba(37, 211, 102, .35); }
.btn--lg { padding: 19px 40px; min-height: 60px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, .78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background-color .3s, height .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  background: rgba(8, 8, 8, .96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 34px; width: auto; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-invert-soft);
  border-radius: 8px;
  transition: color .2s, background-color .2s;
}
.main-nav .nav-wa { display: none; }
.main-nav a:hover,
.main-nav a.is-active { color: #fff; background: rgba(255, 255, 255, .07); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn {
  min-height: 44px;
  padding: 11px 20px;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hambúrguer */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   HERO — fundo 100% em código (gradiente animado + canvas + blobs)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 54px) 0 90px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

/* Camada 1 — gradiente animado (fallback estático quando sem JS/reduced motion) */
.hero__gradient {
  position: absolute;
  inset: -20%;
  z-index: -4;
  background:
    linear-gradient(125deg, #000 0%, #1a0303 22%, #2a0000 40%, #0d0d0d 60%, #240000 80%, #000 100%);
  background-size: 300% 300%;
  animation: heroGradient 24s ease-in-out infinite;
}
@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Camada 2 — blobs orgânicos com blur/glow */
.hero__blobs {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  width: 46vw;
  max-width: 560px;
  aspect-ratio: 1;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(46px);
  opacity: .5;
  will-change: transform;
}
.blob--1 {
  top: -8%; left: -6%;
  background: radial-gradient(circle at 30% 30%, #ff1a1a, #7a0000 60%, transparent 72%);
  animation: blobFloat1 26s ease-in-out infinite;
}
.blob--2 {
  bottom: -14%; right: -8%;
  background: radial-gradient(circle at 60% 40%, #ff3b3b, #3a0000 62%, transparent 74%);
  animation: blobFloat2 32s ease-in-out infinite;
}
.blob--3 {
  top: 34%; right: 22%;
  width: 30vw; max-width: 360px;
  background: radial-gradient(circle at 50% 50%, #4d4d4d, #111 60%, transparent 72%);
  opacity: .4;
  animation: blobFloat3 22s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, 12%) scale(1.14); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1.05); }
  50% { transform: translate(-10%, -8%) scale(.9); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12%, 6%) scale(1.2); }
}

/* Camada 3 — canvas de partículas */
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: .55;
}

/* Camada 4 — overlay para contraste */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 20% 20%, transparent 0%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .78) 100%),
    linear-gradient(to top, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .55) 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, .25);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 0, 0, .25); }
  50% { box-shadow: 0 0 0 8px rgba(255, 0, 0, 0); }
}

.hero h1 {
  font-size: clamp(2.35rem, 5.6vw, 4.1rem);
  line-height: 1.1;
  letter-spacing: normal;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .5);
}
.hero__sub {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: #fff;
  margin-bottom: 14px;
}
.hero__support {
  color: var(--text-invert-soft);
  max-width: 54ch;
  margin-bottom: 26px;
}

/* Slides de palavras do Hero */
.hero__rotator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .95rem;
  margin-bottom: 30px;
}
.hero__rotator .label { color: var(--text-invert-soft); font-size: .74rem; letter-spacing: 2px; }
.rotator__viewport {
  position: relative;
  height: 1.7em;
  min-width: 190px;
  overflow: hidden;
}
.rotator__viewport span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: var(--red);
  opacity: 0;
  transform: translateY(100%);
  transition: transform .5s var(--ease), opacity .5s;
}
.rotator__viewport span.is-in { opacity: 1; transform: translateY(0); }
.rotator__viewport span.is-out { opacity: 0; transform: translateY(-100%); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__facts li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #eaeaea;
}
.hero__facts svg { width: 18px; height: 18px; color: var(--red); flex: none; }

/* Cartões flutuantes glassmorphism */
.hero__cards {
  position: relative;
  min-height: 480px;
}
.glass-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  width: 240px;
  will-change: transform;
}
.glass-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.9rem;
  color: #fff;
  line-height: 1;
}
.glass-card span {
  font-family: var(--font-sub);
  font-size: .78rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-invert-soft);
}
.glass-card--a { top: 0; right: 0; animation: floaty 6s ease-in-out infinite; }
.glass-card--c { bottom: 4%; left: -6%; animation: floaty 5.4s ease-in-out infinite 1.2s; }
.glass-card .ic {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  margin-bottom: 10px;
}
.glass-card .ic svg { width: 18px; height: 18px; }

.hero__car {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 130%;
  max-width: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: drop-shadow(0 40px 36px rgba(0, 0, 0, .6));
  animation: floatyCar 9s ease-in-out infinite;
}
@keyframes floatyCar {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 12px)); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-invert-soft);
}
.hero__scroll .mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 14px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 8px;
  background: var(--red);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ---------- Floating elements globais ---------- */
.floaty-ico {
  position: absolute;
  color: rgba(255, 0, 0, .16);
  z-index: 0;
  pointer-events: none;
  animation: floaty 7s ease-in-out infinite;
}
.section--dark .floaty-ico { color: rgba(255, 255, 255, .06); }
.floaty-ico svg { width: 100%; height: 100%; }

/* ==========================================================================
   QUEM SOMOS
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(32px, 5vw, 66px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.about__tag {
  position: absolute;
  left: -22px;
  top: -28px;
  background: var(--red);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .35), 0 0 0 6px rgba(255, 255, 255, .06);
  max-width: 240px;
  z-index: 2;
}
.about__tag strong {
  display: block;
  font-family: var(--font-title);
  font-size: 2.4rem;
  line-height: 1;
}
.about__tag span {
  font-family: var(--font-sub);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.about__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about__list li::before {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  margin-top: .55em;
  background: var(--red);
  transform: rotate(45deg);
}
.founder {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--grey-150);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}
.founder img {
  width: 78px; height: 78px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex: none;
}
.founder p { margin: 0; font-size: .95rem; color: var(--text-soft); }
.founder strong { color: var(--text); font-family: var(--font-sub); }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.feature-card {
  padding: 26px 22px;
  border: 1px solid var(--grey-150);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--black);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feature-card .ic svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: .95rem; color: var(--text-soft); }

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--grey-800);
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  transition: transform .3s var(--ease), background-color .3s, border-color .3s;
}
.service::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service:hover { transform: translateY(-6px); background: #1f1f1f; border-color: rgba(255, 255, 255, .16); }
.service:hover::after { transform: scaleX(1); }
.service__num {
  font-family: var(--font-title);
  font-size: .9rem;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.service .ic {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(255, 0, 0, .14);
  color: #ff5b5b;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service .ic svg { width: 26px; height: 26px; }
.service h3 { color: #fff; margin-bottom: 10px; font-size: 1.16rem; }
.service p { color: var(--text-invert-soft); font-size: .95rem; flex: 1; }
.service__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.service__cta svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.service:hover .service__cta svg { transform: translateX(4px); }
.service__cta:hover { color: #ff5b5b; }

/* ==========================================================================
   SEM SEGREDO
   ========================================================================== */
.nosecret__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.nosecret__points { display: grid; gap: 14px; margin: 24px 0 0; }
.nosecret__point {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--grey-150);
}
.nosecret__point svg { width: 24px; height: 24px; color: var(--red); flex: none; margin-top: 2px; }
.nosecret__point strong { font-family: var(--font-sub); display: block; margin-bottom: 2px; }
.nosecret__point p { margin: 0; font-size: .93rem; color: var(--text-soft); }

.transfer-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #141414, #000);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.transfer-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 0, 0, .5), transparent 70%);
  filter: blur(30px);
}
.transfer-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--red);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.transfer-card h3 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.2rem); position: relative; }
.transfer-card p { color: var(--text-invert-soft); position: relative; }
.transfer-card .highlight {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: normal;
  color: #fff;
  margin: 18px 0 22px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
  position: relative;
}

/* ==========================================================================
   COMO ESCOLHER (educativo)
   ========================================================================== */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.choose-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--grey-150);
  border-top: 3px solid var(--red);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.choose-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.choose-card h3 {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.choose-card h3 i {
  font-family: var(--font-title);
  font-style: normal;
  color: var(--red);
  font-size: .95rem;
}
.choose-card p { margin: 0; font-size: .95rem; color: var(--text-soft); }
.choose-card p + p { margin-top: 10px; font-weight: 700; color: var(--text); }

/* ==========================================================================
   COMO FUNCIONA (passo a passo)
   ========================================================================== */
.quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.quotes span {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  font-family: var(--font-sub);
  font-size: .9rem;
  color: #e8e8e8;
}
.quotes span::before { content: "\201C"; color: var(--red); }
.quotes span::after { content: "\201D"; color: var(--red); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: var(--radius);
  background: var(--grey-800);
  border: 1px solid rgba(255, 255, 255, .08);
}
.step__n {
  font-family: var(--font-title);
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, .16);
  margin-bottom: 10px;
}
.step h3 { color: #fff; font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--text-invert-soft); font-size: .92rem; margin: 0; }
.step ul { margin: 8px 0 0; padding-left: 18px; color: var(--text-invert-soft); font-size: .9rem; }
.step--accent { background: linear-gradient(150deg, #2a0000, #120000); border-color: rgba(255, 0, 0, .3); }
.step--accent .step__n { color: rgba(255, 90, 90, .5); }

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--grey-150);
  box-shadow: var(--shadow-sm);
  margin-bottom: 34px;
}
.reviews-summary .score {
  font-family: var(--font-title);
  font-size: 3rem;
  line-height: 1;
  color: var(--text);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
}
.google-badge svg { width: 20px; height: 20px; flex: none; }
.google-badge .gword { letter-spacing: -.5px; }
.google-badge .gword b { font-family: var(--font-sub); font-weight: 700; }
.google-badge .gword-suffix { color: var(--grey-500); font-weight: 700; }
.google-badge--lg { font-size: 1.2rem; }
.google-badge--lg svg { width: 26px; height: 26px; }
.section-head .google-badge { margin-top: 16px; }
.review__g .google-badge { font-size: .74rem; color: var(--grey-500); text-transform: none; letter-spacing: 0; }
.review__g .google-badge svg { width: 14px; height: 14px; }
.stars { display: inline-flex; gap: 3px; color: #ffb400; }
.stars svg { width: 20px; height: 20px; }
.reviews-summary .gwrap { display: flex; flex-direction: column; gap: 4px; }
.reviews-summary small { color: var(--grey-500); font-size: .85rem; }
.reviews-summary .btn { margin-left: auto; }

.carousel { position: relative; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.review {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--grey-150);
}
.review__head { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: #fff;
  background: var(--red);
  flex: none;
}
.review__name { display: block; font-family: var(--font-sub); font-weight: 700; font-size: .95rem; }
.review__meta { display: block; font-size: .78rem; color: var(--grey-500); }
.review blockquote { margin: 0; }
.review p { margin: 0; font-size: .95rem; color: var(--text-soft); }
.review .stars svg { width: 16px; height: 16px; }
.review__g {
  margin-top: auto;
  font-size: .74rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  gap: 6px;
}
.carousel__nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.carousel__nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--grey-300);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s, color .2s, border-color .2s;
}
.carousel__nav button:hover { background: var(--black); color: #fff; border-color: var(--black); }
.carousel__nav svg { width: 20px; height: 20px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--grey-150);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__item + .faq__item { margin-top: 0; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.faq__q .plus {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
}
.faq__q .plus::before,
.faq__q .plus::after {
  content: "";
  position: absolute;
  background: var(--red);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.faq__q .plus::before { inset: 12px 4px auto 4px; height: 2px; }
.faq__q .plus::after { inset: 4px 12px auto 12px; width: 2px; height: 18px; }
.faq__item.is-open .faq__q .plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.faq__a-inner { padding: 0 22px 22px; color: var(--text-soft); font-size: .96rem; }
.faq__cta { text-align: center; margin-top: 34px; }

/* ==========================================================================
   LOCALIZAÇÃO / CONTATO
   ========================================================================== */
.store-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.store-gallery img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .1);
  filter: grayscale(.15);
  transition: filter .3s var(--ease), transform .3s var(--ease);
}
.store-gallery img:hover { filter: none; transform: translateY(-4px); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.contact__info { display: grid; gap: 14px; }
.contact__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--grey-800);
  border: 1px solid rgba(255, 255, 255, .08);
}
.contact__row .ic {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255, 0, 0, .16);
  color: #ff5b5b;
  display: grid;
  place-items: center;
  flex: none;
}
.contact__row .ic svg { width: 20px; height: 20px; }
.contact__row .t { font-family: var(--font-sub); font-weight: 700; color: #fff; display: block; margin-bottom: 2px; font-size: .95rem; }
.contact__row a, .contact__row p { color: var(--text-invert-soft); margin: 0; font-size: .93rem; }
.contact__row a:hover { color: #fff; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  min-height: 420px;
  height: 100%;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #000;
  color: var(--text-invert-soft);
  padding: 60px 0 26px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-footer img.flogo { height: 38px; margin-bottom: 18px; }
.site-footer p { font-size: .92rem; }
.site-footer h4 {
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .82rem;
  color: #fff;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer ul a { font-size: .92rem; transition: color .2s; }
.site-footer ul a:hover { color: #fff; }
.site-footer .socials { display: flex; gap: 12px; margin-top: 16px; }
.site-footer .socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  place-items: center;
  transition: background-color .2s, border-color .2s, transform .2s;
}
.site-footer .socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.site-footer .socials svg { width: 18px; height: 18px; }
.site-footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: .82rem;
}
.site-footer__bottom a { color: #fff; }

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  animation: waPulse 2.6s ease-in-out infinite;
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waRing 2.6s ease-out infinite;
}
.wa-float__label {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: .8rem;
  padding: 9px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.wa-float:hover .wa-float__label { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45); }
  50% { box-shadow: 0 12px 44px rgba(37, 211, 102, .75); }
}
@keyframes waRing {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ==========================================================================
   PÁGINAS INTERNAS (política / links)
   ========================================================================== */
.page-hero {
  background: linear-gradient(150deg, #000, #1a0000);
  color: #fff;
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: var(--text-invert-soft); max-width: 60ch; margin-inline: auto; }
.breadcrumb {
  font-family: var(--font-sub);
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-invert-soft);
  margin-bottom: 14px;
}
.breadcrumb a:hover { color: #fff; }

.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--text-soft); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--red-700); text-decoration: underline; }
.prose strong { color: var(--text); }

/* Page Links (bio) */
.links-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background:
    radial-gradient(circle at 50% 0%, #2a0000, transparent 60%),
    linear-gradient(180deg, #0a0a0a, #000);
  color: #fff;
  text-align: center;
}
.links-card { width: 100%; max-width: 440px; }
.links-card .avatar {
  width: 118px; height: 118px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .15);
  background: #111;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.links-card .avatar img { width: 78%; height: auto; }
.links-card h1 { font-size: 1.7rem; margin-bottom: 4px; }
.links-card .tagline { color: var(--text-invert-soft); font-size: .92rem; margin-bottom: 8px; }
.links-card .loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-invert-soft);
  margin-bottom: 28px;
}
.links-card .loc svg { width: 14px; height: 14px; color: var(--red); }
.link-list { display: grid; gap: 14px; }
.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: transform .22s var(--ease), background-color .22s, border-color .22s;
}
.link-btn:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); }
.link-btn .ic { width: 26px; height: 26px; flex: none; display: grid; place-items: center; color: var(--red); }
.link-btn .ic svg { width: 22px; height: 22px; }
.link-btn.is-primary { background: var(--red); border-color: var(--red); }
.link-btn.is-primary .ic { color: #fff; }
.link-btn.is-primary:hover { background: var(--red-600); }
.link-btn .arrow { margin-left: auto; opacity: .5; }
.link-btn .arrow svg { width: 16px; height: 16px; }
.links-foot { margin-top: 34px; font-size: .78rem; color: var(--text-invert-soft); }
.links-foot a { color: #fff; }

/* ==========================================================================
   ANIMAÇÕES DE SCROLL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal="left"] { transform: translateX(-32px); }
.reveal[data-reveal="right"] { transform: translateX(32px); }
.reveal.is-visible[data-reveal] { transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 20px; }
  .hero__cards { display: none; }
  .about__grid,
  .nosecret__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
  /* backdrop-filter no header cria containing-block e prende o menu fixo;
     no mobile o header fica sólido e o menu ocupa a tela toda. */
  .site-header,
  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(8, 8, 8, .97);
  }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    background: #0a0a0a;
    padding: calc(var(--header-h) + 30px) 26px 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-left: 1px solid rgba(255, 255, 255, .1);
    overflow-y: auto;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 14px 12px; font-size: .95rem; border-bottom: 1px solid rgba(255, 255, 255, .06); }
  .main-nav .nav-wa {
    margin-top: 18px;
    display: flex;
    background: #25d366;
    color: #fff;
    justify-content: center;
    border-radius: 999px;
    border-bottom: 0;
  }
  .main-nav .nav-wa:hover { background: #1fbd5b; color: #fff; }
  .nav-toggle { display: block; }
  .header-cta .btn:not(.nav-toggle) { display: none; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 999;
  }
  body.nav-open .nav-overlay { opacity: 1; pointer-events: auto; }
}

@media (max-width: 700px) {
  body { font-size: 1rem; }
  .carousel__track { grid-auto-columns: 86%; }
  .reviews-summary { justify-content: center; text-align: center; }
  .reviews-summary .gwrap { align-items: center; }
  .store-gallery { grid-template-columns: 1fr 1fr; }
  .store-gallery img:first-child { grid-column: 1 / -1; }
  .hero { padding-top: calc(var(--header-h) + 34px); min-height: auto; }
  .hero__actions .btn { width: 100%; }
  .about__tag { left: 10px; top: -20px; }
  .reviews-summary .btn { margin-left: 0; width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; }
  .wa-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float__label { display: none; }
}

/* ==========================================================================
   MOVIMENTO REDUZIDO / SEM JS
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__gradient { animation: none; background-position: 50% 50%; }
  .hero__canvas { display: none; }
  .blob { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

.no-js .reveal { opacity: 1; transform: none; }
.no-js .hero__canvas { display: none; }
