/* =========================================================
   ADG Landing Page - global.css
   Mobile-first | Dark theme | Verde neon ADG
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #000;
  --bg-elev: #0a0a0a;
  --bg-card: #0d0d0d;
  --bg-card-hover: #131313;

  --accent: #a4f010;
  --accent-2: #c2ff2e;
  --accent-glow: rgba(164, 240, 16, 0.55);
  --accent-soft: rgba(164, 240, 16, 0.12);

  --border: rgba(164, 240, 16, 0.18);
  --border-strong: rgba(164, 240, 16, 0.45);

  --text: #fff;
  --text-muted: #b8b8b8;
  --text-faint: #6e6e6e;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --shadow-glow: 0 0 32px var(--accent-glow);
  --shadow-card: 0 10px 32px rgba(0, 0, 0, 0.55);

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* ---------- Background animado ---------- */
#rain-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(164, 240, 16, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(164, 240, 16, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0.85) 70%, #000 100%);
}

body > *:not(#rain-canvas):not(.bg-gradient):not(.float-wa) {
  position: relative;
  z-index: 2;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 1.25rem;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  margin-bottom: 1rem;
}

.eyebrow--accent { background: var(--accent); color: #000; border-color: var(--accent); }

.section__title {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  max-width: 22ch;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1vw + 0.85rem, 1.15rem);
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  user-select: none;
}

.btn__icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 0 0 transparent, 0 8px 28px rgba(164, 240, 16, 0.35);
}
.btn--primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), 0 12px 36px rgba(164, 240, 16, 0.55);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn--ghost:hover { background: var(--accent-soft); }

.btn--large { padding: 1.1rem 2rem; font-size: 1.08rem; }
.btn--xl { padding: 1.25rem 2.5rem; font-size: 1.15rem; }

.link-arrow {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s;
}
.link-arrow:hover { border-bottom-color: var(--accent); }

/* ---------- Brand ---------- */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  margin-bottom: 2rem;
}
.brand__logo {
  width: 150px;
  height: auto;
  display: block;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  filter: drop-shadow(0 4px 16px rgba(164, 240, 16, 0.15));
}

/* Logo real (jpeg quadrado) - cropa padding preto via object-fit */
.brand__img {
  display: block;
  width: 200px;
  height: 78px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  filter: drop-shadow(0 4px 16px rgba(164, 240, 16, 0.15));
}
.brand:hover .brand__logo,
.brand:hover .brand__img {
  transform: scale(1.05) rotate(-1deg);
  filter: drop-shadow(0 6px 22px rgba(164, 240, 16, 0.4));
}
@media (min-width: 1024px) {
  .brand__img { width: 240px; height: 92px; }
}
.brand__a {
  transform-origin: 60px 122px;
  animation: brand-mark-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes brand-mark-in {
  0% { transform: translateY(-30px); opacity: 0; }
  60% { transform: translateY(2px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .brand__a, .brand__logo { animation: none; transition: none; }
}
.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 4px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0 0 3rem;
  position: relative;
}

/* Grid decorativo de fundo (fade no centro) */
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-size: 56px 56px;
  background-image:
    linear-gradient(to right, rgba(164, 240, 16, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(164, 240, 16, 0.045) 1px, transparent 1px);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 75%);
}

/* Top bar: logo esquerda + pills direita */
.hero__top-bar {
  width: 100%;
  position: relative;
  z-index: 4;
  padding: 1.25rem 0 0;
  flex-shrink: 0;
}
.hero__top-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.hero__top-bar-inner .hero__services--top {
  width: 100%;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero__top-bar { padding: 1.75rem 0 0; }
  .hero__top-bar-inner {
    gap: 1.25rem;
  }
}

/* Hero main content - centralizado verticalmente no espaco que sobra */
.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Eyebrow (mini label antes do titulo) */
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw + 0.5rem, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 auto 1.5rem;
  max-width: 18ch;
  text-shadow:
    0 4px 30px rgba(255, 255, 255, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.3rem);
  color: var(--text-muted);
  margin: 0 auto 2rem;
  max-width: 48ch;
}

.hero__cta { margin-bottom: 0.75rem; }

.hero__hint {
  color: var(--text-faint);
  font-size: 0.88rem;
  font-family: var(--font-mono);
}

/* =========================================================
   HERO ENHANCEMENTS - typewriter, video bg, pills, badges
   ========================================================= */

