/* ==========================================================================
   SCALMAX — Site oficial
   Design System: "Digital Twilight"
   ========================================================================== */

/* ---------- 1. TOKENS / VARIÁVEIS ---------- */
:root {
  /* Brand colors */
  --deep-indigo: #2C2A72;
  --electric-cyan: #00E5FF;
  --soft-violet: #8C7AE6;
  --liquid-silver: #D9DCE3;

  /* Backgrounds */
  --bg: #0A0A1F;
  --bg-elevated: #15152E;
  --bg-card: #15152E;
  --bg-card-hover: #1B1B3D;

  /* Text */
  --text: #FFFFFF;
  --text-secondary: #9CA0B0;
  --text-muted: #6B6F80;

  /* Borders */
  --border-subtle: rgba(217, 220, 227, 0.08);
  --border-default: rgba(217, 220, 227, 0.14);
  --border-bright: rgba(0, 229, 255, 0.3);

  /* Signature gradient */
  --gradient-brand: linear-gradient(135deg, #00E5FF 0%, #8C7AE6 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(0,229,255,0.15) 0%, rgba(140,122,230,0.15) 100%);

  /* Glow */
  --glow-cyan: 0 0 24px rgba(0, 229, 255, 0.3);
  --glow-cyan-strong: 0 0 32px rgba(0, 229, 255, 0.45), 0 4px 16px rgba(0, 229, 255, 0.2);
  --glow-violet: 0 0 24px rgba(140, 122, 230, 0.3);

  /* Type */
  --font-display: 'Satoshi', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --section-py: clamp(64px, 9vw, 120px);
  --container-max: 1200px;
  --container-px: clamp(20px, 4vw, 40px);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. BASE / RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg { display: block; max-width: 100%; height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol { list-style: none; padding: 0; margin: 0; }

p { margin: 0; }

/* ---------- 3. TIPOGRAFIA ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

.h-hero {
  font-size: clamp(34px, 5.2vw, 46px);
  font-weight: 700;
  line-height: 1.1;
}

.h-hero-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 14px;
  color: var(--text-secondary);
}

.h-1 { font-size: clamp(32px, 4.5vw, 44px); }
.h-2 { font-size: clamp(28px, 3.6vw, 36px); }
.h-3 { font-size: clamp(22px, 2.4vw, 26px); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--electric-cyan);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 16px 0 0;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ---------- 4. LAYOUT ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- 5. ELEMENTOS GLOBAIS ---------- */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.bg-orb--cyan {
  background: radial-gradient(circle, var(--electric-cyan), transparent 60%);
}

.bg-orb--violet {
  background: radial-gradient(circle, var(--soft-violet), transparent 60%);
}

/* ---------- 6. BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
  position: relative;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-brand);
  color: var(--bg);
  box-shadow: var(--glow-cyan-strong);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.6), 0 8px 24px rgba(0, 229, 255, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-default);
}

.btn--ghost:hover {
  border-color: var(--electric-cyan);
  color: var(--electric-cyan);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 20px 36px;
  font-size: 16px;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--t-base);
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- 7. NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--t-base), backdrop-filter var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
  background: rgba(10, 10, 31, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--border-subtle);
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  line-height: 0;
}

.brand-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

/* Logo do cabeçalho — proporção 3:1 (1500 x 500) */
.brand-logo--header img {
  height: 60px;
}

/* Logo do rodapé */
.brand-logo--footer img {
  height: 150px;
}

@media (max-width: 560px) {
  .brand-logo--header img { height: 46px; }
  .brand-logo--footer img { height: 120px; }
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-menu a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  padding: 12px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  position: relative;
  transition: background var(--t-fast);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: var(--text);
  transition: transform var(--t-base), top var(--t-base);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-menu,
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle { display: flex; }

  .nav-menu.is-open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 31, 0.96);
    backdrop-filter: blur(18px);
    padding: 24px;
    border-top: 1px solid var(--border-subtle);
  }
  .nav-menu.is-open a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 16px;
  }
  .nav-menu.is-open a:last-child { border-bottom: none; }
}

