/* ============================================
   SPLW Landing Page, Diagnóstico Gratuito Meta
   Identidade: laranja #FF4500 + dark + clean B2B
   ============================================ */

/* ============ TRIAKIS FONT ============ */
@font-face {
  font-family: 'Triakis';
  src: url('../fonts/TriakisFont-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Triakis';
  src: url('../fonts/TriakisFont-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Triakis';
  src: url('../fonts/TriakisFont-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Triakis';
  src: url('../fonts/TriakisFont-Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand */
  --primary: #FF4500;
  --primary-dark: #D63A00;
  --primary-light: #FF6A2E;
  --primary-soft: #FFF1EA;

  /* Neutros */
  --black: #111111;
  --charcoal: #1A1A1A;
  --night: #222222;
  --gray-900: #1F1F1F;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --white:    #FFFFFF;

  /* Sinal */
  --success: #16A34A;
  --warning: #F59E0B;
  --danger:  #DC2626;

  /* Tipografia */
  --font-sans: 'Urbanist', 'Inter', -apple-system, sans-serif;
  --font-display: 'Triakis', 'Inter', sans-serif;

  /* Tamanhos */
  --container: 1200px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 24px rgba(15, 20, 40, .08);
  --shadow-lg: 0 20px 60px rgba(15, 20, 40, .18);

  /* Transições */
  --t: 200ms ease;
}

/* Reset minimo */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--primary-dark); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--gray-900); line-height: 1.15; letter-spacing: .04em; text-transform: uppercase; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: .05em; }
h4 { font-size: .95rem; letter-spacing: .08em; }
p  { color: var(--gray-700); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrows */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  margin-bottom: 16px;
  position: relative;
  padding-left: 18px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 2px;
  background: var(--primary);
}
.eyebrow--light {
  color: rgba(255,255,255,.7);
}
.eyebrow--light::before { background: rgba(255,255,255,.5); }
.text-primary { color: var(--primary); }

/* Section heads */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; color: var(--gray-600); }
.section-head--light h2 { color: var(--white); }
.section-head--light p  { color: var(--gray-300); }