/* Video de fundo */
.hero__bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
body.has-hero-video .hero__bg-video { opacity: 0.4; }
body.has-hero-video #rain-canvas { opacity: 0.18; }

/* Brand compact (top bar) - logo menor */
.brand--top {
  margin: 0;
  flex-shrink: 0;
}
.brand--top .brand__img {
  display: block;
  height: 80px;
}
/* PNG transparente: sem crop, mantem aspect natural */
.brand--top .brand__img--png {
  width: auto;
  max-width: 320px;
  object-fit: contain;
}
/* JPEG com fundo preto: crop pra esconder padding */
.brand--top .brand__img--jpeg {
  width: 130px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1024px) {
  .brand--top .brand__img { height: 96px; }
  .brand--top .brand__img--png { max-width: 380px; }
  .brand--top .brand__img--jpeg { width: 220px; }
}

/* Services pills compactas (no top bar, mais sutis) */
.hero__services--top {
  margin: 0;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hero__services--top li {
  padding: 0.35rem 0.75rem 0.35rem 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  background: rgba(164, 240, 16, 0.06);
  border-color: rgba(164, 240, 16, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__services--top .hero__services-icon {
  width: 11px;
  height: 11px;
}

/* Typewriter */
.hero__type-wrap {
  display: inline-flex;
  align-items: baseline;
}
.hero__type {
  display: inline-block;
  min-width: 0.4ch;
}
.hero__cursor {
  display: inline-block;
  width: 4px;
  height: 0.95em;
  background: var(--accent);
  margin-left: 6px;
  vertical-align: text-bottom;
  box-shadow: 0 0 12px var(--accent-glow);
  animation: cursor-blink 0.7s step-end infinite;
}
@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Service pills com SVG icons */
.hero__services {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}
.hero__services li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem 0.45rem 0.7rem;
  background: var(--accent-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pill-in 0.6s ease both;
  transition: transform 0.25s ease, background 0.25s ease;
}
.hero__services li:hover {
  transform: translateY(-2px);
  background: rgba(164, 240, 16, 0.18);
}
.hero__services li:nth-child(2) { animation-delay: 0.08s; }
.hero__services li:nth-child(3) { animation-delay: 0.16s; }
.hero__services li:nth-child(4) { animation-delay: 0.24s; }
.hero__services li:nth-child(5) { animation-delay: 0.32s; }
@keyframes pill-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__services-icon {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--accent-glow));
}
.hero__services--top .hero__services-icon {
  max-width: 11px;
  max-height: 11px;
}

/* Trust badges - grid auto-fit (responsivo automatico) */
.hero__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 540px;
}
.hero-badge {
  flex: 1 1 130px;
  min-width: 130px;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.06) inset,
    0 -1px 1px rgba(0, 0, 0, 0.3) inset,
    0 20px 40px -12px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.hero-badge:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}
.hero-badge__top {
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px var(--accent-glow);
}
.hero-badge__icon {
  font-size: 1.1rem;
  font-weight: 900;
}
.hero-badge__stars { letter-spacing: 0.05em; }
.hero-badge__main {
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
  font-family: var(--font-mono);
  margin-top: 0.15rem;
}
.hero-badge__cap {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.hero-badge--featured {
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-card));
  border-color: var(--border-strong);
  box-shadow: 0 0 28px rgba(164, 240, 16, 0.08);
}
.hero-badge--featured .hero-badge__main {
  color: var(--accent);
  font-size: 1.7rem;
  text-shadow: 0 0 16px var(--accent-glow);
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-pill);
  display: none;
}
.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  margin: 5px auto 0;
  animation: scroll-hint 1.6s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}
@media (min-width: 1024px) { .hero__scroll { display: block; } }

/* ---------- Grids / Cards ---------- */
.grid {
  display: grid;
  gap: 1rem;
}
.grid--cards { grid-template-columns: 1fr; }
.grid--services { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
  .grid--services { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--cards { grid-template-columns: repeat(4, 1fr); }
  .grid--services { grid-template-columns: repeat(3, 1fr); }
  .grid { gap: 1.25rem; }
}

.card {
  position: relative;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s, transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--border-strong) inset;
}

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
}
.card__icon--lg { width: 52px; height: 52px; }
.card__icon svg { width: 60%; height: 60%; }

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card--service:hover .card__icon {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 18px var(--accent-glow);
}

