/* ============================================================
   SPACE MOBILE PRO - main.css
   Landing premium · mobile-first · alta conversao
   ============================================================ */

/* ----- TOKENS ----- */
:root {
  /* Cores - branding roxo Space Mobile */
  --ink: #1E1B3A;          /* Roxo profundo (substitui preto puro) */
  --ink-2: #2D1B5A;        /* Roxo escuro */
  --ink-3: #3D1A78;        /* Roxo medio escuro - logo */
  --purple: #7C3AED;       /* Roxo brand secundario */
  --purple-2: #8B5CF6;     /* Roxo claro */
  --purple-soft: rgba(124,58,237,.08);
  --mute: #6B7280;
  --line: #E5E7EB;
  --bg: #FAFAFA;
  --bg-2: #F4F0FA;         /* Fundo levemente roxo */
  --white: #FFFFFF;
  --brand: #FF3B30;        /* CTA / urgencia / acento - mantido vermelho para conversao maxima */
  --brand-dark: #D63027;
  --brand-soft: rgba(255,59,48,.08);
  --wa: #25D366;           /* WhatsApp */
  --wa-dark: #1FAA53;
  --gold: #F59E0B;         /* stars */
  --green: #10B981;        /* success */

  /* Tipografia */
  --f-disp: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Espacamento (mobile-first) */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  /* Layout */
  --max: 1200px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --sh-1: 0 1px 2px rgba(10,14,26,.06);
  --sh-2: 0 8px 24px rgba(10,14,26,.08);
  --sh-3: 0 20px 50px rgba(10,14,26,.15);

  /* Transicoes */
  --t-fast: 150ms cubic-bezier(.4,0,.2,1);
  --t-base: 250ms cubic-bezier(.4,0,.2,1);
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
p { margin: 0 0 1em; }
.smp-i { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ----- TIPOGRAFIA ----- */
h1, h2, h3, h4 {
  font-family: var(--f-disp);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 var(--sp-4);
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.75rem); }
h2 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1vw + .75rem, 1.5rem); letter-spacing: -.015em; }
h4 { font-size: 1.125rem; letter-spacing: -.01em; }

.smp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--purple-soft);
  color: var(--purple);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: var(--sp-4);
}
.smp-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: smp-pulse 2s ease-in-out infinite;
}
@keyframes smp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.smp-lead { font-size: clamp(1rem, .5vw + .8rem, 1.125rem); color: var(--mute); }

/* ----- LAYOUT ----- */
.smp-wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--sp-4); }
.smp-section { padding: var(--sp-8) 0; }
@media (min-width: 768px) { .smp-section { padding: var(--sp-9) 0; } }
.smp-section--dark { background: var(--ink); color: var(--white); }
.smp-section--dark h2, .smp-section--dark h3 { color: var(--white); }
.smp-section--dark .smp-lead { color: rgba(255,255,255,.7); }
.smp-section--gray { background: var(--bg); }
.smp-header-block { text-align: center; max-width: 720px; margin: 0 auto var(--sp-7); }

/* ----- BOTOES ----- */
.smp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: .9375rem;
  line-height: 1;
  border-radius: 12px;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-base);
  white-space: nowrap;
  text-align: center;
  letter-spacing: -.01em;
}
.smp-btn:hover { transform: translateY(-2px); }
.smp-btn:active { transform: translateY(0); }
.smp-btn--wa { background: var(--wa); color: var(--white); box-shadow: 0 4px 14px rgba(37,211,102,.35); }
.smp-btn--wa:hover { background: var(--wa-dark); color: var(--white); box-shadow: 0 8px 20px rgba(37,211,102,.45); }
.smp-btn--call { background: var(--ink); color: var(--white); box-shadow: 0 4px 14px rgba(10,14,26,.25); }
.smp-btn--call:hover { background: var(--ink-2); color: var(--white); }
.smp-btn--ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--line); }
.smp-btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.smp-btn--ghost-d { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.25); }
.smp-btn--ghost-d:hover { background: rgba(255,255,255,.08); color: var(--white); }
.smp-btn--lg { padding: 18px 32px; font-size: 1rem; border-radius: 14px; }
.smp-btn--full { display: flex; width: 100%; }