/* Botões — pill shape, dark hover (consistent com splw.pt) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .2s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255, 69, 0, .3);
}
.btn--primary:hover {
  background: #1A1A1A;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}
.btn--lg  { padding: 17px 34px; font-size: 1rem; }
.btn--sm  { padding: 10px 20px; font-size: .88rem; }
.btn--block { width: 100%; }
.btn__loading { display: none; }
.btn.is-loading .btn__label { display: none; }
.btn.is-loading .btn__loading { display: inline; }

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--black);
  color: var(--white);
  padding: 10px 0;
  transform: translateY(-100%);
  transition: transform 300ms ease;
  z-index: 999;
  border-bottom: 1px solid rgba(255,69,0,.5);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sticky-cta__text { font-weight: 600; font-size: .95rem; }
@media (max-width: 720px) {
  .sticky-cta { top: auto; bottom: 0; transform: translateY(100%); border-top: 2px solid var(--primary); border-bottom: none; }
  .sticky-cta.is-visible { transform: translateY(0); }
  .sticky-cta__text { font-size: .85rem; }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 24px;
}
.header__logo img { height: 32px; width: auto; }
.header__nav { display: flex; gap: 28px; }
.header__nav a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: .95rem;
}
.header__nav a:hover { color: var(--primary); }
@media (max-width: 860px) {
  .header__nav { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 700px at -5% 50%, rgba(255, 69, 0, .28), transparent 55%),
    radial-gradient(600px 500px at 105% 85%, rgba(255, 69, 0, .12), transparent 55%),
    #111111;
  z-index: 0;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero__copy h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
}
.hero__title-sub {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-top: 8px;
  line-height: 1.2;
}
.hero__lead { color: var(--gray-400); font-size: 1.05rem; margin-bottom: 24px; max-width: 520px; line-height: 1.7; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 32px; }
.hero__bullets li {
  color: var(--gray-200);
  font-size: 1rem; padding: 8px 0;
  display: flex; align-items: flex-start; gap: 12px;
}
.check {
  display: inline-block; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--primary);
  position: relative; margin-top: 3px;
}
.check::after {
  content: ""; position: absolute; left: 6px; top: 3px;
  width: 5px; height: 10px;
  border: solid var(--white); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check--light { background: var(--white); }
.check--light::after { border-color: var(--primary); }
.hero__actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; align-items: flex-start; }
.hero__micro { font-size: .88rem; color: var(--gray-400); }
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { color: var(--white); font-size: .95rem; font-weight: 700; }
.trust-item span { color: var(--gray-400); font-size: .8rem; }
.trust-divider { width: 1px; height: 32px; background: rgba(255, 255, 255, .15); }

/* Hero visual — foto com badge */
.hero__visual { display: flex; justify-content: center; }
.hero__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  filter: brightness(.9) contrast(1.05) saturate(.9);
}
.hero__photo-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255,69,0,.45);
}
.hero__photo-badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
}
.hero__photo-badge-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 4px;
}
@media (max-width: 960px) {
  .hero__photo-wrap { max-width: 400px; margin: 0 auto; }
  .hero__photo-badge { right: 12px; }
}
@media (max-width: 640px) {
  .hero__photo { aspect-ratio: 3/2; }
}
.report-mock {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform var(--t);
}
.report-mock:hover { transform: rotate(0deg) scale(1.02); }
.report-mock__header {
  background: var(--gray-100);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--gray-200);
}
.dot { width: 10px; height: 10px; border-radius: 999px; }
.dot--r { background: #FF5F57; }
.dot--y { background: #FEBC2E; }
.dot--g { background: #28C840; }
.report-mock__url {
  margin-left: 12px;
  font-size: .8rem;
  color: var(--gray-500);
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.report-mock__body { padding: 24px; }
.report-mock__title { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 16px; color: var(--gray-900); }
.report-mock__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--gray-100);
  font-size: .92rem; color: var(--gray-800);
}
.report-mock__row:last-of-type { border-bottom: none; }
.badge {
  font-size: .72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em;
}
.badge--ok     { background: #DCFCE7; color: #166534; }
.badge--warn   { background: #FEF3C7; color: #92400E; }
.badge--danger { background: #FEE2E2; color: #991B1B; }
.report-mock__progress {
  margin-top: 16px; height: 8px; background: var(--gray-100); border-radius: 999px; overflow: hidden;
}
.report-mock__progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.report-mock__score { margin-top: 10px; font-size: .9rem; color: var(--gray-700); }

@media (max-width: 960px) {
  .hero { min-height: auto; padding: 100px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero__copy h1 { font-size: clamp(2.4rem, 9vw, 3rem); }
}

/* ============ PROBLEMA ============ */
.problema { background: var(--charcoal); color: var(--white); padding: 96px 0; }
.problema .section-head h2 { color: var(--white); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .cards-3 { grid-template-columns: 1fr; } }

.card-dark {
  background: transparent;
  border: none;
  border-top: 2px solid rgba(255, 255, 255, .1);
  padding: 36px 8px 36px 0;
  position: relative;
  transition: border-color var(--t);
}
.card-dark:hover { border-top-color: var(--primary); }
.card-dark::before {
  content: "";
  position: absolute; top: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .4s ease;
}
.card-dark:hover::before { width: 100%; }
.card-dark__icon {
  width: 44px; height: 44px;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-dark__icon svg { width: 28px; height: 28px; }
.card-dark h3 { color: var(--white); margin-bottom: 12px; font-size: 1.15rem; }
.card-dark p { color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1.7; }

.problema__cta, .casos__cta {
  text-align: center; margin-top: 48px; color: var(--gray-300); font-size: 1.05rem;
}
.problema__cta a, .casos__cta a { color: var(--primary); font-weight: 600; }

/* ============ SOLUÇÃO ============ */
.solucao { padding: 96px 0; background: var(--gray-50); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 56px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--t);
}
.step:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  background: var(--primary);
  width: 36px; height: 36px;
  border-radius: 100px;
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: .98rem; }

.receive-box {
  background: var(--black);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}
.receive-box::before {
  content: ""; position: absolute; left: -80px; bottom: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255, 69, 0, .18), transparent 65%);
  border-radius: 999px;
  pointer-events: none;
}
.receive-box h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 24px;
  grid-column: 1 / -1;
  position: relative;
}
.receive-box ul {
  list-style: none; padding: 0; margin: 0;
  position: relative;
}
.receive-box li {
  display: flex; gap: 12px; padding: 8px 0;
  color: var(--gray-200); font-size: 1rem;
  align-items: flex-start;
}
.receive-box .btn {
  position: relative; align-self: end; justify-self: end;
}
@media (max-width: 760px) {
  .receive-box { grid-template-columns: 1fr; padding: 32px 24px; }
  .receive-box .btn { justify-self: stretch; width: 100%; }
}

/* ============ AUTORIDADE ============ */
.autoridade { padding: 96px 0; background: var(--white); }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white);
  border: none;
  border-left: 3px solid var(--gray-200);
  padding: 28px 28px 28px 32px;
  position: relative;
  transition: border-color var(--t), background var(--t);
}
.pillar:hover {
  border-left-color: var(--primary);
  background: var(--primary-soft);
}
.pillar__num {
  position: absolute; top: 16px; right: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  color: rgba(255, 69, 0, .07);
  line-height: 1;
  user-select: none;
}
.pillar h3 { margin-bottom: 12px; padding-right: 60px; }