/* ---------- 8. HERO ---------- */
.hero {
  padding-top: clamp(120px, 18vw, 180px);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--bg);
  background-image: url('assets/tr%C3%A1fego%20pago%20para%20brasileiros%20nos%20eua.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 31, 0.96) 0%, rgba(10, 10, 31, 0.85) 35%, rgba(10, 10, 31, 0.35) 70%, rgba(10, 10, 31, 0.15) 100%),
    linear-gradient(180deg, rgba(10, 10, 31, 0.6) 0%, transparent 30%, transparent 70%, rgba(10, 10, 31, 0.6) 100%);
}

.hero .bg-orb--cyan { top: -200px; right: -150px; width: 500px; height: 500px; opacity: 0.15; }
.hero .bg-orb--violet { bottom: -200px; left: -150px; width: 600px; height: 600px; opacity: 0.18; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-content {
  text-align: left;
  max-width: 620px;
}

.hero-visual {
  /* coluna direita — espaço pra a imagem do background aparecer */
  min-height: 480px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(21, 21, 46, 0.6);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-tagline::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--electric-cyan);
  box-shadow: 0 0 8px var(--electric-cyan);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-microcopy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-bg {
    background-image: url('assets/Marketing%20para%20house%20cleaning%20eua.webp');
    background-position: top center;
    background-size: cover;
    opacity: 0.55;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 31, 0.35) 0%, rgba(10, 10, 31, 0.85) 55%, var(--bg) 90%);
  }
  .hero-content {
    padding-top: 280px;
  }
}

@media (max-width: 560px) {
  .hero-content { padding-top: 220px; }
}

.hero-microcopy::before {
  content: '';
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300E5FF' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-marquee {
  position: relative;
  margin-top: clamp(140px, 17vw, 220px);
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  /* fade nos cantos pra dar profundidade */
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.hero-marquee-label {
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color var(--t-fast);
}

.marquee-item:hover { color: var(--text); }

.marquee-item svg { color: var(--electric-cyan); flex-shrink: 0; }

/* loop infinito: items duplicados via JS, anima -50% (= 1 conjunto completo) */
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ---------- 9. SEÇÃO "PARA QUEM É" ---------- */
.audience {
  background: var(--bg);
  position: relative;
}

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 880px) {
  .audience-split { grid-template-columns: 1fr; }
}

.aud-block {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  transition: transform var(--t-base);
}

.aud-block:hover { transform: translateY(-4px); }

/* Card "Não é para você" — claro/rosado suave */
.aud-block--no {
  background: linear-gradient(180deg, rgba(248, 113, 113, 0.05) 0%, rgba(248, 113, 113, 0.02) 100%);
  border: 1px solid rgba(248, 113, 113, 0.18);
}

/* Card "É para você" — escuro/roxo, destaque visual */
.aud-block--yes {
  background:
    linear-gradient(135deg, rgba(140, 122, 230, 0.18) 0%, rgba(0, 229, 255, 0.08) 100%),
    var(--bg-card);
  border: 1px solid var(--electric-cyan);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.15), 0 16px 40px rgba(0, 0, 0, 0.3);
}

.aud-block--yes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.15), transparent 55%);
  pointer-events: none;
}

.aud-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.aud-block-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.aud-block--no .aud-block-badge {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
}

.aud-block--yes .aud-block-badge {
  background: var(--gradient-brand);
  color: var(--bg);
  box-shadow: var(--glow-cyan);
}

.aud-block h3 {
  font-size: clamp(22px, 2.4vw, 26px);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}

