/* ===================================================================
   Oráculo Bíblico — site institucional
   style.css · mobile-first, paleta dark profunda, ciano + dourado
   --------------------------------------------------------------------
   Sumário:
     01 · reset + base
     02 · tokens (cores, tipografia, espaçamento)
     03 · utilidades
     04 · header / navegação
     05 · hero
     06 · faixa de credibilidade
     07 · recursos (bento)
     08 · seção teológica
     09 · galeria do app
     10 · para quem
     11 · artigos
     12 · CTA final
     13 · contato (form)
     14 · footer
     15 · animações + reveal
     16 · breakpoints (desktop)
=================================================================== */


/* ------- 01 · reset + base ------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  /* trava overflow horizontal em qualquer caso */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }


/* ------- 02 · tokens ------- */
:root {
  /* fundo escuro em camadas */
  --bg:        #04070d;
  --bg-2:      #070b14;
  --surface:   #0d131e;
  --surface-2: #131b29;
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);

  /* texto */
  --text:        #eef1f7;
  --text-muted:  #97a0b3;
  --text-faint:  #5f6878;

  /* acentos */
  --cyan:        #5ee3e8;  /* turquesa principal */
  --cyan-soft:   #2b8a8e;
  --gold:        #d9b76a;  /* dourado moderado */
  --gold-soft:   #8a7240;
  --danger:      #ff7a6b;

  /* gradientes auxiliares */
  --grad-cyan:  linear-gradient(135deg, #5ee3e8 0%, #3b9dd1 100%);
  --grad-gold:  linear-gradient(135deg, #f0d28d 0%, #b58a3a 100%);
  --grad-deep:  radial-gradient(60% 80% at 50% 0%, rgba(94, 227, 232, .10), transparent 60%),
                radial-gradient(50% 70% at 100% 30%, rgba(91, 75, 200, .12), transparent 60%);

  /* tipografia */
  --font-ui: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  /* escala */
  --container: 1240px;
  --gutter: 22px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;
  --radius-xl: 28px;
  --shadow-card: 0 2px 0 rgba(255,255,255,.04) inset,
                 0 12px 30px rgba(0,0,0,.4),
                 0 1px 0 rgba(255,255,255,.05) inset;
}


/* ------- 03 · utilidades ------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: 80px 0; position: relative; }
.section--tight { padding: 56px 0; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 7.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 14px 0 12px;
  color: var(--text);
}
.section-title em {
  color: var(--cyan);
  font-style: italic;
}
.section-lede {
  font-size: clamp(15px, 3.8vw, 18px);
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 0 28px;
  line-height: 1.6;
}

/* botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s, border-color .2s, box-shadow .2s;
  min-height: 48px;          /* alvo de toque */
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
}
.btn--primary {
  background: var(--grad-cyan);
  color: #04222a;
  box-shadow: 0 8px 28px rgba(94, 227, 232, .20),
              inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(94, 227, 232, .28); }
.btn--ghost {
  background: rgba(255,255,255,.02);
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); }
.btn--gold {
  background: transparent;
  color: var(--gold);
  border-color: rgba(217, 183, 106, 0.4);
}
.btn--gold:hover { background: rgba(217, 183, 106, 0.08); border-color: var(--gold); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* "card" base */
.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 22px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(94, 227, 232, .10);
  border: 1px solid rgba(94, 227, 232, .25);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}
.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  margin: 12px 0 6px;
  color: var(--text);
}
.card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}


/* ------- 04 · header / navegação ------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 56px var(--gutter) 14px;
  transition: padding .25s ease;
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 18px;
  background: rgba(10, 15, 24, .78);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  box-shadow:
    0 20px 70px rgba(0,0,0,.42),
    0 0 0 8px rgba(94,227,232,.025);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.site-header.is-scrolled { padding-top: 12px; padding-bottom: 8px; }
.site-header.is-scrolled .site-header__inner {
  background: rgba(7, 11, 20, .88);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand img {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #000;
}
.brand-text {
  font-size: 15px;
  line-height: 1;
}
.brand-text span {
  display: block;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-top: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: none;        /* mobile: escondido por padrão */
  gap: 4px;
}
.nav-links li { list-style: none !important; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-cta { display: none; }
.nav-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle__bars {
  position: relative;
  width: 18px; height: 12px;
}
.nav-toggle__bars span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s, top .25s, opacity .2s;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.is-open .nav-toggle__bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.is-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.is-open .nav-toggle__bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* Menu mobile (overlay) */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 13, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 40;
  padding: 90px var(--gutter) 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;            /* não toma espaço enquanto fechado */
  transition: opacity .25s, transform .25s, visibility 0s linear .25s;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .25s, transform .25s, visibility 0s linear 0s;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.2;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a::after {
  content: "↗";
  color: var(--cyan);
  font-family: var(--font-ui);
  font-size: 18px;
  opacity: 0.55;
}
.mobile-menu .btn { margin-top: 20px; align-self: flex-start; }


/* ------- 05 · hero ------- */
.hero {
  position: relative;
  padding: 130px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  width: 360px; height: 360px;
  top: -80px; right: -120px;
  background: radial-gradient(circle, rgba(94, 227, 232, .22), transparent 70%);
}
.hero::after {
  width: 460px; height: 460px;
  bottom: -160px; left: -160px;
  background: radial-gradient(circle, rgba(217, 183, 106, .12), transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 227, 232, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 227, 232, .06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(94, 227, 232, .08);
  border: 1px solid rgba(94, 227, 232, .22);
  border-radius: 999px;
  color: var(--cyan);
}
.hero-pill .dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(94, 227, 232, .5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(94, 227, 232, .5); }
  70%  { box-shadow: 0 0 0 8px rgba(94, 227, 232, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 227, 232, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 11vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 22px 0 18px;
  color: var(--text);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--cyan);
  background: linear-gradient(120deg, #5ee3e8, #d9b76a 60%, #5ee3e8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero p.hero-lede {
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 30px;
  text-wrap: pretty;
}

/* mockup central + cards orbitando */
.hero-stage {
  position: relative;
  margin: 50px auto 0;
  width: min(100%, 360px);
  aspect-ratio: 9 / 18;
}
.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: linear-gradient(180deg, #1a2230, #0a0f17);
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 30px 80px rgba(0,0,0,.6),
    0 0 60px rgba(94, 227, 232, .12);
  isolation: isolate;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  display: block;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(94, 227, 232, .25), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: float-glow 8s ease-in-out infinite;
}
@keyframes float-glow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.1); opacity: 1; }
}

/* cards orbitando — mobile = abaixo do mockup em row scroll; desktop = absolute */
.orbit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.orbit-card {
  background: rgba(13, 19, 30, .8);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .3s, border-color .3s;
}
.orbit-card:hover { transform: translateY(-2px); border-color: rgba(94, 227, 232, .35); }
.orbit-card .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--cyan);
}
.orbit-card.gold .dot { background: var(--gold); box-shadow: 0 0 10px var(--gold); }


/* ------- 06 · faixa de credibilidade ------- */
.credibility {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(94, 227, 232, .02), transparent),
    var(--bg-2);
  padding: 36px 0;
}
.credibility__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 16px;
}
.cred-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cred-item__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 6px;
}
.cred-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.cred-item__hint {
  font-size: 12px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}


/* ------- 07 · recursos (bento) ------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.feature {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, background .25s;
}
.feature::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(94, 227, 232, .10), transparent 70%);
  transform: translate(50%, -50%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.feature:hover {
  border-color: rgba(94, 227, 232, .25);
  transform: translateY(-2px);
}
.feature:hover::after { opacity: 1; }
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(94, 227, 232, .08);
  border: 1px solid rgba(94, 227, 232, .22);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature--gold .feature__icon {
  background: rgba(217, 183, 106, .08);
  border-color: rgba(217, 183, 106, .25);
  color: var(--gold);
}
.feature__num {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}
.feature__title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--text);
}
.feature__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
.feature__tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}


/* ------- 08 · seção teológica ------- */
.manifesto {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(94, 227, 232, .06), transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(217, 183, 106, .05), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 22ch;
  text-wrap: balance;
  margin: 14px 0 28px;
}
.manifesto__quote em { color: var(--gold); font-style: italic; }
.manifesto__quote .dim { color: var(--text-muted); }

.manifesto__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
.principle {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
  border-radius: var(--radius-m);
  padding: 18px 20px;
}
.principle__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan);
  margin-bottom: 6px;
}
.principle__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--text);
}
.principle__text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}


/* ------- 09 · galeria do app ------- */
.gallery {
  padding-bottom: 100px;
}
.gallery__rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 30px var(--gutter) 30px;
  margin: 0 calc(-1 * var(--gutter));
  scroll-padding-left: var(--gutter);
  scrollbar-width: none;
}
.gallery__rail::-webkit-scrollbar { display: none; }
.gallery-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  border-radius: var(--radius-l);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    var(--surface);
  border: 1px solid var(--line);
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s, transform .25s;
}
.gallery-card:hover { border-color: rgba(94, 227, 232, .25); transform: translateY(-3px); }
.gallery-card__phone {
  width: 100%;
  aspect-ratio: 9 / 18;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-2);
  position: relative;
}
.gallery-card__phone img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.gallery-card__caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gallery-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.1;
  color: var(--text);
}
.gallery-card__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}
.gallery__hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.gallery__hint::before {
  content: "↔";
  font-size: 14px;
  color: var(--cyan);
}


/* ------- 10 · para quem ------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.audience {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 130px;
  transition: border-color .2s, background .2s;
}
.audience:hover { border-color: var(--line-2); background: rgba(255,255,255,.04); }
.audience__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience__title {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}
.audience__hint {
  font-size: 12px;
  color: var(--text-faint);
  margin: 0;
  line-height: 1.4;
}


/* ------- 11 · artigos ------- */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.article:hover { border-color: rgba(94, 227, 232, .25); transform: translateY(-2px); }
.article__cover {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(94, 227, 232, .14), rgba(217, 183, 106, .10)),
    var(--surface-2);
  position: relative;
  overflow: hidden;
}
.article__cover::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(94, 227, 232, .28), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217, 183, 106, .22), transparent 50%);
}
.article__body {
  padding: 22px;
}
.article__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.article__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--text);
}
.article__text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}


/* ------- 12 · CTA final ------- */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta__card {
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(94, 227, 232, .20), transparent 70%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 56px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__card::before {
  content: "";
  position: absolute;
  top: -30%; left: -10%;
  width: 120%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(94, 227, 232, .12), transparent 60%);
  pointer-events: none;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--text);
  position: relative;
  text-wrap: balance;
}
.cta__title em { color: var(--cyan); font-style: italic; }
.cta__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 auto 28px;
  max-width: 52ch;
  position: relative;
  text-wrap: pretty;
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}