/* ============ SERVIÇOS ============ */
.servicos { padding: 96px 0; background: var(--gray-50); }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--t);
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  position: relative;
  overflow: hidden;
}
.service-card__media::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 69, 0, .25), transparent 60%);
}
.service-card__media::after {
  content: "";
}
.service-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { margin-bottom: 12px; }
.service-card__body p { flex: 1; margin-bottom: 18px; font-size: .98rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: .95rem;
}
.link-arrow::after {
  content: "→"; transition: transform var(--t);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ============ PRODUTOS ============ */
.produtos {
  padding: 96px 0;
  background: var(--gray-50);
}
.produtos .section-head { margin-bottom: 64px; }

.prod-cat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.prod-cat:last-of-type { margin-bottom: 0; }
.prod-cat__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
}
.prod-cat__banner {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.prod-cat__banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.prod-cat:hover .prod-cat__banner img { transform: scale(1.02); }
.prod-cat__badge {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 69, 0, .28);
  flex-shrink: 0;
}
.prod-cat__title { flex: 1; }
.prod-cat__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.prod-cat__title h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.prod-cat__title p {
  color: var(--gray-600);
  font-size: 1rem;
  max-width: 720px;
}

.prod-grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.prod-grid--dense {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.prod-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--t);
}
.prod-item:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 69, 0, .1);
}
.prod-item__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.prod-item__icon svg { width: 22px; height: 22px; }
.prod-item div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.prod-item strong {
  color: var(--gray-900);
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.3;
}
.prod-item span {
  color: var(--gray-500);
  font-size: .82rem;
  line-height: 1.4;
}
.prod-cat__media {
  margin-top: 24px;
  aspect-ratio: 21 / 4;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  position: relative;
  overflow: hidden;
}
.prod-cat__media::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255, 69, 0, .12), transparent 50%);
}
.prod-cat__media::after {
  content: "";
}