.card--cta-mini {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, var(--accent-soft), var(--bg-card));
}

/* ---------- Sections ---------- */
.section--pains { padding-top: 5rem; }
.section--solution { padding-top: 5rem; }
.section--process { padding-top: 5rem; }
.section--proof { padding-top: 5rem; }
.section--cta { padding: 5rem 0 6rem; }

/* ---------- Process ---------- */
.process {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .process { grid-template-columns: repeat(4, 1fr); }
}

.step {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.step:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px var(--accent-glow);
  font-family: var(--font-mono);
}

.step h3 { font-size: 1.25rem; font-weight: 800; }
.step p { color: var(--text-muted); font-size: 0.95rem; }
.step strong { color: var(--text); font-weight: 700; }

.support-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  padding: 1.25rem;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-card);
}
.support-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.support-strip__item .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

/* ---------- Proof placeholder ---------- */
.proof-placeholder {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.proof-placeholder__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.proof-placeholder p { font-size: 1.05rem; margin-bottom: 0.5rem; }
.proof-placeholder p.muted { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ---------- CTA Final ---------- */
.cta-final {
  text-align: center;
  padding: 3rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-soft), transparent 70%),
    var(--bg-elev);
  box-shadow: 0 0 60px rgba(164, 240, 16, 0.08);
}
.cta-final__title {
  font-size: clamp(2rem, 4.5vw + 0.5rem, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.5rem auto 1rem;
  max-width: 22ch;
}
.cta-final__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 48ch;
}
.cta-final__urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(164, 240, 16, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(164, 240, 16, 0); }
  100% { box-shadow: 0 0 0 0 rgba(164, 240, 16, 0); }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.85);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer__brand strong { color: var(--accent); font-size: 1.25rem; letter-spacing: 0.05em; }
.footer__brand span {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-left: 0.4rem;
}
.footer__copy { color: var(--text-faint); font-size: 0.85rem; }

@media (min-width: 768px) {
  .footer__inner { flex-direction: row; justify-content: space-between; }
}

/* ---------- Float WhatsApp ---------- */
.float-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse-wa 2.5s infinite;
  transition: transform 0.18s ease;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 32px; height: 32px; }

@keyframes pulse-wa {
  0% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #rain-canvas { display: none; }
}

/* ---------- Tablet (>=768) ---------- */
@media (min-width: 768px) {
  .section { padding: 6rem 0; }
  .container { padding: 0 2rem; }
  .float-wa { width: 64px; height: 64px; bottom: 2rem; right: 2rem; }
  .cta-final { padding: 4rem 2rem; }
  .step { padding: 2rem; }
  .card { padding: 1.75rem; }
}

/* ---------- Desktop / notebook (>=1024) ---------- */
@media (min-width: 1024px) {
  .hero { padding: 6rem 0 4rem; }
  .hero__inner { max-width: 780px; margin-left: auto; margin-right: auto; }
  .brand__logo { width: 150px; }
  .hero__cta { margin-top: 0.5rem; }
}

/* ---------- Telas grandes (>=1280) ---------- */
@media (min-width: 1280px) {
  .section { padding: 7rem 0; }
  .section--cta { padding: 6rem 0 7rem; }
  .hero__title { font-size: clamp(3rem, 5.5vw + 0.5rem, 5.25rem); max-width: 16ch; }
  .hero__subtitle { font-size: 1.3rem; max-width: 50ch; }
  .section__title { font-size: clamp(2.25rem, 3.5vw + 0.5rem, 3.5rem); }
  .cta-final { padding: 5rem 3rem; }
  .cta-final__title { font-size: clamp(2.5rem, 4vw + 0.5rem, 4rem); }
  .cta-final__subtitle { font-size: 1.2rem; max-width: 52ch; }
}

/* ---------- Mobile landscape (telas baixas) ---------- */
@media (max-height: 600px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .hero__scroll { display: none; }
}

/* ---------- Acesso admin discreto (canto superior direito) ---------- */
.admin-pill {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 50;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(164, 240, 16, 0.25);
  color: var(--accent);
  opacity: 0.35;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
}
.admin-pill:hover,
.admin-pill:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(164, 240, 16, 0.12), 0 6px 18px rgba(0, 0, 0, 0.5);
}
.admin-pill svg { display: block; }