/* ------- 13 · contato (form) ------- */
.contact {
  padding-bottom: 100px;
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact__intro h2 { margin-top: 6px; }
.contact__points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact__points li::before {
  content: "";
  width: 16px; height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(94, 227, 232, .12);
  border: 1px solid var(--cyan);
  background-image: radial-gradient(circle, var(--cyan) 25%, transparent 30%);
}
.contact__form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.005)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field textarea {
  background: rgba(4, 7, 13, .6);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  width: 100%;
  transition: border-color .2s, background .2s;
  min-height: 48px;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
  font-family: inherit;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(94, 227, 232, .04);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
.form-status {
  font-size: 12.5px;
  color: var(--text-muted);
  display: none;
}
.form-status.is-success { display: inline; color: var(--cyan); }
.form-status.is-error   { display: inline; color: var(--danger); }


/* ------- 14 · footer ------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 50px 0 36px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 12px 0 0;
  max-width: 36ch;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-faint);
}


/* ------- 15 · animações + reveal ------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ------- 16 · breakpoints (desktop) ------- */
@media (min-width: 720px) {
  .credibility__row { grid-template-columns: repeat(4, 1fr); }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .articles-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .gallery-card { flex: 0 0 260px; }
}

@media (min-width: 960px) {
  :root { --gutter: 28px; }
  .section { padding: 110px 0; }

  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .site-header__inner { padding: 6px 10px 6px 22px; }
  .brand img { width: 36px; height: 36px; }
  .brand-text { font-size: 16px; }

  /* Hero em duas colunas */
  .hero { padding: 160px 0 80px; }
  .hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-text { max-width: 580px; }
  .hero-stage { margin: 0; width: 100%; max-width: 360px; }

  /* Cards orbitando como flutuantes em torno do mockup */
  .orbit-cards {
    display: block;
    margin-top: 0;
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .orbit-card {
    position: absolute;
    pointer-events: auto;
    padding: 11px 14px;
    font-size: 13px;
    animation: float 6s ease-in-out infinite;
  }
  .orbit-card:nth-child(1) { top: 8%;  left: -42%; animation-delay: 0s; }
  .orbit-card:nth-child(2) { top: 28%; right: -42%; animation-delay: -1.5s; }
  .orbit-card:nth-child(3) { top: 52%; left: -52%; animation-delay: -3s; }
  .orbit-card:nth-child(4) { top: 68%; right: -46%; animation-delay: -4.5s; }
  .orbit-card:nth-child(5) { bottom: 4%; left: -22%; animation-delay: -2s; }
  .orbit-card:nth-child(6) { bottom: -2%; right: -28%; animation-delay: -3.5s; }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }

  /* Bento de features — algumas células maiores */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .feature--wide { grid-column: span 2; }
  .feature--tall { grid-row: span 2; }
  .feature--big  { grid-column: span 2; grid-row: span 2; }
  .feature--big .feature__title { font-size: 32px; }
  .feature--big .feature__text { font-size: 16px; max-width: 38ch; }

  .principles { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .gallery-card { flex: 0 0 280px; }

  .audience-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  .contact__layout { grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
  .contact__form { padding: 32px; }

  .cta__card { padding: 88px 60px; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 96px; }
  .manifesto__quote { font-size: 64px; }
  .features-grid { gap: 20px; }
}

/* ---------- Telas pequenas — proteção extra contra overflow ---------- */
@media (max-width: 380px) {
  :root { --gutter: 18px; }
  .hero h1 { font-size: 42px; }
  .section-title { font-size: 32px; }
  .manifesto__quote { font-size: 30px; }
  .cta__card { padding: 44px 18px; }
  .btn { padding: 12px 18px; font-size: 14px; }
}

/* tudo respira; nada vaza */
.no-overflow { overflow: hidden; }


/* ====================================================================
   ====================  V2 · UPGRADE EXTRAORDINÁRIO  ===================
   - Background animado (canvas + nebulosa + grid + versículos)
   - Marca em destaque (selo no hero + showcase monumental)
   - Cluster de 3 telas em perspectiva (hero)
   - Faixas parallax com 11 telas
   - Métricas, marquee, selo no CTA, ajustes finos
==================================================================== */

/* ------- Background animado fixo ------- */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(94,227,232,.05), transparent 60%),
    radial-gradient(80% 60% at 100% 50%, rgba(91,75,200,.08), transparent 60%),
    radial-gradient(70% 60% at 0% 80%, rgba(217,183,106,.05), transparent 60%),
    linear-gradient(180deg, #04070d 0%, #060912 40%, #03060c 100%);
}
.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: .9;
}
.bg-nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  animation: nebula-drift 26s ease-in-out infinite;
  will-change: transform, opacity;
}
.bg-nebula--a {
  width: 540px; height: 540px;
  top: -180px; right: -160px;
  background: radial-gradient(circle, rgba(94,227,232,.28), transparent 60%);
  animation-delay: 0s;
}
.bg-nebula--b {
  width: 620px; height: 620px;
  bottom: -240px; left: -200px;
  background: radial-gradient(circle, rgba(91,75,200,.22), transparent 60%);
  animation-delay: -10s;
}
.bg-nebula--c {
  width: 460px; height: 460px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217,183,106,.10), transparent 60%);
  animation-delay: -18s;
  opacity: .35;
}
@keyframes nebula-drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .55; }
  50%      { transform: translate3d(40px,-30px,0) scale(1.08); opacity: .75; }
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 227, 232, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 227, 232, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, #000 25%, transparent 80%);
  animation: grid-breathe 12s ease-in-out infinite;
}
@keyframes grid-breathe {
  0%, 100% { opacity: .8; }
  50%      { opacity: 1; }
}
.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 50%, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.bg-verses {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: var(--font-display);
  font-style: italic;
}
.bg-verses span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  color: rgba(238, 241, 247, .08);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: .02em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  animation: verse-float 18s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes verse-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); opacity: .35; }
  50%      { transform: translate(-50%, -50%) translateY(-12px); opacity: .9; }
}

/* Garante que o conteúdo principal renderize sobre o background */
body { background: transparent; position: relative; z-index: 0; }
.site-header, main, .site-footer { position: relative; z-index: 1; }


/* ------- Brand mark no header (logo + anel pulsando) ------- */
.brand__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand__mark img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 16px rgba(94,227,232,.35), inset 0 0 0 1px rgba(94,227,232,.45);
  position: relative;
  z-index: 1;
}
.brand__mark-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(94,227,232,.45);
  animation: mark-pulse 2.6s ease-out infinite;
}
@keyframes mark-pulse {
  0%   { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.25); opacity: 0; }
}


/* ------- HERO v2 — selo + 3 telas em perspectiva ------- */
.hero {
  position: relative;
  padding: 156px 0 0;
  overflow: visible;
}
.hero::before, .hero::after { display: none; } /* removidos: vão para o bg fixo */

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.hero-text { max-width: 620px; }
.ink-gold {
  background: linear-gradient(120deg, #f0d28d 0%, #d9b76a 50%, #5ee3e8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  animation: shimmer 9s linear infinite;
}

/* Selo da marca giratório no hero */
.brand-seal {
  position: relative;
  width: clamp(180px, 50vw, 240px);
  aspect-ratio: 1;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.brand-seal__logo {
  position: relative;
  z-index: 3;
  width: 64%;
  height: 64%;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(94,227,232,.35),
    0 14px 40px rgba(0,0,0,.55),
    0 0 60px rgba(94,227,232,.25);
  animation: seal-bob 7s ease-in-out infinite;
}
.brand-seal__halo {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, rgba(94,227,232,.35), transparent 60%);
  filter: blur(34px);
  z-index: 0;
  animation: halo-pulse 6s ease-in-out infinite;
}
.brand-seal__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(94,227,232,.35);
  z-index: 1;
}
.brand-seal__ring--1 { inset: 4%;  border-style: solid;  border-color: rgba(94,227,232,.18); animation: seal-spin 28s linear infinite; }
.brand-seal__ring--2 { inset: -6%; border-color: rgba(217,183,106,.22); animation: seal-spin 44s linear infinite reverse; }
.brand-seal__ring--3 { inset: -14%; border-color: rgba(94,227,232,.14); animation: seal-spin 60s linear infinite; }
.brand-seal__orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  animation: seal-spin 26s linear infinite;
  opacity: .9;
}
@keyframes seal-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes seal-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes halo-pulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .9;  transform: scale(1.08); }
}

/* Hero h1 */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 9.5vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 18px 0 18px;
  color: var(--text);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--cyan);
  background: linear-gradient(120deg, #5ee3e8, #d9b76a 60%, #5ee3e8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s linear infinite;
}

/* Métricas — chips no hero */
.hero p.hero-lede {
  max-width: 600px;
  color: #aab3c4;
}

.hero .btn-row {
  margin-top: 28px;
}

.hero .btn {
  min-height: 54px;
  padding: 15px 24px;
}

.hero .btn--ghost {
  padding-left: 26px;
  padding-right: 26px;
}

.hero-pill {
  background: rgba(94,227,232,.10);
  border-color: rgba(94,227,232,.36);
  color: var(--cyan);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 26px rgba(0,0,0,.22);
}

.hero-pill .dot {
  box-shadow: 0 0 12px var(--cyan);
}

/* O selo monumental do print comeca na segunda dobra. */
.hero > .container > .brand-seal {
  display: none;
}

.hero-metrics {
  list-style: none;
  margin: 36px 0 0;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: linear-gradient(180deg, rgba(13,19,30,.7), rgba(7,11,20,.55));
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-metrics li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-metrics strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1;
  color: var(--cyan);
  font-weight: 400;
  letter-spacing: -.01em;
}
.hero-metrics li:nth-child(even) strong { color: var(--gold); }
.hero-metrics span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Cluster de 3 telas em perspectiva (hero) */
.hero-cluster {
  position: relative;
  margin: 42px auto 0;
  width: 100%;
  max-width: 680px;
  /* aspect-ratio precisa acomodar a tela central (~40% × 18/9 = 80% de altura)
     + o offset top: 0 + espaço para os tags e legendas */
  aspect-ratio: 1 / 1;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.hero-cluster__glow {
  position: absolute;
  inset: 5% 10%;
  background: radial-gradient(ellipse at center, rgba(94,227,232,.28), transparent 65%);
  filter: blur(46px);
  z-index: 0;
  animation: float-glow 8s ease-in-out infinite;
}
.phone {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .45s cubic-bezier(.2,.8,.3,1);
}
.phone__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 18;
  border-radius: 32px;
  background: linear-gradient(180deg, #1a2230, #0a0f17);
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 26px 70px rgba(0,0,0,.6),
    0 0 50px rgba(94, 227, 232, .08);
  overflow: hidden;
  isolation: isolate;
}
.phone__frame::before {
  content: "";
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 62px; height: 18px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  display: block;
}
.phone__frame--xl { border-radius: 36px; padding: 9px; }
.phone__frame--xl::before { width: 74px; height: 20px; }
.phone__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(13,19,30,.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  backdrop-filter: blur(6px);
}
.phone__tag--gold { color: var(--gold); border-color: rgba(217,183,106,.35); }

/* Posições mobile (cluster vertical-ish, 3 telas em arco) */
.phone--center {
  left: 50%;
  top: 4%;
  width: 40%;
  transform: translateX(-50%);
  z-index: 3;
  animation: phone-bob 7s ease-in-out infinite;
}
.phone--left {
  left: 2%;
  top: 18%;
  width: 30%;
  transform: rotate(-8deg);
  z-index: 2;
  animation: phone-bob 9s ease-in-out infinite -2s;
}
.phone--right {
  right: 2%;
  top: 18%;
  width: 30%;
  transform: rotate(8deg);
  z-index: 2;
  animation: phone-bob 9s ease-in-out infinite -4s;
}
@keyframes phone-bob {
  0%, 100% { transform: translateX(var(--tx, 0)) rotate(var(--rz, 0deg)) translateY(0); }
  50%      { transform: translateX(var(--tx, 0)) rotate(var(--rz, 0deg)) translateY(-10px); }
}
.phone--center { --tx: -50%; --rz: 0deg; }
.phone--left   { --tx: 0;    --rz: -8deg; }
.phone--right  { --tx: 0;    --rz: 8deg; }

/* Cards orbitando: visíveis também no mobile, em volta do cluster */
.hero-cluster .orbit-cards {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.hero-cluster .orbit-card {
  position: absolute;
  pointer-events: auto;
  padding: 8px 12px;
  font-size: 11px;
  white-space: nowrap;
  background: rgba(13, 19, 30, .82);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.hero-cluster .orbit-card .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.hero-cluster .orbit-card.gold .dot { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.hero-cluster .orbit-card:nth-child(1) { top: 4%;  left: -2%;  animation-delay: 0s; }
.hero-cluster .orbit-card:nth-child(2) { top: 8%;  right: -2%; animation-delay: -1.5s; }
.hero-cluster .orbit-card:nth-child(3) { top: 48%; left: -6%;  animation-delay: -3s; }
.hero-cluster .orbit-card:nth-child(4) { top: 52%; right: -6%; animation-delay: -4.5s; }
.hero-cluster .orbit-card:nth-child(5) { bottom: 2%; left: 10%;  animation-delay: -2s; }
.hero-cluster .orbit-card:nth-child(6) { bottom: -2%; right: 10%; animation-delay: -3.5s; }

/* Marquee do hero */
.hero-marquee {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(94,227,232,.02), transparent);
}
.hero-marquee::before,
.hero-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.hero-marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.hero-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.hero-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.65vw, 34px);
  color: var(--text-muted);
  letter-spacing: 0;
}
.hero-marquee__track span:nth-child(2n) { color: var(--cyan); opacity: .55; }
.hero-marquee__track span:nth-child(4n+1) { color: var(--gold); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ------- Brand showcase (logo gigante + tipo monumental) ------- */
.brand-showcase {
  min-height: 660px;
  padding: 118px 0 90px;
  position: relative;
}
.brand-showcase__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 36px;
  text-align: center;
}
.brand-showcase__logo-wrap {
  position: relative;
  width: clamp(260px, 54vw, 380px);
  margin: 0 auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-seal--showcase {
  width: 100%;
  max-width: 380px;
  margin: 0;
}
.brand-seal--showcase .brand-seal__logo {
  width: 62%;
  height: 62%;
}
.brand-seal--showcase .brand-seal__halo {
  inset: -12%;
  filter: blur(28px);
}
.brand-seal--showcase .brand-seal__ring--2 { inset: -4%; }
.brand-seal--showcase .brand-seal__ring--3 { inset: -10%; }
.brand-showcase__logo {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(94,227,232,.30),
    0 30px 80px rgba(0,0,0,.6),
    0 0 100px rgba(94,227,232,.25);
  position: relative; z-index: 2;
  animation: seal-bob 6s ease-in-out infinite;
}
.brand-showcase__rings {
  position: absolute;
  inset: -22%;
  z-index: 1;
}
.brand-showcase__rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(94,227,232,.15);
}
.brand-showcase__rings span:nth-child(1) { inset: 0;   animation: seal-spin 40s linear infinite; border-color: rgba(94,227,232,.22); }
.brand-showcase__rings span:nth-child(2) { inset: 6%;  animation: seal-spin 30s linear infinite reverse; border-style: dashed; border-color: rgba(217,183,106,.22); }
.brand-showcase__rings span:nth-child(3) { inset: 12%; animation: seal-spin 24s linear infinite; border-color: rgba(94,227,232,.10); }

.brand-showcase__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(58px, 18vw, 172px);
  line-height: .85;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-wrap: balance;
}
.brand-showcase__title-row {
  display: block;
  background: linear-gradient(180deg, #eef1f7 0%, #97a0b3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-showcase__title-row--outline {
  color: transparent;
  background: none;
  -webkit-text-stroke: 1px rgba(94,227,232,.55);
  text-stroke: 1px rgba(94,227,232,.55);
  font-style: italic;
}
.brand-showcase__lede {
  font-size: clamp(15px, 3.5vw, 18px);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 12px auto 18px;
  line-height: 1.6;
  text-wrap: pretty;
}
.brand-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}
.brand-showcase__chips span { opacity: .85; }
.brand-showcase__chips span:nth-child(even) { color: var(--gold); }