.aud-block--no h3 { color: #fca5a5; }
.aud-block--yes h3 .gradient-text { display: inline; }

.aud-block-list {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.aud-block-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  text-align: left;
}

.aud-block-list li > span:last-child {
  flex: 1;
  min-width: 0;
}

.aud-block--no .aud-block-list li { color: var(--text-secondary); }

.aud-mark {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.aud-block--no .aud-mark {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #f87171;
}

.aud-block--yes .aud-mark {
  background: rgba(0, 229, 255, 0.18);
  border: 1px solid var(--electric-cyan);
  color: var(--electric-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

/* ---------- 10. SEÇÃO SERVIÇOS ---------- */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, #0E0E26 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.services .bg-orb--cyan { top: 20%; right: -200px; width: 480px; height: 480px; opacity: 0.2; }
.services .bg-orb--violet { bottom: 10%; left: -200px; width: 480px; height: 480px; opacity: 0.18; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 229, 255, 0.15);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-cyan);
  margin-bottom: 22px;
  transition: border-color var(--t-base), background var(--t-base);
}

.service-card:hover .service-icon {
  border-color: var(--border-bright);
  background: rgba(0, 229, 255, 0.05);
}

.service-icon svg { width: 30px; height: 30px; }

/* Ícones coloridos (Google Ads, Meta, etc.) */
.service-icon--brand {
  background: rgba(255, 255, 255, 0.06);
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- 11. SEÇÃO PROVA SOCIAL / RESULTADOS (light) ---------- */
.proof {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 229, 255, 0.08), transparent 60%),
    #F4F6FB;
  position: relative;
  color: var(--bg);
}

.proof .section-head h2,
.proof .section-head h2 * {
  color: var(--bg);
}

.proof .section-head .gradient-text {
  background: linear-gradient(135deg, #2C2A72 0%, #00B8D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof .eyebrow {
  color: #2C2A72;
}

.proof .section-subtitle {
  color: #5A6075;
}

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

.result-card {
  background: #FFFFFF;
  border: 1px solid #E4E7EF;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 1px 2px rgba(15, 20, 50, 0.04);
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 212, 0.5);
  box-shadow: 0 24px 48px rgba(44, 42, 114, 0.10), 0 0 24px rgba(0, 229, 255, 0.15);
}

.result-niche {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2C2A72;
  margin-bottom: 14px;
}

.result-metric {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1;
  background: linear-gradient(135deg, #00B8D4 0%, #5B4FCF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.result-card p {
  color: #4A4F66;
  font-size: 15px;
  line-height: 1.6;
}

/* Ajustar o botão CTA da seção proof para ter contraste no fundo claro */
.proof .section-cta .btn--primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, #2C2A72 0%, #5B4FCF 100%);
  box-shadow: 0 12px 32px rgba(91, 79, 207, 0.35);
}

.proof .section-cta .btn--primary:hover {
  box-shadow: 0 16px 40px rgba(91, 79, 207, 0.5);
}

/* ---------- 12. SEÇÃO MÉTODO ---------- */
.method {
  background: linear-gradient(180deg, var(--bg) 0%, #0E0E26 100%);
  position: relative;
}

/* ========== TIMELINE VERTICAL DO MÉTODO ========== */
.method-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 20px 0;
}

/* Eixo central */
.method-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 229, 255, 0.4) 6%,
    rgba(140, 122, 230, 0.4) 94%,
    transparent 100%);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-row {
  position: relative;
  min-height: 280px;
  margin-bottom: 60px;
  display: flex;
}

.timeline-row:last-child { margin-bottom: 0; }

/* Marker central */
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #0E0E26 35%, transparent 70%),
    var(--gradient-brand);
  background-color: var(--bg);
  border: 2px solid var(--electric-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--electric-cyan);
  font-size: 17px;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 0 6px var(--bg), 0 0 32px rgba(0, 229, 255, 0.5);
  letter-spacing: 0.04em;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.timeline-row:hover .timeline-marker {
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 0 0 6px var(--bg), 0 0 40px rgba(0, 229, 255, 0.8);
}

/* Card */
.timeline-card {
  position: relative;
  width: calc(50% - 60px);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 229, 255, 0.18);
}

/* Conector entre card e eixo */
.timeline-card::before {
  content: '';
  position: absolute;
  top: 52px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), transparent);
  z-index: 1;
}

/* Linha 1, 3, 5, ... — card à esquerda */
.timeline-row:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-row:nth-child(odd) .timeline-card::before {
  right: -60px;
  background: linear-gradient(90deg, var(--electric-cyan), transparent);
}

/* Linha 2, 4, 6 — card à direita */
.timeline-row:nth-child(even) {
  justify-content: flex-end;
}

.timeline-row:nth-child(even) .timeline-card::before {
  left: -60px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan));
}