@media (min-width: 1024px) {
  .admin-pill { top: 18px; right: 18px; width: 42px; height: 42px; }
  .admin-pill svg { width: 22px; height: 22px; }
}

/* ---------- Hero centralizada (todas as larguras) ---------- */
.hero__eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.hero__badges {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .hero__title,
  .hero__subtitle {
    max-width: 100%;
  }
}

/* ---------- Touch devices: hover-less ---------- */
@media (hover: none) {
  .card:hover, .step:hover, .float-wa:hover, .btn--primary:hover {
    transform: none;
  }
}

/* =========================================================
   SPOTLIGHT CARDS (efeito gradiente seguindo o mouse)
   ========================================================= */
.card--service, .card--pain, .step, .selector__panel, .testimonial {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  overflow: hidden;
}
.card--service::before,
.card--pain::before,
.step::before,
.testimonial::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    480px circle at var(--mouse-x) var(--mouse-y),
    rgba(164, 240, 16, 0.18),
    rgba(164, 240, 16, 0.06) 25%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.card--service:hover::before,
.card--pain:hover::before,
.step:hover::before,
.testimonial:hover::before {
  opacity: 1;
}
.card--service > *,
.card--pain > *,
.step > *,
.testimonial > * {
  position: relative;
  z-index: 1;
}

/* Borda "spotlight" mais fina seguindo o cursor */
.card--service::after,
.testimonial::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    240px circle at var(--mouse-x) var(--mouse-y),
    rgba(164, 240, 16, 0.65),
    transparent 50%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card--service:hover::after,
.testimonial:hover::after { opacity: 1; }

/* =========================================================
   INTERACTIVE SELECTOR (Portfolio)
   ========================================================= */
.selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 1024px) {
  .selector {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.selector__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.selector__nav li { display: block; }

.selector__tab {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.selector__tab:hover {
  border-color: var(--border-strong);
  color: var(--text);
  background: var(--bg-card-hover);
}
.selector__tab.is-active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}
.selector__tab.is-active .selector__num {
  color: #000;
  background: rgba(0, 0, 0, 0.15);
}

.selector__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.25s;
}

.selector__label { flex: 1; }

.selector__panels {
  position: relative;
}

.selector__panel {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.selector__panel[hidden] { display: none; }
.selector__panel.is-active {
  animation: panel-in 0.45s ease both;
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.selector__panel h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.selector__panel p {
  color: var(--text-muted);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .selector__panel { padding: 2rem; }
  .selector__panel h3 { font-size: 1.75rem; }
}

/* Media slot (placeholder pra screenshot/video) */
.media-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(164, 240, 16, 0.08), rgba(164, 240, 16, 0.02)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(164, 240, 16, 0.04) 12px, rgba(164, 240, 16, 0.04) 13px),
    var(--bg-elev);
  border: 1.5px dashed var(--border-strong);
  overflow: hidden;
}
.media-slot__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.media-slot__icon {
  font-size: 2.5rem;
  font-weight: 900;
  opacity: 0.5;
}

/* Tag list (chips embaixo do panel) */
.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.tag-list li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  color: var(--accent);
  background: var(--accent-soft);
}

/* =========================================================
   GALLERY (cases)
   ========================================================= */
.gallery__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 4rem 0 1.25rem;
  text-align: center;
  letter-spacing: -0.01em;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(164, 240, 16, 0.08), rgba(164, 240, 16, 0.01)),
    var(--bg-card);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(164, 240, 16, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover {
  border-color: var(--border-strong);
  color: var(--accent);
  transform: scale(1.02);
}
.gallery__item:hover::before { opacity: 1; }
.gallery__item span { position: relative; z-index: 1; }

/* =========================================================
   TESTIMONIALS (Prova Social)
   ========================================================= */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.testimonial__stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 8px var(--accent-glow);
}

.testimonial__media {
  width: 100%;
  aspect-ratio: 9 / 12;
  max-height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(164, 240, 16, 0.06), rgba(0,0,0,0)),
    var(--bg-elev);
  border: 1.5px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial__media-placeholder {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  line-height: 1.5;
}
.testimonial__media img,
.testimonial__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5BA000);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}
.testimonial__author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.proof-cta {
  margin-top: 3rem;
  text-align: center;
}
.proof-cta p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* =========================================================
   TESTIMONIAL: media com fallback (img -> placeholder)
   ========================================================= */