/* ------- CTA com selo da marca ------- */
.cta__seal {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(94,227,232,.35),
    0 12px 36px rgba(0,0,0,.6),
    0 0 50px rgba(94,227,232,.2);
  animation: seal-bob 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}


/* ------- Breakpoints v2 ------- */
@media (min-width: 720px) {
  .hero-metrics { grid-template-columns: repeat(4, 1fr); }
  .mini-phone { width: 188px; }
  .mini-phone--sm { width: 124px; }
}

@media (max-width: 959px) {
  .site-header { padding-top: 18px; }
  .hero { padding: 118px 0 0; }
  .hero-cluster { margin-top: 24px; }
  .hero-marquee { margin-top: 34px; }
  .brand-showcase {
    min-height: auto;
    padding: 74px 0 64px;
  }
}

@media (min-width: 960px) {
  .hero { padding: 178px 0 0; }
  .hero .container {
    grid-template-columns: minmax(0, 1fr) minmax(520px, .96fr);
    column-gap: 28px;
    align-items: start;
  }
  .hero-text {
    grid-column: 1;
    grid-row: 1;
    max-width: 620px;
  }
  .hero-cluster {
    grid-column: 2;
    grid-row: 1;
    margin: -54px 0 0;
    max-width: 620px;
    aspect-ratio: 1.05 / 1;
  }

  /* Telas levemente em 3D no desktop */
  .phone--center { width: 40%; top: 2%; transform: translateX(-50%) rotateY(0deg); }
  .phone--left   { left: 2%;   width: 29%; top: 23%; transform: rotate(-10deg) rotateY(14deg); --rz: -10deg; }
  .phone--right  { right: 2%;  width: 29%; top: 23%; transform: rotate(10deg)  rotateY(-14deg); --rz: 10deg; }

  .brand-showcase {
    min-height: 690px;
    padding: 104px 0 86px;
  }
  .brand-showcase__inner {
    grid-template-columns: minmax(340px, 390px) 1fr;
    gap: 86px;
    text-align: left;
  }
  .brand-showcase__logo-wrap { margin: 0; width: 100%; max-width: 380px; transform: none; }
  .brand-showcase__chips { justify-content: flex-start; }

  .mini-phone { width: 220px; }
  .mini-phone--sm { width: 140px; }

  .cta__seal { width: 96px; height: 96px; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 84px; }
  .hero-cluster { max-width: 670px; }
  .hero-metrics { max-width: 620px; }
  .brand-showcase__title { font-size: 168px; }
  .mini-phone { width: 240px; }
  .mini-phone--sm { width: 156px; }
}

@media (min-width: 1360px) {
  :root { --container: 1260px; }
  .hero { padding-top: 190px; }
  .hero .container { grid-template-columns: minmax(0, 620px) minmax(610px, 1fr); column-gap: 42px; }
  .hero-cluster { max-width: 700px; margin-top: -66px; }
  .brand-showcase__inner { grid-template-columns: 390px 1fr; gap: 104px; }
  .brand-showcase__title { font-size: 176px; }
}

/* Telas pequenas */
@media (max-width: 420px) {
  .site-header { padding-top: 18px; }
  .hero { padding: 118px 0 0; }
  .hero h1 { font-size: 40px; }
  .hero-cluster { aspect-ratio: 1 / 1; }
  .hero-metrics { padding: 16px; gap: 12px; }
  .hero-metrics strong { font-size: 26px; }
  .brand-showcase__title { font-size: clamp(44px, 16vw, 90px); }
  .mini-phone { width: 132px; }
  .mini-phone--sm { width: 92px; }
}

/* ------- Hero objetivo: selo + telas + marca em uma dobra ------- */
.site-header {
  padding: 16px var(--gutter) 14px;
}

.brand-showcase {
  display: none;
}

.hero {
  padding: 130px 0 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.hero > .container > .brand-seal {
  display: flex;
  width: clamp(260px, 70vw, 420px);
  margin: 0 auto;
}

.hero-pill--legacy,
.hero-text .hero-metrics,
.hero-aside--legacy,
.hero-aside--current {
  display: none !important;
}

.hero-aside {
  display: grid;
  gap: 26px;
  align-content: start;
}

.hero-aside .hero-pill {
  width: fit-content;
  margin: 0 auto;
}

.hero-aside .hero-metrics {
  margin: 0;
}

.hero-brand-lede {
  margin: 0 auto;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: clamp(15px, 3.6vw, 18px);
  line-height: 1.58;
  text-align: center;
}

.hero-brand-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-brand-chips span:nth-child(even) {
  color: var(--gold);
}

@media (min-width: 960px) {
  .hero {
    padding: 154px 0 0;
  }

  .hero .container {
    grid-template-columns: minmax(0, 560px) minmax(0, 560px);
    grid-template-areas:
      "text seal"
      "phones aside";
    align-items: center;
    column-gap: 64px;
    row-gap: 28px;
  }

  .hero-text {
    grid-area: text;
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(62px, 5.9vw, 86px);
    margin-top: 0;
    margin-bottom: 22px;
  }

  .hero p.hero-lede {
    max-width: 560px;
  }

  .hero > .container > .brand-seal {
    grid-area: seal;
    width: min(100%, 430px);
    justify-self: center;
    margin: 0;
  }

  .hero-cluster {
    grid-area: phones;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1.08 / 1;
    margin: -6px 0 0;
    justify-self: center;
  }

  .phone--center { width: 38%; top: 3%; }
  .phone--left { left: 4%; width: 28%; top: 27%; }
  .phone--right { right: 4%; width: 28%; top: 27%; }

  .hero-aside {
    grid-area: aside;
    align-self: start;
    gap: 30px;
    padding-top: 8px;
  }

  .hero-aside .hero-pill {
    justify-self: center;
    margin: 0;
  }

  .hero-aside .hero-metrics {
    width: 100%;
    max-width: none;
    padding: 22px 26px;
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-brand-lede {
    margin: 34px 0 0;
    max-width: 610px;
    text-align: left;
  }

  .hero-brand-chips {
    justify-content: flex-start;
  }

  .hero-marquee {
    margin-top: 68px;
  }
}

@media (min-width: 1360px) {
  .hero {
    padding-top: 148px;
  }

  .hero .container {
    grid-template-columns: minmax(0, 575px) minmax(0, 575px);
    column-gap: 72px;
  }

  .hero > .container > .brand-seal {
    width: 450px;
  }

  .hero-cluster {
    max-width: 540px;
  }
}

@media (max-width: 959px) {
  .hero {
    padding-top: 118px;
  }

  .hero-text {
    order: 1;
  }

  .hero > .container > .brand-seal {
    order: 2;
  }

  .hero-cluster {
    order: 3;
  }

  .hero-aside {
    order: 4;
  }
}

/* ------- Mobile: evita mistura visual de versoes antigas ------- */
@media (max-width: 959px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 12px 14px 10px;
  }

  .site-header__inner {
    min-height: 58px;
    padding: 7px 8px 7px 12px;
  }

  .hero {
    padding: 102px 0 0;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
  }

  .hero-pill--legacy,
  .hero-text .hero-metrics,
  .hero-aside--legacy,
  .hero-aside--current,
  .brand-showcase {
    display: none !important;
  }

  .hero-text {
    order: 1;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: .98;
    margin: 0 0 16px;
  }

  .hero p.hero-lede {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero .btn-row {
    gap: 10px;
    margin-top: 22px;
  }

  .hero .btn {
    flex: 1 1 150px;
    min-height: 50px;
    padding: 13px 16px;
    font-size: 14px;
  }

  .hero > .container > .brand-seal {
    order: 2;
    width: min(76vw, 310px);
    margin: 4px auto 0;
  }

  .hero-cluster {
    order: 3;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1.05 / 1;
    margin: 0 auto;
  }

  .hero-cluster .orbit-card {
    display: none;
  }

  .phone--center { width: 40%; top: 1%; }
  .phone--left { left: 6%; width: 29%; top: 25%; }
  .phone--right { right: 6%; width: 29%; top: 25%; }

  .phone__tag {
    font-size: 8px;
    letter-spacing: .12em;
    padding: 3px 8px;
  }

  .hero-aside--fixed {
    order: 4;
    display: grid;
    gap: 18px;
    width: 100%;
  }

  .hero-aside .hero-pill {
    max-width: 100%;
    white-space: normal;
    justify-self: center;
    text-align: center;
    font-size: 10px;
    line-height: 1.3;
  }

  .hero-aside .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
  }

  .hero-aside .hero-metrics strong {
    font-size: 30px;
  }

  .hero-aside .hero-metrics span {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .hero-brand-lede {
    max-width: 100%;
    margin: 0;
    font-size: 15px;
    text-align: center;
  }

  .hero-brand-chips {
    justify-content: center;
    gap: 8px 12px;
    font-size: 10px;
  }

  .hero-marquee {
    margin-top: 34px;
    padding: 16px 0;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 94px;
  }

  .hero > .container > .brand-seal {
    width: min(78vw, 270px);
  }

  .hero-cluster {
    max-width: 330px;
  }

  .phone__tag {
    display: none;
  }
}

/* ------- Smartphone 3D giratório ------- */
.app-phone-showcase {
  width: min(100% - 32px, 980px);
  min-height: 690px;
  margin: 34px auto 0;
  padding: 44px 64px 82px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
  contain: layout;
}

.app-phone-showcase::before {
  content: "";
  position: absolute;
  width: min(64vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(94,227,232,.14), transparent 58%),
    radial-gradient(circle at 68% 32%, rgba(217,183,106,.09), transparent 44%);
  filter: blur(38px);
  opacity: .50;
}

.app-phone-stage {
  --phone-w: min(42vw, 270px);
  --phone-h: calc(var(--phone-w) * 2.02);
  --phone-depth: 30px;
  width: var(--phone-w);
  height: var(--phone-h);
  perspective: 1350px;
  position: relative;
  z-index: 1;
}

.app-phone-rotator {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: app-phone-spin 6.4s cubic-bezier(.54, 0, .34, 1) infinite;
}

.app-phone-showcase:hover .app-phone-rotator {
  animation-play-state: paused;
}

.app-phone-side {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 38px;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.app-phone-side--front {
  transform: translateZ(calc(var(--phone-depth) / 2));
}

.app-phone-side--back {
  transform: rotateY(180deg) translateZ(calc(var(--phone-depth) / 2));
}

.app-phone-side::after {
  content: "";
  position: absolute;
  inset: 6px -12px;
  border-radius: 42px;
  background: linear-gradient(90deg, rgba(255,255,255,.09), rgba(18,26,40,.72), rgba(0,0,0,.46));
  transform: translateZ(calc(var(--phone-depth) * -1));
  z-index: -1;
  filter: brightness(.9);
}

.app-phone-frame,
.app-phone-backplate {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(180deg, #1b2434, #060a12);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 0 0 7px #101826,
    inset 0 0 0 8px rgba(94,227,232,.10),
    0 38px 78px rgba(0,0,0,.58),
    0 0 42px rgba(94,227,232,.14);
}

.app-phone-frame {
  animation: app-phone-front-content 6.4s cubic-bezier(.54, 0, .34, 1) infinite;
}

.app-phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255,255,255,.08) 12%, transparent 26%, transparent 78%, rgba(255,255,255,.05) 100%),
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.08), transparent 16%);
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: .22;
}

.app-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 82px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #020306;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.app-phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  padding: 8px;
  border-radius: 34px;
  filter: brightness(1.24) contrast(1.12) saturate(1.12);
  transition: opacity .22s ease, filter .22s ease;
}

.app-phone-screen.is-changing {
  opacity: .88;
  filter: brightness(1.16) contrast(1.08) saturate(1.08);
}

.app-phone-side figcaption {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.app-phone-backplate {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(94,227,232,.20), transparent 38%),
    linear-gradient(160deg, #101a28, #03060b 64%, #12182a);
  animation: app-phone-back-content 6.4s cubic-bezier(.54, 0, .34, 1) infinite;
}

.app-phone-backplate::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 30px;
  border: 1px solid rgba(94,227,232,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 38%),
    radial-gradient(circle, rgba(94,227,232,.10), transparent 56%);
}