/* ----- HEADER ----- */
.smp-topbar {
  background: var(--ink);
  color: var(--white);
  font-size: .8125rem;
  padding: 8px 0;
}
.smp-topbar__row { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }
.smp-topbar__row li { display: inline-flex; align-items: center; gap: 6px; opacity: .85; }

.smp-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(1.5) blur(8px);
  background: rgba(255,255,255,.92);
}
.smp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 14px 0;
}
.smp-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.smp-logo img, .smp-logo svg { height: 44px; width: auto; max-width: 220px; object-fit: contain; }
@media (min-width: 768px) { .smp-logo img, .smp-logo svg { height: 48px; } }
/* Footer logo invert se PNG branco/preto */
.smp-footer .smp-logo img { filter: brightness(0) invert(1); opacity: .95; }

.smp-nav { display: none; gap: var(--sp-5); }
@media (min-width: 1024px) { .smp-nav { display: flex; align-items: center; } }
.smp-nav a { font-weight: 600; font-size: .9375rem; color: var(--ink-2); }
.smp-nav a:hover { color: var(--brand); }

.smp-header__cta { display: flex; align-items: center; gap: 10px; }
.smp-header__cta .smp-btn { padding: 12px 20px; font-size: .875rem; border-radius: 10px; }
.smp-header__cta .smp-btn--call { display: none; }
@media (min-width: 640px) { .smp-header__cta .smp-btn--call { display: inline-flex; } }

/* ----- HERO ----- */
.smp-hero {
  position: relative;
  padding: var(--sp-7) 0 var(--sp-8);
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(139,92,246,.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(124,58,237,.06), transparent 50%),
    var(--white);
}
@media (min-width: 768px) { .smp-hero { padding: var(--sp-8) 0 var(--sp-9); } }
.smp-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 1024px) { .smp-hero__grid { grid-template-columns: 1.15fr 1fr; gap: var(--sp-8); } }
.smp-hero__title { margin-bottom: var(--sp-4); }
.smp-hero__title em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(255,59,48,.2) 60%);
  padding: 0 4px;
}
.smp-hero__sub { font-size: 1.0625rem; color: var(--mute); margin-bottom: var(--sp-5); max-width: 560px; }
@media (min-width: 768px) { .smp-hero__sub { font-size: 1.125rem; } }
.smp-hero__ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--sp-5); }
@media (min-width: 480px) { .smp-hero__ctas { flex-direction: row; flex-wrap: wrap; } }
.smp-hero__ctas .smp-btn { flex: 1; min-width: 220px; }
@media (min-width: 768px) { .smp-hero__ctas .smp-btn { flex: 0 0 auto; } }

.smp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-5);
  align-items: center;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}
.smp-trust__item { display: inline-flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--mute); }
.smp-trust__item strong { color: var(--ink); font-weight: 700; }
.smp-trust__stars { color: var(--gold); display: inline-flex; gap: 1px; }
.smp-trust__stars .smp-i { fill: var(--gold); width: 16px; height: 16px; }

.smp-hero__visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  box-shadow: var(--sh-3);
}
.smp-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.smp-hero__visual-fallback {
  height: 100%;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 16px; color: rgba(255,255,255,.7); padding: 40px;
}
.smp-hero__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: .75rem;
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: var(--sh-2);
}

/* ----- MARCAS ----- */
.smp-brands { padding: var(--sp-7) 0; background: var(--bg); }
.smp-brands__title {
  text-align: center;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mute);
  margin-bottom: var(--sp-5);
}
.smp-brands__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 640px) { .smp-brands__list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .smp-brands__list { grid-template-columns: repeat(6, 1fr); gap: var(--sp-4); } }
.smp-brand {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-3);
  text-align: center;
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  transition: transform var(--t-base), border-color var(--t-fast), box-shadow var(--t-base);
}
.smp-brand:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--sh-2); }