/* Variante escura (categoria 2) */
.prod-cat--alt {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, .08);
}
.prod-cat--alt::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 69, 0, .15), transparent 60%);
  transform: translate(20%, -30%);
  pointer-events: none;
}
.prod-cat--alt .prod-cat__title h3 { color: var(--white); }
.prod-cat--alt .prod-cat__title p { color: var(--gray-300); }
.prod-cat--alt .prod-item {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .08);
}
.prod-cat--alt .prod-item:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--primary);
}
.prod-cat--alt .prod-item__icon {
  background: rgba(255, 69, 0, .18);
  color: var(--primary);
}
.prod-cat--alt .prod-item strong { color: var(--white); }
.prod-cat--alt .prod-item span { color: var(--gray-400); }
.prod-cat--alt .prod-cat__media {
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
}
.prod-cat--alt .prod-cat__media::after { color: var(--gray-500); }

.prod-foot {
  margin-top: 48px;
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.prod-foot p {
  font-size: 1.08rem;
  color: var(--gray-800);
  margin-bottom: 20px;
  font-weight: 500;
}
.prod-foot__actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* Botão ghost (outline) */
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}
.btn--ghost:hover {
  background: #1A1A1A;
  color: var(--white);
  border-color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

@media (max-width: 760px) {
  .prod-cat { padding: 32px 24px; }
  .prod-cat__head { grid-template-columns: 1fr; gap: 16px; }
  .prod-cat__badge { width: 48px; height: 48px; font-size: 1.1rem; }
  .prod-cat__title h3 { font-size: 1.3rem; }
  .prod-cat__media { aspect-ratio: 16 / 6; }
  .prod-foot { padding: 24px 20px; }
  .prod-foot__actions .btn { width: 100%; }
}

/* ============ CASOS ============ */
.casos { padding: 96px 0; background: var(--black); color: var(--white); }
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .cases { grid-template-columns: 1fr; } }
.case {
  background: var(--night);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
}
.case:hover { border-color: var(--primary); transform: translateY(-3px); }
.case__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.case__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.case:hover .case__media img { transform: scale(1.04); }
.case__body { padding: 28px; }
.tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255, 69, 0, .15);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.case__body h3 { color: var(--white); margin-bottom: 14px; font-size: 1.15rem; }
.case__body p { color: var(--gray-300); font-size: .92rem; margin-bottom: 8px; }
.case__body strong { color: var(--white); }

/* ============ TESTEMUNHOS ============ */
.testemunhos { padding: 96px 0; background: var(--gray-50); }
.quote {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: box-shadow var(--t), transform var(--t);
}
.quote:hover { box-shadow: 0 8px 40px rgba(0,0,0,.1); transform: translateY(-3px); }
.quote::before {
  content: “””;
  position: absolute; top: 12px; left: 28px;
  font-family: Georgia, serif;
  font-size: 7rem; line-height: 1;
  color: var(--primary);
  opacity: .12;
  pointer-events: none;
}
.quote p {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.75;
  padding-top: 16px;
}
.quote footer { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--gray-200); padding-top: 18px; }
.quote strong { color: var(--gray-900); font-size: .95rem; font-family: var(--font-display); }
.quote span { color: var(--gray-500); font-size: .82rem; }

/* ============ FAQ ============ */
.faq { padding: 96px 0; background: var(--gray-50); }
.accordion { max-width: 820px; margin: 0 auto; }
.accordion__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t);
}
.accordion__item[open] { border-color: var(--primary); }
.accordion__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 600;
  color: var(--gray-900);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .98rem;
  gap: 16px;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--t);
  line-height: 1;
}
.accordion__item[open] summary::after { transform: rotate(45deg); }
.accordion__item[open] summary { color: var(--primary); }
.accordion__item p {
  padding: 0 24px 24px;
  color: var(--gray-700);
  font-size: .98rem;
}