/* Conteúdo do card */
.timeline-illustration {
  height: 180px;
  background:
    radial-gradient(ellipse 85% 70% at center, rgba(0, 229, 255, 0.10), transparent 65%),
    rgba(0, 0, 0, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.timeline-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  pointer-events: none;
}

.timeline-illustration svg {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.timeline-body {
  padding: 26px 28px 30px;
}

.timeline-step-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.timeline-body h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.timeline-body p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Animação de entrada — overrides padrão de .reveal pra slide horizontal */
.timeline-row .timeline-card {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-row:nth-child(odd) .timeline-card {
  transform: translateX(-40px);
}

.timeline-row:nth-child(even) .timeline-card {
  transform: translateX(40px);
}

.timeline-row.is-visible .timeline-card {
  opacity: 1;
  transform: translateX(0);
}

.timeline-row .timeline-marker {
  opacity: 0;
  transition: opacity 0.5s ease 0.15s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

.timeline-row:nth-child(odd) .timeline-marker,
.timeline-row:nth-child(even) .timeline-marker {
  transform: translateX(-50%) scale(0.4);
}

.timeline-row.is-visible .timeline-marker {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Mobile — empilha tudo do lado direito do eixo (que vai pra esquerda) */
@media (max-width: 760px) {
  .method-timeline::before { left: 28px; }

  .timeline-marker {
    left: 28px;
    width: 48px; height: 48px;
    font-size: 14px;
    top: 16px;
  }

  .timeline-row,
  .timeline-row:nth-child(odd),
  .timeline-row:nth-child(even) {
    justify-content: flex-start;
  }

  .timeline-card {
    width: calc(100% - 78px);
    margin-left: 78px;
  }

  .timeline-card::before,
  .timeline-row:nth-child(odd) .timeline-card::before,
  .timeline-row:nth-child(even) .timeline-card::before {
    left: -50px !important;
    right: auto !important;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--electric-cyan));
  }

  .timeline-row .timeline-card,
  .timeline-row:nth-child(odd) .timeline-card,
  .timeline-row:nth-child(even) .timeline-card {
    transform: translateX(20px);
  }

  .timeline-row.is-visible .timeline-card {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-row .timeline-card,
  .timeline-row .timeline-marker {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
  .timeline-row:nth-child(odd) .timeline-marker,
  .timeline-row:nth-child(even) .timeline-marker {
    transform: translateX(-50%) scale(1) !important;
  }
}

.method-num {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--gradient-brand);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-cyan);
}

.method-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.method-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.method-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}

.method-closing {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--text);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
}

.method-closing .gradient-text {
  display: inline;
}

/* ---------- 13. SEÇÃO QUEM SOU EU ---------- */
.about {
  background:
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(140, 122, 230, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #15153A 100%);
  position: relative;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; }
}

.about-photo {
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-default);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.10), transparent 60%);
  pointer-events: none;
}

.about-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-content p:first-of-type { color: var(--text); font-size: 17px; }

.about-content p strong {
  color: var(--text);
  font-weight: 600;
}

.about-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.about-role {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.about-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 14. SEÇÃO GOOGLE LOCAL SERVICES (light) ---------- */
.lsa {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 229, 255, 0.06), transparent 60%),
    #F4F6FB;
  position: relative;
  overflow: hidden;
  color: var(--bg);
}

/* Esconde os orbs nesta seção clara */
.lsa .bg-orb { display: none; }

.lsa-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 880px) {
  .lsa-inner { grid-template-columns: 1fr; }
  .lsa-visual { order: -1; max-width: 640px; margin: 0 auto; }
}

.lsa-content .eyebrow {
  color: #2C2A72;
}

.lsa-content h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.12;
  margin-bottom: 18px;
  color: var(--bg);
}

.lsa-content h2 .gradient-text {
  background: linear-gradient(135deg, #2C2A72 0%, #00B8D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lsa-content h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: #4A4F66;
  margin-bottom: 32px;
}

.lsa-content h3 strong {
  color: var(--bg);
  font-weight: 600;
}

.lsa-list {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.lsa-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.6;
  color: #2A2F45;
}

.lsa-list li strong {
  color: var(--bg);
  font-weight: 700;
}

.lsa-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2C2A72 0%, #5B4FCF 100%);
  color: #FFFFFF;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(91, 79, 207, 0.25);
}

.lsa .btn--primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, #2C2A72 0%, #5B4FCF 100%);
  box-shadow: 0 12px 32px rgba(91, 79, 207, 0.35);
}

.lsa .btn--primary:hover {
  box-shadow: 0 16px 40px rgba(91, 79, 207, 0.5);
}