/* ----- SERVICOS ----- */
.smp-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) { .smp-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .smp-services-grid { grid-template-columns: repeat(4, 1fr); } }
.smp-service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  transition: transform var(--t-base), border-color var(--t-fast), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.smp-service:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--sh-2); }
.smp-service__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--purple-soft);
  color: var(--purple);
  border-radius: 12px;
  margin-bottom: var(--sp-4);
}
.smp-service h3 { font-size: 1.0625rem; margin: 0 0 6px; }
.smp-service p { color: var(--mute); font-size: .9375rem; margin: 0 0 var(--sp-3); flex: 1; }
.smp-service__link {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 700; font-size: .8125rem;
  color: var(--purple); text-transform: uppercase; letter-spacing: .04em;
}

/* ----- PORQUE NOS ----- */
.smp-why {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4) var(--sp-5);
}
@media (min-width: 640px) { .smp-why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .smp-why { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5) var(--sp-6); } }
.smp-why__item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.smp-why__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(139,92,246,.15);
  color: var(--purple-2);
  border-radius: 10px;
  flex-shrink: 0;
}
.smp-why h3 { font-size: 1.0625rem; margin: 0 0 4px; }
.smp-why p { font-size: .9375rem; margin: 0; }

/* ----- DEPOIMENTOS ----- */
.smp-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) { .smp-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .smp-testimonials { grid-template-columns: repeat(3, 1fr); } }
.smp-testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-5);
}
.smp-testimonial__stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: var(--sp-3); }
.smp-testimonial__stars .smp-i { fill: var(--gold); width: 18px; height: 18px; }
.smp-testimonial p { color: var(--ink-2); font-size: .9375rem; line-height: 1.6; margin: 0 0 var(--sp-3); }
.smp-testimonial__author { font-weight: 700; font-size: .875rem; color: var(--ink); }
.smp-testimonial__date { font-size: .75rem; color: var(--mute); }

.smp-rating-hero {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-3);
  margin-bottom: var(--sp-5); flex-wrap: wrap;
}
.smp-rating-hero__value {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--gold);
}

/* ----- PROCESSO ----- */
.smp-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  counter-reset: smp-step;
}
@media (min-width: 640px) { .smp-process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .smp-process { grid-template-columns: repeat(4, 1fr); } }
.smp-step {
  position: relative;
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.smp-step::before {
  counter-increment: smp-step;
  content: "0" counter(smp-step);
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--purple);
  opacity: .2;
  position: absolute;
  top: 8px; right: 16px;
}
.smp-step__icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--white);
  border-radius: 10px;
  margin-bottom: var(--sp-3);
}
.smp-step h3 { font-size: 1.0625rem; margin: 0 0 6px; }
.smp-step p { color: var(--mute); font-size: .875rem; margin: 0; }

/* ----- LOCALIZACAO ----- */
.smp-local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: stretch;
}
@media (min-width: 1024px) { .smp-local-grid { grid-template-columns: 1fr 1.1fr; } }
.smp-local-info { display: grid; gap: var(--sp-4); }
.smp-local-row { display: flex; gap: var(--sp-3); align-items: flex-start; }
.smp-local-row .smp-i { color: var(--purple); margin-top: 2px; flex-shrink: 0; }
.smp-local-row strong { display: block; margin-bottom: 2px; font-weight: 700; }
.smp-local-row p, .smp-local-row a { margin: 0; font-size: .9375rem; color: var(--mute); }
.smp-local-row a:hover { color: var(--brand); }
.smp-local-actions { display: flex; gap: 10px; margin-top: var(--sp-3); flex-wrap: wrap; }

.smp-map {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-2);
  min-height: 320px;
  border: 1px solid var(--line);
}
.smp-map iframe { width: 100%; height: 100%; min-height: 320px; border: none; display: block; }
.smp-map__placeholder {
  height: 100%; min-height: 320px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 8px; color: var(--mute); text-align: center; padding: 20px;
}

/* ----- FAQ ----- */
.smp-faq { max-width: 800px; margin: 0 auto; }
.smp-faq__item { border-bottom: 1px solid var(--line); }
.smp-faq__item:first-child { border-top: 1px solid var(--line); }
.smp-faq__trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: var(--sp-5) 0;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  text-align: left;
  letter-spacing: -.01em;
  transition: color var(--t-fast);
}
.smp-faq__trigger:hover { color: var(--purple); }
.smp-faq__trigger .smp-i { transition: transform var(--t-base); flex-shrink: 0; margin-left: 16px; }
.smp-faq__item[open] .smp-faq__trigger { color: var(--purple); }
.smp-faq__item[open] .smp-faq__trigger .smp-i { transform: rotate(45deg); }
.smp-faq__content { padding: 0 0 var(--sp-5); color: var(--mute); font-size: .9375rem; line-height: 1.65; }