/* ============ CTA FINAL + FORM ============ */
.cta-final {
  background: linear-gradient(135deg, #0A0E1A 0%, #14182A 60%, #1F1410 100%);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 69, 0, .25), transparent 60%);
  transform: translate(30%, -30%);
}
.cta-final__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.cta-final__copy h2 { color: var(--white); margin-bottom: 20px; }
.cta-final__copy p { color: var(--gray-300); font-size: 1.08rem; margin-bottom: 28px; }
.cta-final__bullets { list-style: none; padding: 0; margin: 0; }
.cta-final__bullets li {
  display: flex; align-items: center; gap: 12px;
  color: var(--gray-200);
  padding: 8px 0;
  font-size: 1rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  color: var(--gray-800);
}
.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--gray-900);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.field-row .field { margin-bottom: 0; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-weight: 600; font-size: .9rem;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.field label span[aria-hidden] { color: var(--primary); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .96rem;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, .15);
}
.field input:invalid:not(:placeholder-shown),
.field select:invalid {
  /* sem estilo agressivo, deixamos JS marcar */
}
.field--check label {
  display: flex; align-items: flex-start; gap: 10px;
  font-weight: 400; font-size: .88rem; color: var(--gray-700);
  cursor: pointer;
}
.field--check input { width: auto; margin-top: 3px; }
.field--check a { text-decoration: underline; }
.form-card__micro {
  font-size: .82rem; color: var(--gray-500);
  margin-top: 14px; text-align: center;
}
.form-card__error {
  background: #FEE2E2;
  color: #991B1B;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  margin-top: 12px;
}

@media (max-width: 960px) {
  .cta-final__grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px 24px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: var(--gray-400);
}
.footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 64px 24px 48px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__logo { filter: brightness(1); }
.footer__tagline {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
}
.footer__contact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.footer__contact {
  font-size: .88rem;
  line-height: 1.8;
  text-align: right;
  color: var(--gray-400);
}
.footer__contact a { color: var(--gray-300); transition: color var(--t); }
.footer__contact a:hover { color: var(--primary); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: var(--gray-300);
  transition: all var(--t);
}
.footer__social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 18px 0;
  font-size: .8rem;
}
.footer__bottom .container {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom a { color: var(--gray-500); transition: color var(--t); }
.footer__bottom a:hover { color: var(--primary); }
@media (max-width: 700px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__contact-col { align-items: flex-start; }
  .footer__contact { text-align: left; }
}

/* Acessibilidade, foco visível em todos os interativos */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Anti-jank: sem scroll horizontal */
html, body { overflow-x: hidden; }

/* ============================================
   MELHORIAS & NOVOS COMPONENTES
   ============================================ */

/* Hero — lead emphasis */
.hero__lead-em {
  color: var(--primary);
  font-style: normal;
}

/* Hero — live counter trust item */
.trust-item--live { align-items: center; flex-direction: row; gap: 8px; }
.trust-item--live strong { font-size: .95rem; }
.trust-item__dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); }
  70%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Hero report mock — float animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-.5deg); }
  50%       { transform: translateY(-14px) rotate(.5deg); }
}
.report-mock {
  animation: float 6s ease-in-out infinite;
  border-top: 3px solid var(--primary) !important;
}
.report-mock:hover { animation: none; transform: rotate(0deg) scale(1.02); }

/* CTA principal — pulse glow (limitado ao hero CTA e form submit) */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 6px 24px rgba(255, 69, 0, .28); }
  50%       { box-shadow: 0 8px 36px rgba(255, 69, 0, .55); }
}
.hero__actions .btn--primary,
.form-card button[type="submit"] { animation: pulse-glow 3s ease-in-out infinite; }
.hero__actions .btn--primary:hover,
.form-card button[type="submit"]:hover { animation: none; }