.lsa-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lsa-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.lsa-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- 15. CTA FINAL ---------- */
.cta-final {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 229, 255, 0.08), transparent 60%),
    linear-gradient(180deg, #0E0E2A 0%, #16163C 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.cta-final .bg-orb--cyan { top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; opacity: 0.18; }

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.cta-final h2 {
  text-align: center;
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 18px;
}

.cta-final-sub {
  text-align: center;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.65;
}

.pain-gain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

@media (max-width: 760px) {
  .pain-gain { grid-template-columns: 1fr; }
}

.pain-block,
.gain-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 32px 26px;
}

.pain-block h3,
.gain-block h3 {
  font-size: 19px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pain-block h3 { color: #f87171; }
.gain-block h3 { color: var(--electric-cyan); }

.pain-list,
.gain-list {
  display: grid;
  gap: 16px;
}

.pain-list li,
.gain-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pain-list li::before,
.gain-list li::before {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 11px;
}

.pain-list li::before {
  content: '✕';
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
}

.gain-list li::before {
  content: '✓';
  background: rgba(0, 229, 255, 0.15);
  color: var(--electric-cyan);
}

.pain-list li strong,
.gain-list li strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.cta-final-button {
  text-align: center;
  margin-bottom: 24px;
}

.cta-microcopy {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-quote {
  margin-top: clamp(56px, 8vw, 80px);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--text-secondary);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
}

.cta-quote-author {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- 16. FAQ ---------- */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq-item.is-open {
  border-color: var(--border-bright);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  text-align: left;
  transition: color var(--t-base);
}

.faq-q:hover { color: var(--electric-cyan); }

.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-bright);
  color: var(--electric-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- 17. FOOTER ---------- */
.footer {
  background: #06061A;
  border-top: 1px solid var(--border-subtle);
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand-logo { margin-bottom: 18px; }

.footer-tagline {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.footer-contacts a:hover { color: var(--electric-cyan); }

.footer-contacts svg {
  width: 14px; height: 14px;
  color: var(--electric-cyan);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--electric-cyan);
  transform: translateX(3px);
}

.footer-newsletter p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-form {
  display: flex;
  gap: 8px;
  background: rgba(217, 220, 227, 0.05);
  border: 1px solid var(--border-default);
  border-radius: var(--r-sm);
  padding: 6px;
  transition: border-color var(--t-base);
}

.footer-form:focus-within { border-color: var(--electric-cyan); }

.footer-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: 14px;
}

.footer-form input::placeholder { color: var(--text-muted); }

.footer-form button {
  background: var(--gradient-brand);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: transform var(--t-base);
}

.footer-form button:hover { transform: translateY(-1px); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}

.footer-social a:hover {
  border-color: var(--electric-cyan);
  color: var(--electric-cyan);
  background: rgba(0, 229, 255, 0.08);
}

.footer-social svg { width: 16px; height: 16px; }

/* ---------- 17b. CTA POR SEÇÃO ---------- */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 60px);
}

/* ---------- 18. ANIMAÇÕES SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.20s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.30s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.45s; }

@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;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- 18b. MOBILE — centralizar conteúdos em Hero, Sobre, LSA e Footer ---------- */
@media (max-width: 880px) {

  /* ===== HERO ===== */
  .hero-inner,
  .hero-content {
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
  }

  /* ===== SOBRE ===== */
  .about .section-head,
  .about .section-head[style] {
    text-align: center !important;
    align-items: center !important;
  }
  .about-content,
  .about-content p,
  .about-signature {
    text-align: center;
  }
  .about-photo {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== GOOGLE LOCAL SERVICES ===== */
  .lsa-content,
  .lsa-content h2,
  .lsa-content h3 {
    text-align: center;
  }
  /* Lista: bloco centralizado mas itens com check + texto à esquerda */
  .lsa-list {
    text-align: left;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .lsa-content > div:last-child {
    text-align: center;
  }
  .lsa-visual {
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== FOOTER ===== */
  .footer-grid {
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .brand-logo--footer {
    justify-content: center;
  }
  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
  }
  .footer-contacts {
    align-items: center;
  }
  .footer-contacts a {
    justify-content: center;
  }
  .footer-col ul {
    display: inline-block;
    text-align: center;
  }
  .footer-col a:hover {
    transform: none;
  }
  .footer-newsletter p {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }
  .footer-form {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