.testimonial__media {
  position: relative;
  aspect-ratio: 9 / 14;
  max-height: 380px;
}
.testimonial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  display: block;
}
.testimonial__media-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(164, 240, 16, 0.06), rgba(0,0,0,0)),
    var(--bg-elev);
  border: 1.5px dashed var(--border);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 1rem;
}
.testimonial__media-placeholder small {
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.testimonial__media.media-missing .testimonial__media-placeholder {
  display: flex;
}

/* Featured testimonial (com metrica) */
.testimonial--featured {
  border-color: var(--border-strong);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, var(--accent-soft), transparent 70%),
    var(--bg-card);
  box-shadow: 0 0 40px rgba(164, 240, 16, 0.08);
}
.testimonial__metric {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  margin: -0.25rem 0 0.5rem;
  background: var(--accent-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
}
.testimonial__metric-num {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 14px var(--accent-glow);
}
.testimonial__metric-label {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.25;
  font-weight: 600;
}

/* Avatar com check verde (cliente verificado) */
.testimonial__avatar {
  background: linear-gradient(135deg, var(--accent), #5BA000);
  color: #000;
  font-size: 1.4rem;
}

/* =========================================================
   VIDEO CASES (galeria de videos)
   ========================================================= */
.section--videos { padding-top: 5rem; }

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.3s, transform 0.3s;
}
.video-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.video-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(164, 240, 16, 0.08), rgba(0,0,0,0.4)),
    var(--bg-elev);
  border: 1px solid var(--border);
}
.video-card__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.video-card__placeholder small {
  color: var(--text-faint);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.video-card__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  padding-left: 4px; /* compensa o icone */
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse-play 2s infinite;
}
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 rgba(164, 240, 16, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(164, 240, 16, 0); }
}

.video-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0.25rem;
}
.video-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Quando o video carregar, esconde o placeholder */
.video-card.has-video .video-card__placeholder { display: none; }

/* =========================================================
   SHIMMER BUTTON (luz passando por cima)
   ========================================================= */
.btn--shimmer {
  position: relative;
  overflow: hidden;
}
.btn--shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 25%,
    rgba(255, 255, 255, 0.45),
    transparent 75%
  );
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn--shimmer:hover::after {
  left: 120%;
}
/* Auto-shimmer no CTA flutuante (chama atencao mesmo sem hover) */
@keyframes shimmer-loop {
  0% { left: -120%; }
  60%, 100% { left: 120%; }
}
.btn--shimmer.btn--xl::after {
  animation: shimmer-loop 3.2s ease-in-out infinite;
}

/* =========================================================
   AIDA COMPACTO (v2 - 2026-05-05)
   ========================================================= */

/* Hero: palavra "Instagram" riscada na headline */
.hero__cross {
  position: relative;
  display: inline-block;
  color: var(--text-muted);
  opacity: 0.85;
}
.hero__cross::after {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  top: 52%;
  height: 5px;
  background: linear-gradient(90deg,
    rgba(255, 70, 70, 0) 0%,
    rgba(255, 70, 70, 0.95) 20%,
    rgba(255, 70, 70, 0.95) 80%,
    rgba(255, 70, 70, 0) 100%);
  transform: translateY(-50%) rotate(-2.5deg);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(255, 70, 70, 0.45);
}

/* Pill de LP destacada (no top bar) */
.hero__services--top .is-featured {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}
.hero__services--top .is-featured .hero__services-icon {
  filter: none;
}

/* Hero badge unico centralizado */
.hero__badges--single {
  grid-template-columns: 1fr;
  max-width: 280px;
}

/* ----- INTEREST: lead-block (texto pesado em poucos paragrafos) ----- */
.section--interest { padding: 4rem 0; }
.lead-block {
  display: grid;
  gap: 1rem;
  max-width: 32ch;
  margin-top: 0.5rem;
}
.lead-block p {
  font-size: clamp(1.1rem, 1.4vw + 0.85rem, 1.4rem);
  line-height: 1.45;
  color: var(--text);
}
.lead-block strong {
  color: var(--text);
  font-weight: 800;
}
.lead-block__punch {
  font-weight: 800;
  font-size: clamp(1.25rem, 1.6vw + 0.95rem, 1.65rem) !important;
  margin-top: 0.5rem;
}

/* ----- PROVA VISUAL: antes / depois ----- */
.section--proof-visual { padding: 4rem 0; }