.app-phone-backplate img {
  width: 34%;
  max-width: 104px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transform: translateZ(1px);
  filter: brightness(1.08) contrast(1.08) saturate(1.08);
  box-shadow: 0 0 34px rgba(94,227,232,.28);
  animation: app-phone-back-logo 6.4s cubic-bezier(.54, 0, .34, 1) infinite;
}

.app-phone-camera {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(2,5,10,.72);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(94,227,232,.10);
}

.app-phone-camera::before,
.app-phone-camera::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #07111d 35%, #18283c 36%, #02050a 66%);
  border: 1px solid rgba(94,227,232,.20);
}

.app-phone-camera::before {
  width: 22px;
  height: 22px;
  top: 9px;
  left: 10px;
}

.app-phone-camera::after {
  width: 18px;
  height: 18px;
  right: 10px;
  bottom: 10px;
}

.app-phone-backbrand {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes app-phone-spin {
  0%, 20%     { transform: rotateY(-6deg) rotateX(0deg); }
  38%, 62%    { transform: rotateY(180deg) rotateX(0deg); }
  82%, 100%   { transform: rotateY(354deg) rotateX(0deg); }
}

@keyframes app-phone-back-logo {
  0%, 30%, 70%, 100% { opacity: 0; }
  39%, 61% { opacity: .88; }
}

@keyframes app-phone-front-content {
  0%, 24%, 82%, 100% { opacity: 1; filter: brightness(1.06); }
  34%, 66% { opacity: .18; filter: brightness(.8); }
}

@keyframes app-phone-back-content {
  0%, 30%, 70%, 100% { opacity: .18; filter: brightness(.82); }
  39%, 61% { opacity: 1; filter: brightness(1.06); }
}

@media (max-width: 959px) {
  .app-phone-showcase {
    width: 100%;
    min-height: 520px;
    margin-top: 28px;
    padding: 34px 24px 66px;
    overflow: visible;
  }

  .app-phone-stage {
    --phone-w: min(60vw, 220px);
    --phone-depth: 24px;
    perspective: 980px;
  }

  .app-phone-side,
  .app-phone-frame,
  .app-phone-backplate {
    border-radius: 30px;
  }

  .app-phone-frame,
  .app-phone-backplate {
    box-shadow:
      inset 0 0 0 6px #101826,
      inset 0 0 0 7px rgba(94,227,232,.10),
      0 26px 58px rgba(0,0,0,.50),
      0 0 30px rgba(94,227,232,.15);
  }

  .app-phone-screen {
    padding: 7px;
    border-radius: 27px;
    filter: brightness(1.28) contrast(1.12) saturate(1.12);
  }

  .app-phone-notch {
    top: 12px;
    width: 64px;
    height: 18px;
  }
}

@media (max-width: 420px) {
  .app-phone-showcase {
    min-height: 470px;
    padding-inline: 18px;
  }

  .app-phone-stage {
    --phone-w: min(58vw, 190px);
  }

  .app-phone-side figcaption {
    bottom: -30px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-phone-rotator {
    animation-duration: 18s;
  }

  .app-phone-backplate img {
    animation-duration: 18s;
  }

  .app-phone-frame,
  .app-phone-backplate {
    animation-duration: 18s;
  }
}

/* ------- Mobile refinado: selo atras dos smartphones + performance ------- */
@media (max-width: 959px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .bg-nebula {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(660px, auto) auto;
    grid-template-areas:
      "text"
      "hero-visual"
      "aside";
    row-gap: 18px;
    overflow: visible;
  }

  .hero .btn-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .hero .btn {
    width: 100%;
    max-width: 100%;
    flex: none;
    white-space: normal;
  }

  .hero-text {
    grid-area: text;
  }

  .hero > .container > .brand-seal {
    grid-area: hero-visual;
    align-self: start;
    justify-self: center;
    order: initial;
    z-index: 1;
    width: min(112vw, 460px);
    margin: -34px 0 0;
    opacity: .86;
    filter: drop-shadow(0 0 34px rgba(94,227,232,.24));
    pointer-events: none;
  }

  .hero > .container > .brand-seal .brand-seal__halo {
    opacity: .55;
    filter: blur(26px);
  }

  .hero-cluster {
    grid-area: hero-visual;
    align-self: end;
    justify-self: center;
    order: initial;
    z-index: 3;
    width: min(100%, 405px);
    max-width: 405px;
    aspect-ratio: 1.05 / 1;
    margin: 0 auto;
    transform: translateY(28px);
  }

  .hero-cluster__glow {
    opacity: .38;
    filter: blur(28px);
  }

  .phone {
    animation-duration: 12s;
  }

  .phone__frame {
    box-shadow:
      0 0 0 1px rgba(255,255,255,.08),
      0 16px 44px rgba(0,0,0,.52);
  }

  .hero-aside--fixed {
    grid-area: aside;
    order: initial;
    margin-top: 18px;
  }

  .hero-marquee__track,
  .screens-row__track {
    animation-duration: 85s;
  }
}

@media (max-width: 420px) {
  .hero .container {
    grid-template-rows: auto minmax(610px, auto) auto;
  }

  .hero > .container > .brand-seal {
    width: min(116vw, 410px);
    margin-top: -42px;
    transform: translateY(0);
  }

  .hero-cluster {
    width: min(100%, 352px);
    max-width: 352px;
    transform: translateY(34px);
  }
}

/* ------- Correção mobile estreito: sem cortes laterais ------- */
@media (max-width: 959px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    overflow: hidden;
  }

  .hero .btn-row {
    width: min(100%, 330px);
    max-width: calc(100vw - 56px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero .btn {
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 999px;
    font-size: 13.5px;
    line-height: 1.2;
  }

  .hero .container {
    grid-template-rows: auto minmax(590px, auto) auto;
  }

  .hero > .container > .brand-seal {
    width: min(96vw, 390px);
    margin-top: -28px;
  }

  .hero-cluster {
    width: min(94vw, 340px);
    max-width: 340px;
    transform: translateY(18px);
  }

  .phone--center { width: 38%; top: 4%; }
  .phone--left { left: 9%; width: 27%; top: 27%; }
  .phone--right { right: 9%; width: 27%; top: 27%; }
}

@media (max-width: 420px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero .btn-row {
    width: min(100%, 316px);
    max-width: calc(100vw - 48px);
  }

  .hero .container {
    grid-template-rows: auto minmax(560px, auto) auto;
  }

  .hero > .container > .brand-seal {
    width: min(98vw, 365px);
    margin-top: -30px;
  }

  .hero-cluster {
    width: min(92vw, 320px);
    max-width: 320px;
    transform: translateY(16px);
  }

  .phone--center { width: 38%; top: 5%; }
  .phone--left { left: 10%; width: 26%; top: 29%; }
  .phone--right { right: 10%; width: 26%; top: 29%; }
}

/* ------- Renderização progressiva para performance ------- */
@supports (content-visibility: auto) {
  .credibility,
  .section,
  .screens-parallax,
  .manifesto,
  .cta,
  .contact,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }
}


/* ===================================================================
   PATCH 2026-05-15 · fluidez mobile, centralização e celular giratório
   - remove o custo do canvas em celulares;
   - elimina a deformação da face posterior no mobile;
   - preserva a estética, mas troca animações pesadas por movimento leve;
   - mantém imagens e mockups centralizados em viewports estreitas.
=================================================================== */
img { image-rendering: auto; }
.bg-canvas { pointer-events: none; }

.screens-parallax {
  overflow: hidden;
  isolation: isolate;
}

.screens-parallax > .container {
  position: relative;
  z-index: 2;
}

.app-phone-showcase {
  margin-left: auto;
  margin-right: auto;
}

.app-phone-stage {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center center;
}

.app-phone-backplate img {
  height: auto;
  object-fit: contain;
  object-position: center;
  transform-origin: center center;
}

@keyframes app-phone-spin {
  0%, 23%     { transform: rotateY(-6deg) rotateX(0deg); opacity: 1; }
  29%, 32%    { transform: rotateY(90deg) rotateX(0deg); opacity: .04; }
  39%, 61%    { transform: rotateY(180deg) rotateX(0deg); opacity: 1; }
  68%, 71%    { transform: rotateY(270deg) rotateX(0deg); opacity: .04; }
  78%, 100%   { transform: rotateY(354deg) rotateX(0deg); opacity: 1; }
}

@media (min-width: 960px) {
  .app-phone-rotator {
    will-change: transform, opacity;
  }

  .app-phone-frame,
  .app-phone-backplate {
    will-change: opacity, filter;
  }

  .app-phone-backplate img {
    width: 30%;
    min-width: 72px;
    max-width: 98px;
  }
}

@media (max-width: 959px) {
  html,
  body {
    overflow-x: hidden;
    touch-action: pan-y;
  }

  .bg-canvas,
  .bg-nebula {
    display: none !important;
  }

  .bg-grid {
    opacity: .20;
    background-size: 72px 72px;
  }

  .bg-verses span,
  .brand-seal__ring,
  .brand-seal__orbit,
  .brand-seal__logo,
  .brand-seal__halo,
  .hero-cluster__glow,
  .phone,
  .hero-marquee__track,
  .screens-row__track {
    animation: none !important;
  }

  .site-header__inner,
  .mobile-menu,
  .hero-metrics,
  .hero-cluster .orbit-card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .section,
  .screens-parallax,
  .manifesto,
  .cta,
  .contact,
  .site-footer {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
  }

  .hero,
  .screens-parallax,
  .gallery,
  .manifesto,
  .cta,
  .contact {
    overflow-x: clip;
  }

  .phone__frame img,
  .gallery-card__phone img,
  .app-phone-screen {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .screens-parallax {
    padding-top: 58px;
    padding-bottom: 36px;
  }

  .screens-parallax > .container {
    text-align: center !important;
  }

  .screens-parallax .eyebrow,
  .screens-parallax .section-title,
  .screens-parallax .section-lede {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .screens-parallax .section-lede {
    max-width: 34rem;
  }

  .app-phone-showcase {
    width: 100%;
    min-height: clamp(500px, 126vw, 620px);
    margin-top: 20px;
    padding: 20px 0 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    contain: layout paint style;
  }

  .app-phone-showcase::before {
    width: min(88vw, 420px);
    filter: blur(20px);
    opacity: .42;
  }

  .app-phone-stage {
    --phone-w: clamp(190px, 56vw, 226px);
    --phone-h: calc(var(--phone-w) * 2.02);
    --phone-depth: 0px;
    width: var(--phone-w);
    height: var(--phone-h);
    perspective: none;
    display: grid;
    place-items: center;
  }

  .app-phone-rotator {
    width: 100%;
    height: 100%;
    animation: app-phone-mobile-float 7s ease-in-out infinite !important;
    transform-style: flat;
    transform: none;
  }

  .app-phone-side {
    transform: none !important;
    backface-visibility: visible;
  }

  .app-phone-side--front {
    z-index: 2;
  }

  .app-phone-side--back {
    display: none !important;
  }

  .app-phone-frame,
  .app-phone-backplate {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    border-radius: 30px;
  }

  .app-phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    padding: 7px;
    border-radius: 27px;
    filter: brightness(1.12) contrast(1.05) saturate(1.06);
  }

  .app-phone-screen.is-changing {
    opacity: .90;
    filter: brightness(1.08) contrast(1.03) saturate(1.03);
  }

  .app-phone-side figcaption {
    bottom: -32px;
  }

  .gallery-card:hover,
  .article:hover,
  .btn:hover {
    transform: none;
  }

  .reveal {
    transition-duration: .28s !important;
  }
}

@media (max-width: 420px) {
  .screens-parallax {
    padding-top: 50px;
  }

  .app-phone-showcase {
    min-height: 500px;
    padding-bottom: 54px;
  }

  .app-phone-stage {
    --phone-w: clamp(184px, 55vw, 206px);
  }
}

@keyframes app-phone-mobile-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

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


/* ===================================================================
   PATCH 2026-05-15 · v5
   Mobile novamente animado: canvas ativo, imagens centralizadas
   e celular 3D com face posterior corrigida sem deformação.
=================================================================== */
@media (max-width: 959px) {
  .bg-canvas {
    display: block !important;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    opacity: .48;
    pointer-events: none;
  }

  .bg-nebula {
    display: block !important;
    opacity: .38;
  }

  .bg-verses span {
    animation: verse-float 24s ease-in-out infinite !important;
  }

  .brand-seal__ring--1 { animation: seal-spin 36s linear infinite !important; }
  .brand-seal__ring--2 { animation: seal-spin 52s linear infinite reverse !important; }
  .brand-seal__ring--3 { animation: seal-spin 68s linear infinite !important; }
  .brand-seal__orbit   { animation: seal-spin 38s linear infinite !important; }
  .brand-seal__logo    { animation: seal-bob 9s ease-in-out infinite !important; }
  .brand-seal__halo    { animation: halo-pulse 9s ease-in-out infinite !important; }

  .hero > .container > .brand-seal,
  .hero-cluster,
  .screens-parallax > .container,
  .app-phone-showcase,
  .app-phone-stage {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cluster {
    justify-self: center;
    transform-origin: center center;
  }

  .hero-cluster__glow {
    animation: float-glow 10s ease-in-out infinite !important;
  }

  .phone--center { animation: phone-bob 8.5s ease-in-out infinite !important; }
  .phone--left   { animation: phone-bob 10s ease-in-out infinite -2s !important; }
  .phone--right  { animation: phone-bob 10s ease-in-out infinite -4s !important; }

  .hero-cluster .orbit-card {
    animation: float 8s ease-in-out infinite !important;
  }

  .hero-marquee__track {
    animation: marquee 78s linear infinite !important;
  }

  .phone__frame img,
  .gallery-card__phone img,
  .app-phone-screen {
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-position: top center;
  }

  .app-phone-showcase {
    overflow: visible;
    contain: layout;
    min-height: clamp(520px, 128vw, 640px);
    padding-top: 22px;
    padding-bottom: 70px;
  }

  .app-phone-stage {
    --phone-w: clamp(188px, 56vw, 226px);
    --phone-h: calc(var(--phone-w) * 2.02);
    --phone-depth: 24px;
    perspective: 1180px;
    display: block;
    transform-origin: center center;
  }

  .app-phone-rotator {
    animation: app-phone-spin 7.2s cubic-bezier(.54, 0, .34, 1) infinite !important;
    transform-style: preserve-3d !important;
    transform-origin: center center;
    will-change: transform, opacity;
  }

  .app-phone-side {
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .app-phone-side--front {
    display: block !important;
    transform: translateZ(calc(var(--phone-depth) / 2)) !important;
    z-index: 2;
  }

  .app-phone-side--back {
    display: block !important;
    transform: rotateY(180deg) translateZ(calc(var(--phone-depth) / 2)) !important;
    z-index: 1;
  }

  .app-phone-frame,
  .app-phone-backplate {
    border-radius: 30px;
    opacity: 1;
  }

  .app-phone-frame {
    animation: app-phone-front-content 7.2s cubic-bezier(.54, 0, .34, 1) infinite !important;
  }

  .app-phone-backplate {
    display: block;
    animation: app-phone-back-content 7.2s cubic-bezier(.54, 0, .34, 1) infinite !important;
  }

  .app-phone-backplate::before {
    inset: 22px;
    border-radius: 28px;
  }

  .app-phone-backplate img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(66px, 28%, 88px);
    height: clamp(66px, 28%, 88px);
    max-width: 88px;
    max-height: 88px;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%) translateZ(2px);
    transform-origin: center center;
    animation: app-phone-back-logo 7.2s cubic-bezier(.54, 0, .34, 1) infinite !important;
  }

  .app-phone-camera {
    top: 22px;
    left: 22px;
    width: 54px;
    height: 54px;
  }

  .app-phone-backbrand {
    left: 50%;
    right: auto;
    bottom: 34px;
    width: max-content;
    max-width: calc(100% - 48px);
    text-align: center;
    transform: translateX(-50%);
  }
}

@media (max-width: 420px) {
  .app-phone-showcase {
    min-height: 510px;
    padding-bottom: 66px;
  }

  .app-phone-stage {
    --phone-w: clamp(182px, 55vw, 206px);
    --phone-depth: 22px;
  }

  .app-phone-backplate img {
    width: clamp(60px, 27%, 78px);
    height: clamp(60px, 27%, 78px);
  }
}


/* ===================================================================
   PATCH 2026-05-15 · v6  — Definitive rotation + refined mobile motion
   ▸ Reliable 3D rotation with the back face always visible at 180°.
   ▸ Removes the prior content-opacity dimming that was flattening
     the 3D context and making the rear feel "missing".
   ▸ Adds a traveling specular highlight that follows the spin.
   ▸ Lighter, GPU-friendlier mobile reveals + gentle scroll motion.
=================================================================== */

/* ----- Smartphone rotator: rewritten so both faces work ------ */
.app-phone-stage {
  perspective: 1500px;
  perspective-origin: 50% 42%;
}

.app-phone-rotator {
  animation: ob-phone-spin 9s cubic-bezier(.7,.02,.3,1) infinite !important;
  transform-style: preserve-3d !important;
  transform-origin: 50% 50%;
  will-change: transform;
}

.app-phone-side {
  transform-style: preserve-3d !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
}

.app-phone-side--front {
  z-index: 2;
  transform: translateZ(calc(var(--phone-depth) / 2)) !important;
}

.app-phone-side--back {
  display: block !important;
  z-index: 1;
  transform: rotateY(180deg) translateZ(calc(var(--phone-depth) / 2)) !important;
}

/* Kill the dimming animations — let backface-visibility do its job. */
.app-phone-frame,
.app-phone-backplate {
  animation: none !important;
  opacity: 1 !important;
  filter: none !important;
}
.app-phone-backplate img {
  animation: ob-back-logo-breathe 6s ease-in-out infinite !important;
  opacity: 1 !important;
}

/* Strengthen the rear so it reads clearly as a phone back. */
.app-phone-backplate {
  background:
    radial-gradient(120% 100% at 50% 30%, rgba(94,227,232,.22), transparent 56%),
    linear-gradient(160deg, #1a2535 0%, #050a14 56%, #0d1426 100%);
  box-shadow:
    inset 0 0 0 7px #0c1422,
    inset 0 0 0 8px rgba(94,227,232,.10),
    0 38px 78px rgba(0,0,0,.58),
    0 0 42px rgba(94,227,232,.18);
}

.app-phone-backplate::before {
  border: 1px solid rgba(94,227,232,.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), transparent 38%),
    radial-gradient(circle at 50% 40%, rgba(94,227,232,.16), transparent 60%);
}

/* Traveling sheen on the front, hint of one on the back. */
.app-phone-frame::after {
  background:
    linear-gradient(115deg,
      transparent 30%,
      rgba(255,255,255,.10) 46%,
      rgba(255,255,255,.18) 50%,
      rgba(255,255,255,.10) 54%,
      transparent 70%),
    radial-gradient(circle at 50% 6%, rgba(255,255,255,.10), transparent 18%);
  background-size: 240% 100%, auto;
  background-position: 0% 0%, 0 0;
  animation: ob-sheen 9s cubic-bezier(.7,.02,.3,1) infinite;
  mix-blend-mode: screen;
  opacity: .55;
}

@keyframes ob-phone-spin {
  0%   { transform: rotateY(-8deg)   rotateX(2deg); }
  16%  { transform: rotateY(-8deg)   rotateX(2deg); }
  44%  { transform: rotateY(180deg)  rotateX(2deg); }
  60%  { transform: rotateY(180deg)  rotateX(2deg); }
  88%  { transform: rotateY(352deg)  rotateX(2deg); }
  100% { transform: rotateY(352deg)  rotateX(2deg); }
}

@keyframes ob-sheen {
  0%, 18% { background-position: -40% 0%, 0 0; }
  44%     { background-position: 120% 0%, 0 0; }
  60%     { background-position: 120% 0%, 0 0; }
  88%,100%{ background-position: -40% 0%, 0 0; }
}

@keyframes ob-back-logo-breathe {
  0%, 100% { transform: translate(0,0) translateZ(2px) scale(1);    filter: brightness(1.05); }
  50%      { transform: translate(0,0) translateZ(2px) scale(1.04); filter: brightness(1.18); }
}

/* Soft floor-shadow under the phone that subtly squashes with the spin. */
.app-phone-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 70%;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  animation: ob-phone-shadow 9s cubic-bezier(.7,.02,.3,1) infinite;
}

@keyframes ob-phone-shadow {
  0%, 16%, 88%, 100% { transform: translateX(-50%) scaleX(1)   scaleY(1);   opacity: .55; }
  30%, 74%           { transform: translateX(-50%) scaleX(.62) scaleY(.7);  opacity: .35; }
  44%, 60%           { transform: translateX(-50%) scaleX(1)   scaleY(1);   opacity: .55; }
}

.app-phone-showcase:hover .app-phone-rotator,
.app-phone-showcase:hover .app-phone-frame::after,
.app-phone-showcase:hover .app-phone-backplate img,
.app-phone-showcase:hover ~ * { animation-play-state: paused; }

/* ---- Mobile: same physics, lighter perspective & depth ---- */
@media (max-width: 959px) {
  .app-phone-stage {
    --phone-depth: 22px;
    perspective: 1100px !important;
    perspective-origin: 50% 44%;
  }
  .app-phone-rotator {
    animation: ob-phone-spin 10s cubic-bezier(.7,.02,.3,1) infinite !important;
  }
  .app-phone-side--front,
  .app-phone-side--back {
    display: block !important;
  }
  .app-phone-frame::after { animation-duration: 10s; }
  .app-phone-stage::after { animation-duration: 10s; bottom: -28px; height: 22px; }
}

@media (max-width: 420px) {
  .app-phone-stage {
    --phone-depth: 20px;
    perspective: 940px !important;
  }
  .app-phone-rotator { animation-duration: 11s !important; }
  .app-phone-frame::after { animation-duration: 11s; }
  .app-phone-stage::after { animation-duration: 11s; }
}

/* ===================================================================
   Refined motion across the page (with attention to mobile)
=================================================================== */

/* Reveal: snappier curve, gentle slide up, no horizontal jitter. */
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .65s cubic-bezier(.2,.7,.2,1),
    transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* A soft breathing on hero glows that costs nothing. */
@keyframes ob-breathe {
  0%, 100% { opacity: .55; transform: translate3d(0,0,0) scale(1); }
  50%      { opacity: .78; transform: translate3d(0,-6px,0) scale(1.03); }
}

@media (max-width: 959px) {
  /* Drop expensive blurred nebulas to one + lower opacity for perf. */
  .bg-nebula--c { display: none !important; }
  .bg-nebula--a,
  .bg-nebula--b { opacity: .28 !important; filter: blur(28px); }

  /* Hero phones: lighter rotation extremes, smoother bob. */
  .phone--left,
  .phone--right { transform-origin: 50% 80%; }

  .hero-cluster__glow {
    animation: ob-breathe 11s ease-in-out infinite !important;
  }

  /* Marquee: gentler speed; the band feels less hectic on small screens. */
  .hero-marquee__track { animation-duration: 96s !important; }

  /* Verses: slower, calmer drift. */
  .bg-verses span { animation-duration: 34s !important; }

  /* Card tap feedback (replaces hover that doesn't fire on mobile). */
  .gallery-card,
  .article {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  }
  .gallery-card:active,
  .article:active {
    transform: translateY(2px) scale(.992);
  }

  /* Nav CTA pulse — only when it enters viewport. */
  .nav-cta {
    transition: transform .28s ease, box-shadow .28s ease;
  }
  .nav-cta:active { transform: scale(.97); }

  /* Mobile reveal: a touch faster + bigger initial offset for clarity. */
  .reveal { transform: translate3d(0, 26px, 0); }
  .reveal { transition-duration: .55s, .68s; }

  /* Principle numerals: subtle entrance accent. */
  .principle.is-visible .principle__num {
    animation: ob-num-pop .8s cubic-bezier(.2,.8,.2,1) both .15s;
  }
  @keyframes ob-num-pop {
    0%   { transform: translateY(8px) scale(.94); opacity: 0; }
    100% { transform: translateY(0)   scale(1);   opacity: 1; }
  }
}

/* Touch-targets feedback for buttons everywhere. */
.btn { transition: transform .2s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease; }
.btn:active { transform: translateY(1px) scale(.98); }

/* Honor reduced-motion globally — overrides everything above. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .app-phone-rotator { animation: none !important; transform: rotateY(-8deg) rotateX(2deg) !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}


/* ===================================================================
   PATCH 2026-05-15 · v7
   ▸ Hero cluster: remove the notch + heavy bezel so the actual
     screenshots fill the frame edge-to-edge (the prints already
     carry their own phone chrome).
   ▸ Rotating phone back: perfectly centered logo + breathe that
     doesn't break the translate(-50%, -50%).
   ▸ Drag-to-rotate affordance on touch + mouse.
=================================================================== */

/* --- Hero cluster phones: thin glass, no notch, full screenshot --- */
.phone__frame {
  padding: 0 !important;
  border-radius: 30px !important;
  background: transparent !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 22px 56px rgba(0,0,0,.45),
    0 0 38px rgba(94, 227, 232, .07) !important;
  overflow: hidden;
}
.phone__frame::before { display: none !important; content: none !important; }
.phone__frame img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 30px !important;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.phone__frame--xl { border-radius: 32px !important; }
.phone__frame--xl img { border-radius: 32px !important; }

/* Same applies to mini-phones / gallery cards that share the chrome. */
.gallery-card__phone img,
.mini-phone .phone__frame img { object-position: center top; }

/* --- Rotating phone back: centered logo with proper breathing --- */
.app-phone-backplate {
  display: block !important;
  position: absolute;
  inset: 0;
}
.app-phone-backplate img {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: clamp(78px, 32%, 120px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 34px rgba(94,227,232,.28);
  transform: translate3d(-50%, -50%, 2px) scale(1) !important;
  transform-origin: center center !important;
  animation: ob-back-logo-breathe 6.4s ease-in-out infinite !important;
}

/* Override the breathe to preserve the centering translate. */
@keyframes ob-back-logo-breathe {
  0%, 100% { transform: translate3d(-50%, -50%, 2px) scale(1);    filter: brightness(1.05); }
  50%      { transform: translate3d(-50%, -50%, 2px) scale(1.05); filter: brightness(1.20); }
}

/* The inset ring shouldn't fight with the logo. */
.app-phone-backplate::before {
  inset: 18px !important;
  border-radius: 28px !important;
}

/* --- Drag affordance: cursor + tiny prompt --- */
.app-phone-showcase { touch-action: pan-y; }
.app-phone-stage    { cursor: grab; touch-action: pan-y; user-select: none; }
.app-phone-stage.is-dragging { cursor: grabbing; }
.app-phone-stage.is-dragging .app-phone-rotator { animation: none !important; }

/* Subtle "arraste" hint that fades out after first interaction. */
.app-phone-showcase::after {
  content: "↔  arraste para girar";
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: .55;
  pointer-events: none;
  animation: ob-hint 4.2s ease-in-out infinite;
}
.app-phone-showcase.has-interacted::after { display: none; }

@keyframes ob-hint {
  0%, 100% { opacity: .35; transform: translateX(-50%) translateY(0); }
  50%      { opacity: .75; transform: translateX(-50%) translateY(-3px); }
}

@media (hover: none) and (pointer: coarse) {
  .app-phone-showcase::after {
    content: "← arraste para girar →";
    font-size: 11px;
  }
}


/* Reduced motion safety net (placed last so it wins). */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .app-phone-rotator { animation: none !important; transform: rotateY(-8deg) rotateX(2deg) !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}


/* ===================================================================
   PATCH 2026-05-15 · v8
   ▸ Hero mobile: gap menor entre menu e título; padding mais justo.
   ▸ Cluster de 3 celulares: bordas mais "smartphone-like" (menos
     arredondadas), sem dupla moldura sobre as screenshots reais.
   ▸ Drag-to-rotate: direção corrigida + reset de transform pós-snap
     para a CSS animation reassumir limpo.
=================================================================== */

/* --- Hero: gap menor entre header e título no mobile --- */
@media (max-width: 959px) {
  .hero { padding-top: 86px !important; }
  .hero-cluster { margin-top: 14px !important; }
  .hero h1 { margin-top: 6px !important; }
  .hero .btn-row { margin-top: 18px !important; }
  .hero > .container > .brand-seal { margin-top: -8px !important; }
  .hero .container { row-gap: 12px !important; }
}
@media (max-width: 420px) {
  .hero { padding-top: 74px !important; }
  .hero h1 { font-size: clamp(38px, 12.4vw, 56px) !important; line-height: 1.0 !important; }
}

/* --- Cluster: visual de smartphone real, sem moldura redundante --- */
.phone__frame {
  border-radius: 22px !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 1px 0 rgba(255,255,255,.06) inset,
    0 20px 50px rgba(0,0,0,.55),
    0 0 28px rgba(94, 227, 232, .08) !important;
  background: #0a0f17 !important;
  overflow: hidden;
}
.phone__frame img {
  border-radius: 22px !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
}
.phone__frame--xl,
.phone__frame--xl img { border-radius: 24px !important; }

/* Aspect ratio mais próximo de smartphone real (era 9/18 ≈ 1:2; usar 9/19.5 fica mais autêntico) */
.phone__frame { aspect-ratio: 9 / 19.5 !important; }

/* Mini-phones nos cards da galeria: mesmo tratamento. */
.gallery-card__phone {
  border-radius: 22px !important;
  overflow: hidden;
}
.gallery-card__phone img {
  border-radius: 22px !important;
  object-position: center top;
}

@media (max-width: 420px) {
  .phone__frame,
  .phone__frame img,
  .phone__frame--xl,
  .phone__frame--xl img { border-radius: 18px !important; }
}


/* ===================================================================
   PATCH 2026-05-15 · v9
   ▸ Hero cluster: proper smartphone mockup (chassis + notch + rim).
     Phones are fully static — no bob, no parallax.
   ▸ Drag interaction removed from rotating phone (CSS cleanup).
   ▸ Section spacing reduced across the board.
=================================================================== */

/* ── 1. Hero phones: kill all animation ── */
.phone--center,
.phone--left,
.phone--right {
  animation: none !important;
  transition: none !important;
}
/* Restore clean static transforms for each position */
.phone--center { transform: translateX(-50%) !important; }
.phone--left   { transform: rotate(-8deg) !important; }
.phone--right  { transform: rotate(8deg)  !important; }

@media (min-width: 960px) {
  .phone--center { transform: translateX(-50%) rotateY(0deg)   !important; }
  .phone--left   { transform: rotate(-10deg)   rotateY(14deg)  !important; }
  .phone--right  { transform: rotate(10deg)    rotateY(-14deg) !important; }
}

.hero-cluster__glow { animation: none !important; }

/* ── 2. Smartphone chassis — proper phone frame ── */

/* Reset the v8 patch that nuked the frame */
.phone__frame {
  padding: 10px 8px !important;
  border-radius: 22px !important;
  background: #0d1521 !important;
  overflow: visible !important;  /* let notch show above frame */
  box-shadow:
    /* outer rim — subtle metallic edge */
    0 0 0 1px rgba(255,255,255,.13),
    /* inner screen bezel */
    inset 0 0 0 1px rgba(0,0,0,.7),
    /* top highlight (like a polished edge) */
    inset 0 1px 0 rgba(255,255,255,.08),
    /* drop shadow + cyan glow */
    0 28px 64px rgba(0,0,0,.65),
    0 0 32px rgba(94,227,232,.08) !important;
  /* side buttons via outline hack on a pseudo we can't use here;
     handled below with an extra wrapper shadow trick */
  position: relative;
}

/* Notch — Dynamic Island pill */
.phone__frame::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: 14px !important;
  left: 50% !important;
  width: 70px !important;
  height: 19px !important;
  transform: translateX(-50%) !important;
  background: #050a10 !important;
  border-radius: 999px !important;
  z-index: 4 !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.06) !important;
}

/* Screen sits inside the chassis with a small gap */
.phone__frame img {
  border-radius: 14px !important;
  object-fit: cover !important;
  object-position: center top !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* XL frame (center phone) */
.phone__frame--xl {
  border-radius: 24px !important;
  padding: 11px 9px !important;
}
.phone__frame--xl img { border-radius: 15px !important; }
.phone__frame--xl::before { width: 78px !important; height: 21px !important; top: 15px !important; }

/* Left/right side buttons: use a box-shadow trick on the .phone wrapper */
/* Power button right side (visible on left/right tilted phones) */
.phone--left  .phone__frame,
.phone--right .phone__frame {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.13),
    inset 0 0 0 1px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 28px 64px rgba(0,0,0,.65),
    0 0 32px rgba(94,227,232,.08),
    /* simulated power button on right edge */
    4px -28px 0 -2px #1a2638,
    4px -14px 0 -2px #1a2638,
    /* volume on left edge */
    -4px 22px 0 -2px #1a2638,
    -4px 36px 0 -2px #1a2638 !important;
}

/* Gallery cards — same treatment */
.gallery-card__phone {
  border-radius: 20px !important;
  overflow: hidden !important;
}
.gallery-card__phone img {
  border-radius: 18px !important;
  object-position: center top !important;
}

/* ── 3. Remove drag affordances from rotating phone ── */
.app-phone-showcase { touch-action: auto !important; }
.app-phone-showcase::after { display: none !important; content: none !important; }
.app-phone-stage {
  cursor: default !important;
  touch-action: auto !important;
  user-select: auto !important;
}
.app-phone-stage.is-dragging { cursor: default !important; }

/* ── 4. Section spacing — tighter rhythm ── */
.section { padding: 64px 0 !important; }
.section--tight { padding: 40px 0 !important; }

.screens-parallax { padding-top: 48px !important; padding-bottom: 64px !important; }
.manifesto { padding-top: 56px !important; padding-bottom: 56px !important; }
.gallery { padding-bottom: 72px !important; }
.cta { padding: 72px 0 !important; }
.contact { padding-bottom: 72px !important; }
.credibility { padding: 32px 0 !important; }

@media (max-width: 959px) {
  .section { padding: 46px 0 !important; }
  .screens-parallax { padding-top: 36px !important; padding-bottom: 48px !important; }
  .manifesto { padding-top: 40px !important; padding-bottom: 40px !important; }
  .gallery { padding-bottom: 52px !important; }
  .cta { padding: 52px 0 !important; }
  .contact { padding-bottom: 52px !important; }
  .credibility { padding: 22px 0 !important; }
}

@media (max-width: 420px) {
  .section { padding: 36px 0 !important; }
  .phone__frame { padding: 8px 7px !important; }
  .phone__frame::before { width: 58px !important; height: 16px !important; top: 11px !important; }
}


/* ===================================================================
   PATCH 2026-05-15 · v10
   ▸ Hero phones: all 3 use identical --xl frame (no size difference).
   ▸ Remove side-button box-shadow hack (was making side phones odd).
   ▸ Phone-nav arrows: prev/next for rotating phone.
   ▸ Gallery carousel JS remnants cleaned up (CSS side).
=================================================================== */

/* ── All hero phones identical frame ── */
.phone--left  .phone__frame,
.phone--right .phone__frame {
  padding: 11px 9px !important;
  border-radius: 24px !important;
  /* remove side button simulation */
  box-shadow:
    0 0 0 1px rgba(255,255,255,.13),
    inset 0 0 0 1px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 28px 64px rgba(0,0,0,.65),
    0 0 32px rgba(94,227,232,.08) !important;
}
.phone--left  .phone__frame img,
.phone--right .phone__frame img {
  border-radius: 15px !important;
}
.phone--left  .phone__frame::before,
.phone--right .phone__frame::before {
  width: 78px !important;
  height: 21px !important;
  top: 15px !important;
}

/* ── Phone-nav arrows (prev / next) ── */
.app-phone-showcase {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 28px !important;
}

.phone-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(13,21,35,.72);
  color: rgba(255,255,255,.70);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .18s ease;
  z-index: 10;
  position: relative;
}
.phone-nav:hover {
  background: rgba(94,227,232,.18);
  border-color: rgba(94,227,232,.45);
  color: #fff;
  transform: scale(1.08);
}
.phone-nav:active {
  transform: scale(.96);
}
.phone-nav svg {
  display: block;
}