/* ----- CTA FINAL ----- */
.smp-cta-final {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139,92,246,.25), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(37,211,102,.12), transparent 50%),
    var(--ink);
  color: var(--white);
  padding: var(--sp-9) 0;
  text-align: center;
}
.smp-cta-final h2 { color: var(--white); margin-bottom: var(--sp-3); }
.smp-cta-final p { color: rgba(255,255,255,.75); font-size: 1.0625rem; margin-bottom: var(--sp-6); max-width: 600px; margin-left: auto; margin-right: auto; }
.smp-cta-final__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ----- FOOTER ----- */
.smp-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: var(--sp-7) 0 var(--sp-5); border-top: 1px solid var(--ink-2); }
.smp-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
@media (min-width: 640px) { .smp-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .smp-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-7); } }
.smp-footer h4 { color: var(--white); font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--sp-3); }
.smp-footer p, .smp-footer a, .smp-footer li { font-size: .875rem; color: rgba(255,255,255,.6); margin: 0 0 6px; }
.smp-footer a:hover { color: var(--white); }
.smp-footer__about p { color: rgba(255,255,255,.6); margin: var(--sp-3) 0; }
.smp-footer__social { display: flex; gap: 10px; margin-top: var(--sp-3); }
.smp-footer__social a {
  width: 36px; height: 36px;
  background: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin: 0;
}
.smp-footer__bottom {
  border-top: 1px solid var(--ink-2);
  padding-top: var(--sp-4);
  font-size: .75rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-3);
}

/* ----- BOTOES FLUTUANTES ----- */
.smp-float {
  position: fixed;
  bottom: 20px;
  z-index: 70;
  display: flex; flex-direction: column; gap: 10px;
}
.smp-float--wa { right: 16px; }
.smp-float__btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: var(--sh-3);
  transition: transform var(--t-fast);
}
.smp-float__btn:hover { transform: scale(1.08); color: var(--white); }
.smp-float__btn--wa { background: var(--wa); }
.smp-float__btn--wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--wa);
  opacity: .6;
  animation: smp-ring 2s infinite;
  z-index: -1;
}
@keyframes smp-ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.smp-float__btn--call { background: var(--ink); display: none; }
@media (max-width: 768px) {
  .smp-float__btn--call { display: inline-flex; bottom: calc(20px + 68px); right: 16px; position: fixed; }
}

/* ----- MOBILE BAR ----- */
.smp-mobilebar {
  display: grid; grid-template-columns: 1fr 1fr;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  z-index: 65;
  box-shadow: 0 -8px 20px rgba(10,14,26,.08);
}
.smp-mobilebar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--white);
}
.smp-mobilebar a:first-child { background: var(--wa); }
.smp-mobilebar a:last-child { background: var(--ink); }
@media (min-width: 768px) { .smp-mobilebar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 60px; } .smp-float--wa { bottom: calc(60px + 16px); } .smp-float__btn--call { bottom: calc(60px + 16px + 68px); } }

/* ----- ACESSIBILIDADE ----- */
.smp-skip {
  position: absolute; top: -100px; left: 0;
  padding: 12px 24px; background: var(--ink); color: var(--white);
  z-index: 9999;
}
.smp-skip:focus { top: 0; color: var(--white); }

/* ----- REVEAL ----- */
@media (prefers-reduced-motion: no-preference) {
  .smp-reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
  .smp-reveal.in { opacity: 1; transform: translateY(0); }
}

/* ----- REDUCED MOTION (acessibilidade) ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .smp-eyebrow::before,
  .smp-float__btn--wa::after { animation: none !important; }
}

/* ----- PRINT ----- */
@media print {
  .smp-float, .smp-mobilebar, .smp-cta-final, .smp-footer, .smp-header__cta, .smp-topbar { display: none !important; }
}