.before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 1rem;
}
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  filter: drop-shadow(0 0 10px var(--accent-glow));
  transform: rotate(90deg);
  margin: 0.25rem 0;
}
@media (min-width: 768px) {
  .before-after {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
  }
  .ba-arrow {
    transform: rotate(0deg);
    margin: 0;
  }
}

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.ba-card--before {
  filter: saturate(0.45) brightness(0.85);
  opacity: 0.92;
}
.ba-card--after {
  border-color: var(--border-strong);
  box-shadow: 0 0 36px rgba(164, 240, 16, 0.10);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, var(--accent-soft), transparent 75%),
    var(--bg-card);
}
.ba-card__label {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: var(--radius-pill);
  font-weight: 800;
}
.ba-card--before .ba-card__label {
  background: rgba(255, 70, 70, 0.14);
  color: #ff8a8a;
  border-color: rgba(255, 70, 70, 0.35);
}
.ba-card--after .ba-card__label {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--border-strong);
}
.ba-card__visual {
  flex: 1;
  min-height: 240px;
  border-radius: var(--radius-md);
  background: var(--bg-elev);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
}
.ba-card__visual--photo {
  padding: 0;
  background: #f4ecdb;
  position: relative;
}
.ba-card__visual--photo img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}
.ba-card__visual--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,0.15));
  pointer-events: none;
}
.ba-card__caption {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
  margin: 0;
}

/* IG mock (perfil generico) */
.ig-mock {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.ig-mock__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fd5949, #d6249f, #285AEB);
  padding: 3px;
  position: relative;
}
.ig-mock__avatar::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--bg-card);
  border-radius: 50%;
}
.ig-mock__name {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}
.ig-mock__bio {
  font-size: 0.78rem;
  color: var(--text-faint);
  font-style: italic;
}
.ig-mock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 100%;
  max-width: 180px;
  margin-top: 0.5rem;
}
.ig-mock__grid > div {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 2px;
}

/* LP mock (oferta clara + CTA) */
.lp-mock {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, #050505 0%, rgba(164, 240, 16, 0.05) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
}
.lp-mock__head {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-align: center;
  font-weight: 700;
}
.lp-mock__title {
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--text);
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.01em;
}
.lp-mock__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}
.lp-mock__btn {
  margin-top: 0.4rem;
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius-pill);
  font-weight: 900;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  box-shadow: 0 0 18px var(--accent-glow);
}

/* ----- DESIRE: benefits list ----- */
.section--desire { padding: 4rem 0; }

.benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 0;
  margin: 1rem 0 0;
}
@media (min-width: 768px) {
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.benefit:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}
.benefit__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px var(--accent-glow);
}
.benefit__check svg { width: 60%; height: 60%; }
.benefit h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ----- COMO FUNCIONA: variante 3 passos ----- */
.section--process { padding: 4rem 0 4rem; }
.process--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .process--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .process--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ----- DIFERENCIAL: bloco centralizado ----- */
.section--differentiator { padding: 3rem 0 4rem; }
.diff-block {
  text-align: center;
  max-width: 42ch;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-soft), transparent 70%),
    var(--bg-card);
  position: relative;
  box-shadow: 0 0 50px rgba(164, 240, 16, 0.08);
}
.diff-block::before {
  content: '\201C';
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: var(--accent);
  line-height: 1;
  background: var(--bg);
  padding: 0 0.5rem;
  text-shadow: 0 0 18px var(--accent-glow);
}
.diff-block__title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
  font-weight: 900;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.diff-block__text {
  font-size: clamp(1rem, 1vw + 0.85rem, 1.2rem);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Mobile: alinhar lead-block centrado */
@media (max-width: 1023px) {
  .lead-block {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .ba-card__label {
    align-self: center;
  }
}

/* =========================================================
   HERO LAYOUT 2 COLUNAS + VIDEO CARD (v3 - 2026-05-05)
   ========================================================= */

/* Override: hero__inner agora preenche o container todo (era 780px max) */
@media (min-width: 1024px) {
  .hero__inner { max-width: 100%; }
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  align-items: center;
}
.hero__col-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__col-video {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__layout {
    gap: 3rem;
  }
  .hero__col-text { max-width: 780px; margin: 0 auto; }
}

/* Video card no hero (slot pra video curto vertical 9:16) */
.hero__video-card {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--accent);
  background: var(--bg-elev);
  box-shadow:
    0 0 50px var(--accent-glow),
    0 20px 50px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero__video-card:hover {
  transform: rotate(0deg) scale(1.02);
}
@media (min-width: 1024px) {
  .hero__video-card { max-width: 300px; }
}

.hero__video-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, var(--accent-soft), transparent 70%),
    var(--bg);
}
.hero__video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  text-align: center;
  padding: 1rem;
}
.hero__video-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-left: 4px;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse-play 2s infinite;
  margin-bottom: 0.5rem;
}
.hero__video-msg {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero__video-placeholder small {
  color: var(--text-faint);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.hero__video-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.hero__video-tag .pulse-dot { width: 6px; height: 6px; }

.hero__video-card.has-video .hero__video-placeholder { display: none; }

/* =========================================================
   APP MOCK (dashboard pequeno pro depois/antes)
   ========================================================= */
.app-mock {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, #050505 0%, rgba(164, 240, 16, 0.05) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
}
.app-mock__head {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.app-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-faint);
}
.app-mock__dot:nth-child(1) { background: #ff5f57; }
.app-mock__dot:nth-child(2) { background: #febc2e; }
.app-mock__dot:nth-child(3) { background: #28c840; }
.app-mock__title {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-left: auto;
  font-weight: 800;
}
.app-mock__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.25rem 0;
}
.app-mock__stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 0.6rem;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.app-mock__stat-num {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 10px var(--accent-glow);
}
.app-mock__stat-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.app-mock__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.app-mock__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  box-shadow: 0 0 8px var(--accent-glow);
  animation: bar-grow 3s ease-in-out infinite;
}
@keyframes bar-grow {
  0%, 100% { width: 65%; }
  50% { width: 88%; }
}
.app-mock__status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.app-mock__status .pulse-dot { width: 6px; height: 6px; }

/* =========================================================
   DASH MOCK ADG (substitui app-mock antigo) - dashboard funcional
   ========================================================= */
.dash-mock {
  width: 100%;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-family: var(--font-sans);
  border: 1px solid rgba(164, 240, 16, 0.12);
  box-shadow: inset 0 0 30px rgba(164, 240, 16, 0.04);
}

.dash-mock__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-mock__brand { display: flex; flex-direction: column; line-height: 1; }
.dash-mock__brand-mark {
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.dash-mock__brand-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  letter-spacing: 0.05em;
}
.dash-mock__live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dash-mock__live .pulse-dot { width: 6px; height: 6px; }

.dash-mock__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.dash-kpi {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
}
.dash-kpi__label {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dash-kpi__num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
}
.dash-kpi__delta {
  font-size: 0.55rem;
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 700;
}

.dash-mock__chart {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 0.5rem 0.55rem 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.dash-mock__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}
.dash-mock__chart-title {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dash-mock__chart-legend {
  font-size: 0.5rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dash-mock__chart-legend .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 0.15rem;
}
.dot--accent { background: var(--accent); box-shadow: 0 0 4px var(--accent-glow); }
.dot--blue { background: #3aa0ff; }

.dash-chart {
  width: 100%;
  height: 60px;
  display: block;
}
.dash-chart__line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 3px var(--accent-glow));
}
.dash-mock.is-active .dash-chart__line {
  animation: dash-draw 1.6s ease-out 0.3s forwards;
}
.dash-chart__line--blue { animation-delay: 0.6s !important; filter: none; }
.dash-chart__area {
  opacity: 0;
  transition: opacity 0.6s 1.2s;
}
.dash-mock.is-active .dash-chart__area { opacity: 1; }
@keyframes dash-draw {
  to { stroke-dashoffset: 0; }
}

.dash-mock__funnel {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.dash-funnel-row {
  display: grid;
  grid-template-columns: 70px 1fr 38px;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
}
.dash-funnel-row__label {
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.dash-funnel-row__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}
.dash-funnel-row__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  box-shadow: 0 0 6px var(--accent-glow);
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dash-mock.is-active .dash-funnel-row__fill { width: var(--w); }
.dash-funnel-row__num {
  font-family: var(--font-mono);
  text-align: right;
  font-weight: 700;
  color: var(--text);
  font-size: 0.7rem;
}

.dash-mock__foot {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.15rem;
}
.dash-mock__foot .pulse-dot { width: 6px; height: 6px; }

@media (min-width: 768px) {
  .dash-mock { padding: 1rem; gap: 0.8rem; }
  .dash-kpi { padding: 0.6rem 0.75rem; }
  .dash-kpi__num { font-size: 1.1rem; }
  .dash-chart { height: 70px; }
  .dash-funnel-row { grid-template-columns: 90px 1fr 44px; font-size: 0.7rem; }
}

/* =========================================================
   FINAL SECTION (testimonials + CTA fundidos)
   ========================================================= */
.section--final {
  padding: 4rem 0 5rem;
}
.cta-final--inline {
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .cta-final--inline { margin-top: 4.5rem; }
}

/* =========================================================
   AUTOMATION GALLERY (dobra 4 - galeria de automacoes ADG)
   ========================================================= */
.section--automation { padding: 4rem 0 4.5rem; }

.automation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .automation-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .automation-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.automation-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.automation-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(164, 240, 16, 0.08);
}

.automation-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, var(--accent-soft), transparent 70%),
    linear-gradient(135deg, rgba(164, 240, 16, 0.06), rgba(0, 0, 0, 0.3)),
    var(--bg-elev);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.automation-card__icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 16px var(--accent-glow));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.automation-card__icon svg {
  width: 100%;
  height: 100%;
}
.automation-card:hover .automation-card__icon {
  transform: scale(1.15);
}