@media (max-width: 959px) {
  .app-phone-showcase {
    gap: 16px !important;
  }
  .phone-nav {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 420px) {
  .app-phone-showcase {
    gap: 10px !important;
  }
  .phone-nav {
    width: 34px;
    height: 34px;
  }
  .phone-nav svg { width: 8px; height: 14px; }
}

/* ── Gallery section gone: hide any lingering references ── */
.gallery { display: none !important; }


/* ===================================================================
   PATCH 2026-05-15 · v11
   ▸ Notch: sits in top bezel padding — never covers screenshot content.
   ▸ Side phones: bigger (34% wide) & same chassis as center.
   ▸ Arrows: larger (56px), bolder style.
   ▸ Arrow-click spin: one-shot animation ob-phone-spin-once.
   ▸ Orbit cards: hidden (display:none on container).
=================================================================== */

/* ── Orbit cards: completely hidden ── */
.orbit-cards { display: none !important; }

/* ── Notch fix: give the frame enough top padding so notch never overlaps image ── */
.phone__frame,
.phone__frame--xl,
.phone--left  .phone__frame,
.phone--right .phone__frame {
  padding: 32px 9px 11px !important; /* 32px top = notch lives in bezel, not over image */
}

.phone__frame::before,
.phone__frame--xl::before,
.phone--left  .phone__frame::before,
.phone--right .phone__frame::before {
  top: 8px !important;
  width: 56px !important;
  height: 14px !important;
  background: #020509 !important;
}

.phone__frame img,
.phone__frame--xl img,
.phone--left  .phone__frame img,
.phone--right .phone__frame img {
  border-radius: 13px !important;
  object-position: center top !important;
}

/* ── Side phones bigger ── */
@media (max-width: 959px) {
  .phone--left,
  .phone--right  { width: 34% !important; }
  .phone--center { width: 44% !important; }
}
@media (min-width: 960px) {
  .phone--left  { width: 34% !important; }
  .phone--right { width: 34% !important; }
  .phone--center{ width: 42% !important; }
}

/* ── Arrows: larger ── */
.phone-nav {
  width: 56px !important;
  height: 56px !important;
  border-width: 1.5px !important;
}
.phone-nav svg { width: 13px !important; height: 22px !important; }

@media (max-width: 959px) {
  .phone-nav { width: 48px !important; height: 48px !important; }
  .phone-nav svg { width: 11px !important; height: 19px !important; }
}
@media (max-width: 420px) {
  .phone-nav { width: 40px !important; height: 40px !important; }
  .phone-nav svg { width: 9px !important; height: 16px !important; }
}

/* ── One-shot spin animation on arrow click ── */
.app-phone-rotator.is-spinning-once {
  animation: ob-phone-spin-once 1.8s cubic-bezier(.7,.02,.3,1) forwards !important;
}

@keyframes ob-phone-spin-once {
  0%   { transform: rotateY(-8deg)  rotateX(2deg); }
  35%  { transform: rotateY(90deg)  rotateX(2deg); }   /* edge — image swaps here */
  50%  { transform: rotateY(180deg) rotateX(2deg); }   /* back face */
  75%  { transform: rotateY(270deg) rotateX(2deg); }   /* edge again */
  100% { transform: rotateY(352deg) rotateX(2deg); }   /* front with new image */
}


/* ===================================================================
   PATCH 2026-05-15 · v12
   ▸ Left arrow: reverse-direction spin keyframe.
   ▸ Arrows: bigger (68px desktop, 54px mobile).
   ▸ Rotating phone: larger stage, arrows closer.
=================================================================== */

/* ── Larger arrows ── */
.phone-nav {
  width: 68px !important;
  height: 68px !important;
}
.phone-nav svg { width: 16px !important; height: 26px !important; }

@media (max-width: 959px) {
  .phone-nav { width: 54px !important; height: 54px !important; }
  .phone-nav svg { width: 13px !important; height: 22px !important; }
}
@media (max-width: 420px) {
  .phone-nav { width: 44px !important; height: 44px !important; }
  .phone-nav svg { width: 10px !important; height: 18px !important; }
}

/* ── Arrows closer to phone ── */
.app-phone-showcase { gap: 18px !important; }
@media (max-width: 959px) { .app-phone-showcase { gap: 10px !important; } }

/* ── Rotating phone: larger ── */
.app-phone-stage {
  --phone-w: min(50vw, 320px) !important;
  --phone-depth: 32px !important;
  perspective: 1500px !important;
}
@media (max-width: 959px) {
  .app-phone-stage {
    --phone-w: clamp(220px, 62vw, 280px) !important;
    --phone-depth: 26px !important;
    perspective: 1100px !important;
  }
}
@media (max-width: 420px) {
  .app-phone-stage {
    --phone-w: clamp(200px, 60vw, 240px) !important;
  }
}

/* ── Reverse spin for left arrow ── */
.app-phone-rotator.is-spinning-once-reverse {
  animation: ob-phone-spin-once-reverse 1.8s cubic-bezier(.7,.02,.3,1) forwards !important;
}

@keyframes ob-phone-spin-once-reverse {
  0%   { transform: rotateY(-8deg)   rotateX(2deg); }
  35%  { transform: rotateY(-90deg)  rotateX(2deg); }
  50%  { transform: rotateY(-180deg) rotateX(2deg); }
  75%  { transform: rotateY(-270deg) rotateX(2deg); }
  100% { transform: rotateY(-368deg) rotateX(2deg); }
}


/* ===================================================================
   PATCH 2026-05-15 · v13
   ▸ html/body: dark background base — prevents white flash on scroll.
   ▸ Mobile: overscroll-behavior none, GPU layer on body, lighter FX.
   ▸ Hero mobile: explicit centering for all elements.
   ▸ Nebulas off on mobile (too heavy); canvas fps kept at 15.
=================================================================== */

/* ── Prevent white flash: dark base color on root ── */
html {
  background: #04070d !important;
}
body {
  background: #04070d !important;
}

/* ── GPU compositing + no overscroll bounce exposing white ── */
@media (max-width: 959px) {
  html {
    overscroll-behavior: none;
    overscroll-behavior-y: none;
  }
  body {
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
  }

  /* Nebulas completely off on mobile — too heavy for GPU */
  .bg-nebula { display: none !important; }

  /* Hero text: all children centered on mobile */
  .hero-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-text .hero-pill,
  .hero-text h1,
  .hero-text .hero-lede,
  .hero-text .btn-row,
  .hero-text .hero-metrics { 
    width: 100%;
    text-align: center;
  }
  .hero-text .btn-row {
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .hero-text .btn-row .btn {
    width: min(100%, 340px) !important;
    max-width: calc(100vw - 48px) !important;
  }
  .hero-text .hero-metrics {
    justify-content: center !important;
  }
  .hero-text .hero-lede {
    max-width: 100% !important;
    text-align: center !important;
  }

  /* Brand seal: force centering */
  .hero > .container > .brand-seal {
    margin-left: auto !important;
    margin-right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: relative !important;
  }

  /* Hero-cluster: perfect center */
  .hero-cluster {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Sections: remove expensive contain on mobile */
  .screens-parallax,
  .app-phone-showcase {
    contain: none !important;
  }

  /* Reduce blur on all elements for performance */
  .hero-cluster__glow { filter: blur(24px) !important; }

  /* Canvas: already at 24fps; lower to 15fps by increasing gap */
  /* (Handled in JS via mobileFrameGap — CSS cannot control this) */
}

@media (max-width: 420px) {
  .hero-text .btn-row .btn {
    width: min(100%, 300px) !important;
  }
}


/* ===================================================================
   PATCH 2026-05-15 · v14
   ▸ Fix mobile scroll: remove transform on body (breaks iOS scroll).
   ▸ Use html-level overscroll only; body stays transform-free.
   ▸ Reduce hero top padding so title is closer to nav bar.
=================================================================== */

/* ── Scroll fix: undo the body transform from v13 ── */
@media (max-width: 959px) {
  body {
    transform: none !important;
    -webkit-transform: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
  }
  html {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
}

/* ── Hero: tighter gap between nav and title ── */
@media (max-width: 959px) {
  .hero { padding-top: 68px !important; }
  .hero .container { row-gap: 8px !important; }
  .hero h1 { margin-top: 4px !important; }
}
@media (max-width: 420px) {
  .hero { padding-top: 60px !important; }
}


/* ===================================================================
   PATCH 2026-05-15 · v15 — FIX MOBILE SCROLL
   A combinação overflow-x:hidden no <html> + overscroll-behavior no
   <html> trava o scroll nativo no iOS Safari e Android WebView.
   Regra: NUNCA toque overflow no <html>. Aplique só no <body>.
=================================================================== */
@media (max-width: 959px) {
  /* Reseta html para defaults naturais do viewport */
  html {
    overflow: visible !important;
    overscroll-behavior: auto !important;
    height: auto !important;
  }
  /* Body: só clip horizontal, scroll vertical livre */
  body {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    overscroll-behavior: auto !important;
    overscroll-behavior-y: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
  }
  /* Canvas e bg-stage: pointer-events none garante que não interceptam touch */
  .bg-stage,
  .bg-canvas {
    pointer-events: none !important;
    touch-action: none !important;
  }
}

/* ===================================================================
   PATCH 2026-05-15 · v16 — mobile scroll definitivo + hero mais alto
   ▸ Libera a rolagem vertical no celular mesmo se o menu deixou classe residual.
   ▸ Canvas/elementos fixos não interceptam gesto de toque.
   ▸ Aproxima o título principal da barra superior sem sobrepor o header.
=================================================================== */
@media (max-width: 959px) {
  html {
    width: 100% !important;
    min-height: 100% !important;
    height: auto !important;
    overflow-y: scroll !important;
    overflow-x: clip !important;
    overscroll-behavior: auto !important;
    touch-action: auto !important;
    scroll-behavior: smooth;
  }

  body {
    width: 100% !important;
    min-height: 100dvh !important;
    height: auto !important;
    position: relative !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: auto !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
    transform: none !important;
    -webkit-transform: none !important;
  }

  /* Segurança: se o menu mobile deixar a classe no body, a página não fica travada. */
  body.no-overflow {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
  }

  main,
  #topo,
  .site-footer {
    overflow: visible !important;
    touch-action: pan-y !important;
  }

  #topo {
    min-height: calc(100dvh + 2px) !important;
  }

  .bg-stage,
  .bg-stage *,
  .bg-canvas,
  .bg-grid,
  .bg-vignette,
  .bg-verses,
  .bg-verses * {
    pointer-events: none !important;
    touch-action: pan-y !important;
  }

  .mobile-menu {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
  }

  .mobile-menu:not(.is-open) {
    display: none !important;
  }

  .site-header {
    padding: 8px 12px 8px !important;
  }

  .site-header__inner {
    min-height: 54px !important;
    padding: 6px 8px 6px 12px !important;
  }

  .hero {
    padding-top: 72px !important;
  }

  .hero .container {
    row-gap: 6px !important;
  }

  .hero h1 {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
  }

  .hero p.hero-lede {
    margin-bottom: 18px !important;
  }

  .hero .btn-row {
    margin-top: 14px !important;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .site-header__inner {
    min-height: 52px !important;
  }

  .hero {
    padding-top: 68px !important;
  }

  .hero h1 {
    margin-bottom: 10px !important;
  }
}


/* ===================================================================
   PATCH 2026-05-15 · v17 — ajustes finais solicitados no mobile
   ▸ Menor distância entre o menu e o título principal.
   ▸ Proposta teológica centralizada no mobile.
   ▸ Rodapé mobile em duas colunas, com a marca ocupando a largura total.
   ▸ Páginas legais com rolagem nativa e topo mais compacto.
=================================================================== */
@media (max-width: 959px) {
  html {
    min-height: 100% !important;
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: clip !important;
    overscroll-behavior-y: auto !important;
    touch-action: auto !important;
  }

  body {
    min-height: 100dvh !important;
    height: auto !important;
    max-width: 100vw !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior-y: auto !important;
    touch-action: auto !important;
    -webkit-overflow-scrolling: touch !important;
    transform: none !important;
    -webkit-transform: none !important;
  }

  body.no-overflow {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
  }

  main,
  .hero,
  .legal,
  .manifesto,
  .site-footer {
    overflow: visible !important;
    touch-action: pan-y !important;
  }

  .site-header {
    padding: 6px 12px 6px !important;
  }

  .site-header__inner {
    min-height: 50px !important;
    padding: 5px 7px 5px 10px !important;
  }

  .brand img,
  .brand__mark,
  .brand__mark img {
    width: 42px !important;
    height: 42px !important;
  }

  .brand-text {
    font-size: 17px !important;
  }

  .brand-text span {
    font-size: 10px !important;
    letter-spacing: .24em !important;
  }

  .nav-toggle {
    width: 44px !important;
    height: 44px !important;
  }

  /* A dobra inicial fica mais próxima da barra superior sem encostar no menu. */
  .hero {
    padding-top: 82px !important;
  }

  .hero .container {
    row-gap: 4px !important;
  }

  .hero h1 {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }

  .hero p.hero-lede {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
  }

  .hero .btn-row {
    margin-top: 12px !important;
  }

  /* Proposta teológica: título, marcador e texto centralizados no mobile. */
  .manifesto .container,
  .manifesto .reveal,
  .manifesto__quote,
  .manifesto__body {
    text-align: center !important;
  }

  .manifesto .eyebrow {
    display: inline-flex !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .manifesto__quote {
    max-width: 12.5ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-wrap: balance !important;
  }

  .manifesto__body {
    max-width: 34ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.68 !important;
  }

  .principles {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .principle {
    text-align: left !important;
  }

  /* Rodapé mobile em duas colunas, preservando a marca em largura total. */
  .site-footer {
    padding: 42px 0 28px !important;
  }

  .footer-top {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 22px !important;
    align-items: start !important;
  }

  .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .footer-brand p {
    max-width: 38ch !important;
    font-size: 14.5px !important;
  }

  .footer-col h4 {
    margin-bottom: 12px !important;
  }

  .footer-col ul {
    gap: 11px !important;
  }

  .footer-col a {
    font-size: 15px !important;
  }

  .footer-col:last-child {
    grid-column: 1 / -1 !important;
  }

  .footer-col:last-child ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px 18px !important;
  }

  .footer-bottom {
    gap: 10px !important;
    justify-content: flex-start !important;
  }

  /* Páginas legais: rolagem livre e bloco inicial mais próximo do header. */
  body.legal-page {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    touch-action: auto !important;
  }

  body.legal-page .bg-canvas,
  body.legal-page .bg-nebula {
    display: none !important;
  }

  .legal {
    min-height: auto !important;
    padding-top: 86px !important;
    padding-bottom: 64px !important;
  }

  .legal .container {
    max-width: 100% !important;
  }

  .legal__back {
    margin-bottom: 18px !important;
  }

  .legal__title {
    margin-top: 10px !important;
    margin-bottom: 22px !important;
    font-size: clamp(42px, 13vw, 58px) !important;
  }

  .legal__meta {
    margin-bottom: 28px !important;
    padding-bottom: 18px !important;
    gap: 12px 18px !important;
  }

  .legal__body {
    max-width: 100% !important;
    padding-bottom: 48px !important;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 78px !important;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 54px) !important;
  }

  .manifesto__quote {
    font-size: clamp(36px, 12vw, 48px) !important;
  }

  .legal {
    padding-top: 80px !important;
  }
}

@media (max-width: 360px) {
  .footer-top {
    grid-template-columns: 1fr !important;
  }

  .footer-col:last-child,
  .footer-brand {
    grid-column: auto !important;
  }

  .footer-col:last-child ul {
    grid-template-columns: 1fr !important;
  }
}

/* ===================================================================
   PATCH 2026-05-15 · v17 refeita
   ▸ Mobile: marcadores das seções alinhados à esquerda.
   ▸ Primeira dobra mais próxima da barra de menu.
   ▸ Botão do formulário de contato centralizado.
   ▸ Páginas Política/Termos com rolagem nativa e topo mais compacto.
=================================================================== */
@media (max-width: 959px) {
  /* Rolagem nativa preservada também quando o menu móvel abre/fecha. */
  html {
    height: auto !important;
    min-height: 100% !important;
    overflow-y: auto !important;
    overflow-x: clip !important;
    overscroll-behavior-y: auto !important;
    touch-action: auto !important;
  }

  body,
  body.no-overflow,
  body.menu-open,
  body.is-menu-open,
  body.nav-open {
    height: auto !important;
    min-height: 100dvh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior-y: auto !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
    transform: none !important;
    -webkit-transform: none !important;
  }

  .bg-stage,
  .bg-stage *,
  .bg-canvas,
  .bg-grid,
  .bg-vignette,
  .bg-verses,
  .bg-verses * {
    pointer-events: none !important;
  }

  /* Primeira dobra: reduz a distância visual entre header e chamada principal. */
  .site-header {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .site-header__inner {
    min-height: 48px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .hero {
    padding-top: 58px !important;
    padding-bottom: 8px !important;
  }

  .hero .container {
    row-gap: 4px !important;
  }

  .hero h1 {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
  }

  .hero p.hero-lede {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
  }

  .hero .btn-row {
    margin-top: 10px !important;
  }

  /* Marcadores/títulos numerados das seções sempre à esquerda no mobile. */
  .section > .container > .reveal:first-child,
  .screens-parallax > .container.reveal,
  .manifesto > .container > .reveal:first-child,
  .contact__intro {
    text-align: left !important;
  }

  .section > .container > .reveal:first-child .eyebrow,
  .screens-parallax > .container.reveal .eyebrow,
  .manifesto > .container > .reveal:first-child .eyebrow,
  .contact__intro .eyebrow {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  .section > .container > .reveal:first-child .section-title,
  .section > .container > .reveal:first-child .section-lede,
  .screens-parallax > .container.reveal .section-title,
  .screens-parallax > .container.reveal .section-lede,
  .contact__intro .section-title,
  .contact__intro .section-lede {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Mantém a frase teológica e o parágrafo centralizados, como solicitado antes. */
  .manifesto__quote,
  .manifesto__body {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .manifesto__quote {
    max-width: 13ch !important;
  }

  .manifesto__body {
    max-width: 34ch !important;
  }

  /* Contato: botão centralizado de verdade dentro da box. */
  .contact__form {
    align-items: stretch !important;
  }

  .contact__form .form-foot {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .contact__form .form-status {
    order: 2 !important;
    width: 100% !important;
    text-align: center !important;
  }

  .contact__form .form-foot .btn,
  .contact__form .form-foot button[type="submit"] {
    order: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
  }

  /* Rodapé: duas colunas no mobile, com a marca ocupando a largura total. */
  .footer-top {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 22px !important;
    align-items: start !important;
  }

  .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .footer-col:last-child {
    grid-column: 1 / -1 !important;
  }

  .footer-col:last-child ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px 18px !important;
  }

  /* Política e Termos: rolagem livre e topo mais compacto. */
  body.legal-page,
  body.legal-page.no-overflow,
  body.legal-page.menu-open,
  body.legal-page.is-menu-open,
  body.legal-page.nav-open {
    position: relative !important;
    height: auto !important;
    min-height: 100dvh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.legal-page .bg-stage,
  body.legal-page .bg-stage *,
  body.legal-page .bg-canvas,
  body.legal-page .bg-nebula,
  body.legal-page .bg-grid,
  body.legal-page .bg-vignette {
    pointer-events: none !important;
  }

  body.legal-page .bg-canvas,
  body.legal-page .bg-nebula {
    display: none !important;
  }

  body.legal-page main.legal,
  body.legal-page .legal,
  body.legal-page .legal .container,
  body.legal-page .legal__body {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    touch-action: pan-y !important;
  }

  body.legal-page .legal {
    min-height: auto !important;
    padding-top: 64px !important;
    padding-bottom: 60px !important;
  }

  body.legal-page .legal__back {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
  }

  body.legal-page .legal__title {
    margin-top: 8px !important;
    margin-bottom: 18px !important;
  }

  body.legal-page .legal__meta {
    margin-bottom: 24px !important;
    padding-bottom: 14px !important;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 52px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 11.8vw, 52px) !important;
  }

  body.legal-page .legal {
    padding-top: 58px !important;
  }

  .contact__form .form-foot .btn,
  .contact__form .form-foot button[type="submit"] {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
  }
}

@media (max-width: 360px) {
  .footer-top {
    grid-template-columns: 1fr !important;
  }

  .footer-brand,
  .footer-col:last-child {
    grid-column: auto !important;
  }

  .footer-col:last-child ul {
    grid-template-columns: 1fr !important;
  }
}

/* ===================================================================
   PATCH LIMPO 2026-05-15 · v17 final
   Objetivo: manter a v17 sem duplicar arquivos, melhorar a resposta
   inicial e criar respiro entre os três celulares e a barra NOVO/2026.
=================================================================== */
@media (max-width: 959px) {
  .hero-cluster {
    margin-bottom: clamp(26px, 7.5vw, 46px) !important;
    transform: translateY(8px) !important;
  }

  .hero-aside--fixed {
    position: relative !important;
    z-index: 7 !important;
    margin-top: clamp(14px, 5vw, 30px) !important;
  }

  .hero-aside .hero-pill {
    position: relative !important;
    z-index: 8 !important;
    min-height: 42px !important;
    padding: 10px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .phone__frame img,
  .app-phone-screen,
  .gallery-card__phone img {
    content-visibility: auto;
  }
}

@media (max-width: 420px) {
  .hero-cluster {
    margin-bottom: clamp(34px, 10vw, 54px) !important;
    transform: translateY(2px) !important;
  }

  .hero-aside--fixed {
    margin-top: 18px !important;
  }
}

@media (max-width: 360px) {
  .hero-cluster {
    margin-bottom: 58px !important;
  }

  .phone--center { width: 42% !important; }
  .phone--left,
  .phone--right { width: 31% !important; top: 27% !important; }
}

/* ===================================================================
   PATCH 2026-05-15 · v17.1
   ▸ Logo central substituído sem alterar os demais logos do site.
   ▸ Botões principais padronizados com a primeira dobra.
=================================================================== */
:root {
  --ob-main-btn-width: 260px;
  --ob-main-btn-height: 54px;
  --ob-main-btn-pad: 15px 24px;
  --ob-main-btn-font: 15px;
}

.hero .btn-row,
.cta__buttons {
  justify-content: center !important;
  align-items: center !important;
}

.hero .btn-row .btn,
.cta__buttons .btn,
.contact__form .form-foot .btn,
.contact__form .form-foot button[type="submit"] {
  flex: 0 0 auto !important;
  width: var(--ob-main-btn-width) !important;
  max-width: 100% !important;
  min-height: var(--ob-main-btn-height) !important;
  padding: var(--ob-main-btn-pad) !important;
  font-size: var(--ob-main-btn-font) !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.contact__form .form-foot {
  justify-content: center !important;
}

@media (max-width: 959px) {
  :root {
    --ob-main-btn-width: 330px;
    --ob-main-btn-height: 50px;
    --ob-main-btn-pad: 13px 18px;
    --ob-main-btn-font: 14px;
  }

  .hero .btn-row,
  .cta__buttons,
  .contact__form .form-foot {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hero .btn-row .btn,
  .cta__buttons .btn,
  .contact__form .form-foot .btn,
  .contact__form .form-foot button[type="submit"] {
    width: min(100%, var(--ob-main-btn-width)) !important;
    max-width: calc(100vw - 48px) !important;
    white-space: normal !important;
  }
}

@media (max-width: 420px) {
  :root {
    --ob-main-btn-width: 300px;
  }
}

/* ===================================================================
   PATCH 2026-05-15 · v17.2
   Ajuste fino: logo central mais alto no mobile e botões uniformes.
=================================================================== */
:root {
  --ob-action-btn-width: 260px;
  --ob-action-btn-height: 54px;
}

.hero .btn-row .btn,
.cta__buttons .btn,
.contact__form .form-foot .btn,
.contact__form .form-foot button[type="submit"] {
  width: var(--ob-action-btn-width) !important;
  max-width: 100% !important;
  min-height: var(--ob-action-btn-height) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

@media (max-width: 959px) {
  :root {
    --ob-action-btn-width: min(82vw, 330px);
    --ob-action-btn-height: 50px;
  }

  .hero > .container > .brand-seal {
    margin-top: -58px !important;
    transform: translateY(-18px) !important;
  }

  .hero .btn-row,
  .cta__buttons,
  .contact__form .form-foot {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .hero .btn-row .btn,
  .cta__buttons .btn,
  .contact__form .form-foot .btn,
  .contact__form .form-foot button[type="submit"],
  .mobile-menu .btn {
    width: var(--ob-action-btn-width) !important;
    min-width: var(--ob-action-btn-width) !important;
    max-width: calc(100vw - 48px) !important;
    min-height: var(--ob-action-btn-height) !important;
    padding: 13px 18px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    text-align: center !important;
    align-self: center !important;
  }

  .mobile-menu .btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 420px) {
  :root {
    --ob-action-btn-width: min(82vw, 312px);
  }

  .hero > .container > .brand-seal {
    margin-top: -64px !important;
    transform: translateY(-22px) !important;
  }
}

/* ===================================================================
   PATCH 2026-05-15 · v17.3
   ▸ Corrige o deslocamento lateral do selo no mobile.
   ▸ Retorna ao eixo central e sobe apenas alguns pixels, preservando
     distância segura do botão “Ver proposta teológica”.
=================================================================== */
@media (max-width: 959px) {
  .hero > .container > .brand-seal {
    left: 50% !important;
    margin-top: -18px !important;
    transform: translateX(-50%) translateY(-4px) !important;
  }
}

@media (max-width: 420px) {
  .hero > .container > .brand-seal {
    margin-top: -20px !important;
    transform: translateX(-50%) translateY(-6px) !important;
  }
}

/* ===================================================================
   PATCH 2026-05-15 · v17.5
   Rodapé: colunas mobile com alinhamento lateral e copyright centralizado.
=================================================================== */
.footer-bottom {
  justify-content: center !important;
  text-align: center !important;
}

.footer-bottom span:first-child {
  color: var(--cyan) !important;
  text-align: center !important;
}

@media (min-width: 960px) {
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .footer-bottom span {
    width: 100% !important;
    text-align: center !important;
  }
}

@media (min-width: 361px) and (max-width: 959px) {
  .site-footer {
    text-align: initial !important;
  }

  .footer-brand,
  .footer-brand p,
  .footer-brand .brand {
    text-align: center !important;
  }

  .footer-brand {
    align-items: center !important;
  }

  .footer-top {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 22px !important;
    align-items: start !important;
  }

  .footer-top > .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .footer-top > .footer-col:nth-child(2) {
    text-align: left !important;
    justify-self: stretch !important;
  }

  .footer-top > .footer-col:nth-child(2) h4 {
    text-align: left !important;
  }

  .footer-top > .footer-col:nth-child(2) ul {
    align-items: flex-start !important;
  }

  .footer-top > .footer-col:nth-child(2) a {
    text-align: left !important;
  }

  .footer-top > .footer-col:nth-child(3) {
    text-align: right !important;
    justify-self: stretch !important;
  }

  .footer-top > .footer-col:nth-child(3) h4 {
    text-align: right !important;
  }

  .footer-top > .footer-col:nth-child(3) ul {
    align-items: flex-end !important;
  }

  .footer-top > .footer-col:nth-child(3) a {
    text-align: right !important;
  }

  .footer-top > .footer-col:nth-child(4) {
    grid-column: 1 / -1 !important;
    text-align: center !important;
  }

  .footer-top > .footer-col:nth-child(4) h4 {
    text-align: center !important;
  }

  .footer-top > .footer-col:nth-child(4) ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px 18px !important;
    align-items: start !important;
    justify-items: stretch !important;
  }

  .footer-top > .footer-col:nth-child(4) li:nth-child(odd) {
    justify-self: start !important;
    text-align: left !important;
  }

  .footer-top > .footer-col:nth-child(4) li:nth-child(even) {
    justify-self: end !important;
    text-align: right !important;
  }

  .footer-top > .footer-col:nth-child(4) li:nth-child(odd) a {
    text-align: left !important;
  }

  .footer-top > .footer-col:nth-child(4) li:nth-child(even) a {
    text-align: right !important;
  }
}