/* ============ STATS STRIP ============ */
.stats-strip {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 40px 0;
}
.stats-strip__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.stat-item__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__num sup { font-family: 'Inter', Arial, sans-serif; font-size: .5em; vertical-align: super; line-height: 0; font-weight: 700; }
.hero__lead sup { font-size: .65em; vertical-align: super; line-height: 0; }
.stat-item__label {
  font-size: .8rem;
  color: var(--gray-400);
  line-height: 1.45;
  max-width: 160px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-item__sep {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .stats-strip__grid { justify-content: center; }
  .stat-item__sep { display: none; }
  .stat-item { min-width: 46%; flex: none; }
}
@media (max-width: 480px) {
  .stat-item { min-width: 100%; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-strip__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
}
.trust-strip__logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-logo {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-500);
  padding: 5px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  transition: all var(--t);
  background: var(--white);
}
.trust-logo:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}
@media (max-width: 640px) {
  .trust-strip__inner { gap: 14px; }
  .trust-strip__label { width: 100%; }
}

/* ============ TESTEMUNHOS — STARS ============ */
.quote__stars {
  display: block;
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 4px;
}
.quote footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ============ CASOS — FACTS LIST ============ */
.case__facts {
  list-style: none;
  padding: 0; margin: 0;
}
.case__facts li {
  color: var(--gray-300);
  font-size: .9rem;
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.case__facts li::before {
  content: "›";
  position: absolute; left: 0;
  color: var(--primary);
  font-weight: 700;
}
.case__facts strong { color: var(--white); font-size: .85rem; }

/* ============ FORM URGENCY ============ */
.form-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--gray-300);
  font-size: .9rem;
  margin-bottom: 20px;
}
.form-urgency strong { color: var(--white); }
.form-urgency__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.form-urgency__badge {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(34, 197, 94, .12);
  color: #4ade80;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, .2);
}

/* Form sub-title */
.form-card__sub {
  color: var(--gray-500);
  font-size: .9rem;
  margin-top: -16px;
  margin-bottom: 24px;
}

/* ============ CTA FINAL GRID — right column wrapper ============ */
.cta-final__grid { align-items: start; }
.cta-final__right { display: flex; flex-direction: column; }
.cta-final .form-urgency {
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
@media (max-width: 960px) {
  .cta-final__right { width: 100%; }
}

/* ============ MOBILE POLISH ============ */
@media (max-width: 640px) {
  .hero { padding: 60px 0 80px; }
  .stats-strip { padding: 28px 0; }
  .prod-cat { padding: 28px 20px; }
  .receive-box { padding: 28px 20px; }
  .cta-final { padding: 64px 0; }
}

/* ============ HERO — hexagonal pattern (como splw.pt) ============ */
.hero__bg::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50V17L28 0l28 17v33L28 66zM28 100L0 84V51l28-17 28 17v33L28 100z' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  pointer-events: none;
}

/* ============ SCROLL REVEAL ============ */
@media (prefers-reduced-motion: no-preference) {
  .card-dark,
  .pillar,
  .step,
  .case,
  .quote,
  .stat-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .card-dark.is-visible,
  .pillar.is-visible,
  .step.is-visible,
  .case.is-visible,
  .quote.is-visible,
  .stat-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ SECTION DIVIDERS ============ */
.problema::after,
.autoridade::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 3px;
  background: var(--primary);
  border-radius: 999px;
}
.problema,
.autoridade { position: relative; }

/* ============ REPORT MOCK GLOW ============ */
.hero__visual {
  position: relative;
}
.hero__visual::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255, 69, 0, .22), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.report-mock { position: relative; z-index: 1; }

/* ============ FORM CARD POLISH ============ */
.form-card {
  border-top: 3px solid var(--primary);
}

/* ============ PROD-FOOT ELEVATION ============ */
.prod-foot {
  box-shadow: var(--shadow);
}

/* ============ PILLAR HOVER GLOW ============ */
.pillar:hover {
  background: linear-gradient(145deg, var(--white) 0%, var(--primary-soft) 100%);
}

/* ============ STEPS CONNECTOR ============ */
@media (min-width: 860px) {
  .steps {
    position: relative;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 46px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: .25;
    z-index: 0;
  }
  .step { z-index: 1; position: relative; }
}