.automation-card__play {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding-left: 3px;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse-play 2.4s infinite;
  font-weight: 900;
}

.automation-card__tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.automation-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}
.automation-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
}

/* Spotlight aplicado ja na regra global - garantir que acompanha */

/* =========================================================
   CLIENTS LOGOS MARQUEE (dobra 5 - logos rolantes)
   ========================================================= */
.section--clients {
  padding: 4rem 0 4.5rem;
  position: relative;
}

.logos-marquee {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logos-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: logos-scroll 38s linear infinite;
}
.logos-track:hover {
  animation-play-state: paused;
}
@media (min-width: 768px) {
  .logos-track { gap: 4.5rem; }
}

@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logos-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  min-width: 180px;
  max-width: 220px;
  padding: 1rem 1.5rem;
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 1;
}
.logos-item--dark {
  background: #0d0d0d;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}
.logos-item:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--accent),
    0 0 24px var(--accent-glow);
}
.logos-item img {
  max-height: 60px;
  max-width: 170px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.logos-item__placeholder {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
  white-space: nowrap;
}
.logos-item__placeholder.show {
  display: flex;
}

@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; }
}

/* =========================================================
   MOBILE COMPACTO (< 640px) - reduzir altura/scroll no celular
   Aplicado SO em telas pequenas. Desktop e tablet intocados.
   ========================================================= */
@media (max-width: 639px) {

  /* --- Cards de automacao: 2 por linha em vez de 1 --- */
  .automation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .automation-card {
    padding: 0.7rem;
    gap: 0.55rem;
  }
  .automation-card__media {
    aspect-ratio: 4 / 3;
  }
  .automation-card__icon {
    width: 38px;
    height: 38px;
  }
  .automation-card__play {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    bottom: 0.4rem;
    right: 0.4rem;
  }
  .automation-card__tag {
    top: 0.4rem;
    left: 0.4rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }
  .automation-card h3 {
    font-size: 0.92rem;
  }
  .automation-card p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  /* --- Depoimentos: 2 por linha no mobile --- */
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .testimonial {
    padding: 0.7rem;
    gap: 0.5rem;
  }
  .testimonial__media {
    aspect-ratio: 3 / 4;
    max-height: 180px;
  }
  .testimonial__stars {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }
  .testimonial__quote {
    font-size: 0.72rem;
    line-height: 1.35;
    padding-left: 0.5rem;
    border-left-width: 2px;
  }
  .testimonial__author {
    gap: 0.4rem;
    padding-top: 0.2rem;
  }
  .testimonial__avatar {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  .testimonial__author strong {
    font-size: 0.78rem;
  }
  .testimonial__author span {
    font-size: 0.68rem;
  }
  .testimonial__metric {
    padding: 0.5rem 0.6rem;
    gap: 0.5rem;
    margin: 0;
  }
  .testimonial__metric-num {
    font-size: 1.4rem;
  }
  .testimonial__metric-label {
    font-size: 0.65rem;
    line-height: 1.2;
  }
}

