/* ═══════════════════════════════════════════════════════════
   BTS Consulting — Premium Stylesheet v2
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --ink:        #06091a;
  --ink-mid:    #0c1535;
  --ink-light:  #14265a;
  --blue:       #1d4ed8;
  --blue-mid:   #2563eb;
  --blue-light: #3b82f6;
  --sky:        #38bdf8;
  --green:      #10b981;
  --orange:     #f59e0b;
  --red:        #ef4444;
  --white:      #ffffff;
  --offwhite:   #f8fafc;
  --gray-50:    #f1f5f9;
  --gray-100:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-800:   #1e293b;
  --gray-900:   #0f172a;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 100px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --shadow-xl:  0 16px 60px rgba(0,0,0,.24);
  --glow-blue:  0 0 40px rgba(37,99,235,.3);
  --glow-sky:   0 0 30px rgba(56,189,248,.25);

  --ease:       cubic-bezier(.4,0,.2,1);
  --t-fast:     .15s;
  --t-mid:      .25s;
  --t-slow:     .45s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Utilities ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section--dark  { background: var(--ink); }
.section--gray  { background: var(--gray-50); }
.hide-sm { display: inline; }
.text-gradient {
  background: linear-gradient(130deg, var(--blue-light) 0%, var(--sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Progress Bar ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-mid), var(--sky));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── Reveal animations ── */
.reveal, .reveal-hero {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible, .reveal-hero.visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--t-mid) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--nav {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-size: .85rem;
  padding: 9px 20px;
}
.btn--nav:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.3);
}

.btn--hero-primary {
  background: var(--blue-mid);
  color: var(--white);
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 24px rgba(37,99,235,.4);
}
.btn--hero-primary svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn--hero-primary:hover {
  background: var(--blue);
  box-shadow: 0 8px 32px rgba(37,99,235,.55);
  transform: translateY(-2px);
}

.btn--hero-ghost {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  color: var(--white);
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--r-lg);
}
.btn--hero-ghost svg { width: 18px; height: 18px; }
.btn--hero-ghost:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--blue-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}
.btn--primary:hover {
  background: var(--blue);
  box-shadow: 0 6px 24px rgba(37,99,235,.45);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--blue-mid);
  border: 2px solid var(--blue-mid);
}
.btn--outline:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}
.btn--white:hover { background: var(--gray-50); transform: translateY(-2px); }

.btn--block  { width: 100%; }
.btn--lg     { padding: 16px 36px; font-size: 1rem; }
.btn--form   { padding: 14px 24px; margin-top: 4px; }

/* ── Section Headers ── */
.section-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 14px;
}
.section-eyebrow--accent { color: var(--sky); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -.02em;
}
.section-title--light { color: var(--white); }

.section-desc {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t-mid), box-shadow var(--t-mid);
}
.navbar.scrolled {
  background: rgba(6,9,26,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 70px;
}
.navbar__logo { display: flex; align-items: baseline; gap: 2px; flex-shrink: 0; }
.logo-bts {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--sky);
  letter-spacing: .01em;
}
.logo-tag {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
}
.logo-stack{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-subtitle{
    margin-top:4px;
    font-size:.62rem;
    font-weight:500;
    letter-spacing:.10em;
    text-transform:uppercase;
    color:rgba(255,255,255,.45);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.navbar__links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
}
.navbar__links a:hover { color: var(--white); }

.navbar__right { flex-shrink: 0; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.navbar__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-mid);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(29,78,216,.55) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 85% 30%, rgba(56,189,248,.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(37,99,235,.1) 0%, transparent 50%);
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 80px 28px 100px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 7px 18px;
  border-radius: var(--r-full);
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--sky);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(56,189,248,.4); }
  50%       { opacity: .5; box-shadow: 0 0 0 5px rgba(56,189,248,0); }
}

.hero__headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.58);
  max-width: 660px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-full);
  padding: 8px 20px 8px 10px;
  margin-bottom: 64px;
}
.proof-avatars { display: flex; }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  color: var(--white);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.av2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.av3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.av4 { background: var(--blue-mid); }
.proof-text { text-align: left; }
.proof-text strong { display: block; font-size: .82rem; color: var(--white); }
.proof-text span  { font-size: .75rem; color: rgba(255,255,255,.45); }

.hero__metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 32px 16px;
  max-width: 780px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}
.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  flex: 1;
  min-width: 140px;
}
.metric-val {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--sky);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.metric-label {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
  text-align: center;
  line-height: 1.35;
}
.metric-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .4;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6));
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.001% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-text { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  flex: 1;
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  transition: color var(--t-mid);
}
.trust-logo:hover { color: var(--gray-600); }
.trust-logo svg { width: 20px; height: 20px; flex-shrink: 0; }
.trust-logo span { font-size: .82rem; font-weight: 500; white-space: nowrap; }

/* ══════════════════════════════════════════
   PAIN / PROBLEMA
══════════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.pain-card__scenario { display: flex; gap: 20px; margin-bottom: 24px; }
.scenario-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scenario-icon svg { width: 26px; height: 26px; }
.scenario-red    { background: rgba(239,68,68,.08);   color: var(--red); }
.scenario-orange { background: rgba(245,158,11,.08);  color: var(--orange); }
.scenario-yellow { background: rgba(234,179,8,.08);   color: #ca8a04; }

.pain-card__scenario h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pain-card__scenario p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.pain-card__scenario strong { color: var(--gray-800); font-weight: 700; }

.pain-stat {
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pain-stat__number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue-mid);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.pain-stat__desc {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.pain-cta {
  text-align: center;
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border: 1px solid #bfdbfe;
  border-radius: var(--r-xl);
  padding: 36px 40px;
}
.pain-cta p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.55;
}
.pain-cta strong { color: var(--gray-900); }

/* ══════════════════════════════════════════
   COMO FUNCIONA - STEPS
══════════════════════════════════════════ */
.steps-container {
  max-width: 800px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step {
  position: relative;
  display: flex;
  gap: 0;
}

.step__connector {
  position: absolute;
  left: 28px;
  top: 80px;
  bottom: -16px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(56,189,248,.4), rgba(56,189,248,.1));
}

.step__num {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--sky);
  width: 58px;
  flex-shrink: 0;
  padding-top: 28px;
  text-align: center;
  opacity: .5;
}

.step__body {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background var(--t-mid), border-color var(--t-mid);
}
.step__body:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
}

.step__icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__icon svg { width: 26px; height: 26px; color: var(--blue-light); }
.step__icon--accent { background: rgba(16,185,129,.15); }
.step__icon--accent svg { color: var(--green); }

.step__content { flex: 1; }
.step__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step__content p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 14px;
}
.step__content strong { color: rgba(255,255,255,.85); }

.step__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(37,99,235,.2);
  color: var(--blue-light);
  letter-spacing: .04em;
}
.step__tag--green { background: rgba(16,185,129,.15); color: var(--green); }

.steps-cta {
  text-align: center;
}
.steps-cta__note {
  margin-top: 14px;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════
   SPOTLIGHT (Autopilot)
══════════════════════════════════════════ */
.spotlight { background: var(--white); }
.spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.spotlight__content .section-eyebrow { color: var(--blue-mid); }
.spotlight__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--gray-900);
  margin: 12px 0 20px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.spotlight__content p {
  color: var(--gray-500);
  font-size: .975rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.spotlight__content strong { color: var(--gray-800); }

.spotlight__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.spotlight__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-600);
}
.spotlight__list li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.autopilot-demo {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 32px 28px 48px;
  position: relative;
}

.demo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.demo-card--done {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.demo-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.demo-icon svg { width: 22px; height: 22px; }
.demo-icon--blue   { background: #eff6ff; color: var(--blue-mid); }
.demo-icon--purple { background: #f5f3ff; color: #7c3aed; }
.demo-icon--green  { background: #f0fdf4; color: var(--green); }

.demo-card strong { display: block; font-size: .875rem; color: var(--gray-800); font-weight: 700; }
.demo-card span   { font-size: .78rem; color: var(--gray-400); margin-top: 2px; display: block; }
.demo-card--done strong { color: #15803d; }

.demo-arrow {
  text-align: center;
  padding: 6px 0;
}
.demo-arrow svg { width: 18px; height: 18px; color: var(--gray-300); margin: 0 auto; }

.demo-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: var(--r-full);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 12px rgba(16,185,129,.35);
}
.demo-badge svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════════
   SOLUÇÕES
══════════════════════════════════════════ */
.solutions-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .solutions-grid { grid-template-columns: 1fr; }
}

.solution-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  transition: all var(--t-mid);
}
.solution-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.solution-card--hero {
  background: var(--ink);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.solution-card--hero:hover {
  border-color: var(--sky);
  box-shadow: 0 12px 48px rgba(56,189,248,.2);
}

.solution-card__label {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--sky);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
}

.solution-card__icon {
  width: 60px; height: 60px;
  border-radius: var(--r-lg);
  background: rgba(37,99,235,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.solution-card--hero .solution-card__icon { background: rgba(56,189,248,.12); }
.solution-card__icon svg { width: 30px; height: 30px; color: var(--blue-light); }
.solution-card--hero .solution-card__icon svg { color: var(--sky); }

.solution-card__icon--sm { width: 52px; height: 52px; }
.solution-card__icon--sm svg { width: 26px; height: 26px; }

.solution-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.solution-card--hero h3 { color: var(--white); }
.solution-card h3 span { font-weight: 500; opacity: .75; }

.solution-card p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}
.solution-card--hero p { color: rgba(255,255,255,.55); }

.solution-results { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.result-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--gray-600);
}
.solution-card--hero .result-item { color: rgba(255,255,255,.7); }
.result-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

.solution-card__outcome {
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.solution-card--hero .solution-card__outcome { background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); }
.solution-card__outcome strong { color: var(--gray-800); }
.solution-card--hero .solution-card__outcome strong { color: var(--sky); }

/* ══════════════════════════════════════════
   PLANOS
══════════════════════════════════════════ */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}

.plano {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  transition: all var(--t-mid);
}
.plano:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.plano--featured {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(37,99,235,.07), var(--shadow-md);
}
.plano--featured:hover { box-shadow: 0 0 0 4px rgba(37,99,235,.1), var(--shadow-lg); }

.plano__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue-mid);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.plano__header { margin-bottom: 28px; }
.plano__tier {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-mid);
}
.plano__header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin: 6px 0 8px;
  letter-spacing: -.01em;
}
.plano__header p { font-size: .85rem; color: var(--gray-500); line-height: 1.5; }

.plano__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plano__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.45;
}
.plano__list li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.plano__list li strong { color: var(--gray-800); }

.planos-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--gray-400);
  text-align: center;
}
.planos-note svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════════ */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .diferenciais-grid { grid-template-columns: 1fr; }
}

.diferencial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--t-mid);
}
.diferencial-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-4px);
}

.diferencial-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 4px;
}
.diferencial-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.diferencial-card p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; }

.diferenciais-detalhe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .diferenciais-detalhe { grid-template-columns: 1fr; }
}

.detalhe-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  transition: all var(--t-mid);
}
.detalhe-item:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); }
.detalhe-icon {
  width: 40px; height: 40px;
  background: rgba(37,99,235,.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detalhe-icon svg { width: 20px; height: 20px; color: var(--blue-light); }
.detalhe-item div { display: flex; flex-direction: column; gap: 4px; }
.detalhe-item strong { font-size: .9rem; color: var(--white); }
.detalhe-item span  { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--blue-light); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
}
.faq-q span { font-size: .95rem; font-weight: 600; color: var(--gray-800); line-height: 1.4; }
.faq-arrow {
  width: 20px; height: 20px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--t-mid);
}
.faq-item.open .faq-arrow { transform: rotate(-180deg); color: var(--blue-mid); }
.faq-item.open .faq-q span { color: var(--blue-mid); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-final {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(29,78,216,.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(56,189,248,.1) 0%, transparent 55%);
}

.cta-final__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .cta-final__inner { grid-template-columns: 1fr; gap: 48px; }
}

.cta-final__content .section-eyebrow { margin-bottom: 16px; }
.cta-final__content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.cta-final__content p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.cta-final__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.cta-final__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
.trust-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* Contact form card */
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
}
.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-card > p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.cf-group { display: flex; flex-direction: column; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.cf-group input,
.cf-group select {
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  color: var(--white);
  font-size: .875rem;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  appearance: none;
}
.cf-group input::placeholder { color: rgba(255,255,255,.3); }
.cf-group select option { background: var(--gray-800); color: var(--white); }
.cf-group select { color: rgba(255,255,255,.5); }
.cf-group select:not(.is-placeholder) { color: var(--white); }
.cf-group input:focus,
.cf-group select:focus {
  border-color: var(--blue-light);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.5);
  padding: 72px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

.footer__logo { display: flex; align-items: baseline; gap: 2px; margin-bottom: 12px; }
.footer__brand .logo-bts { font-size: 1.3rem; }
.footer__brand .logo-tag { font-size: 1rem; }
.footer__brand > p { font-size: .875rem; line-height: 1.6; }

.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-mid);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.social-btn--linkedin  { background: #0a66c2; color: white; }
.social-btn--instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.social-btn--youtube   { background: #ff0000; color: white; }

.footer__nav h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav li a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}
.footer__nav li a:hover { color: var(--white); }

.footer__contact-info h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer__contact-info p {
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.footer__contact-info a {
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
}
.footer__contact-info a:hover { color: var(--white); }
.footer__contact-info strong { color: rgba(255,255,255,.7); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal span { font-size: .78rem; color: rgba(255,255,255,.25); }

.footer__compliance-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: rgba(16,185,129,.6);
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.15);
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.footer__compliance-badge svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 22px 14px 18px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: all var(--t-mid);
  animation: floatIn .6s .8s var(--ease) both;
}
.whatsapp-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-float:hover {
  background: #1ebe5a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.whatsapp-float__label { white-space: nowrap; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) scale(.8); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gray-800);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  opacity: 0;
  transition: all .4s var(--ease);
  border: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .spotlight__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__metrics { max-width: 100%; }
  .metric-card { min-width: 120px; padding: 0 24px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hide-sm { display: none; }

  .navbar__links,
  .navbar__right { display: none; }

  .navbar__links.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(6,9,26,.98);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 8px 0;
  }
  .navbar__links.open a {
    padding: 14px 28px;
    font-size: .95rem;
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .navbar__toggle { display: flex; }

  .hero__headline { font-size: 2.4rem; }
  .hero__ctas { flex-direction: column; }
  .hero__metrics {
    flex-wrap: wrap;
    padding: 24px 16px;
  }
  .metric-sep { display: none; }
  .metric-card { min-width: 45%; padding: 16px 12px; }

  .cta-final__ctas { flex-direction: column; }
  .cf-row { grid-template-columns: 1fr; }

  .whatsapp-float__label { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
  .whatsapp-float svg { width: 28px; height: 28px; }

  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal  { flex-direction: column; gap: 4px; }

  .pain-grid { grid-template-columns: 1fr; }
  .planos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__inner { padding: 60px 16px 80px; }
  .trust-bar__label { display: none; }
  .pain-cta { padding: 24px 20px; }
  .contact-card { padding: 28px 20px; }
}
/* ══════════════════════════════════════════
   BTS PROTEGE SCORE PROTOTYPE
══════════════════════════════════════════ */

.prototype-notice {
  max-width: 780px;
  margin: -32px auto 28px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--gray-600);
  font-size: .9rem;
  text-align: center;
}

.prototype-notice strong {
  color: var(--gray-900);
}

.prototype-frame {
  background: var(--ink);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.prototype-frame iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: var(--ink);
}

.prototype-cta {
  margin-top: 32px;
  text-align: center;
}

.prototype-cta p {
  margin-bottom: 16px;
  color: var(--gray-600);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .prototype-frame iframe {
    min-height: 720px;
  }

  .prototype-notice {
    margin-top: -24px;
    font-size: .82rem;
  }
}
/* ══════════════════════════════════════════════════════════════════
   CONVERSÃO — 3 FEATURES
   Cole no FINAL do css/styles.css
══════════════════════════════════════════════════════════════════ */

/* ── OPÇÃO 2: ANNOUNCEMENT BAR ─────────────────────────────────── */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #0a1628 0%, #0e2040 60%, #0a1628 100%);
  border-bottom: 1px solid rgba(0,180,255,.25);
  padding: 0 20px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(0);
  transition: transform .3s ease, opacity .3s ease;
}

.announce-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announce-bar__content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.announce-bar__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00b4ff;
  flex-shrink: 0;
  animation: ab-pulse 1.6s ease infinite;
}

@keyframes ab-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.6); }
}

.announce-bar__text {
  font-size: .82rem;
  color: rgba(214,234,248,.8);
  white-space: nowrap;
}

.announce-bar__text strong {
  color: #fff;
  font-weight: 600;
}

.announce-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: #00b4ff;
  background: rgba(0,180,255,.1);
  border: 1px solid rgba(0,180,255,.3);
  border-radius: 20px;
  padding: 4px 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}

.announce-bar__cta:hover {
  background: rgba(0,180,255,.2);
  color: #fff;
}

.announce-bar__close {
  width: 24px; height: 24px;
  background: transparent;
  border: none;
  color: rgba(214,234,248,.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 4px;
  flex-shrink: 0;
  transition: color .15s;
  padding: 0;
}

.announce-bar__close:hover { color: #fff; }

/* Empurra o body para baixo quando a bar está visível */
body.has-announce-bar .navbar {
  top: 44px;
  transition: top .3s ease;
}

body.has-announce-bar .progress-bar {
  top: 44px;
}

body.has-announce-bar .hero {
  padding-top: 114px;
}

@media (max-width: 600px) {
  .announce-bar__text { font-size: .72rem; }
  .announce-bar__text span { display: none; }
  .announce-bar { gap: 10px; }
}


/* ── OPÇÃO 1: WHATSAPP BUTTON INTELIGENTE ───────────────────────── */
.whatsapp-float {
  transition:
    background .3s ease,
    box-shadow .3s ease,
    transform .2s ease;
}

/* Estado "demo" — quando muda para azul */
.whatsapp-float.mode-demo {
  background: #00b4ff !important;
  box-shadow: 0 8px 32px rgba(0,180,255,.5) !important;
}

.whatsapp-float.mode-demo svg {
  display: none;
}

.whatsapp-float.mode-demo::before {
  content: '▶';
  font-size: 1rem;
  color: #000;
  font-weight: 700;
}

.whatsapp-float.mode-demo .whatsapp-float__label {
  color: #000 !important;
}

/* Animação de shake para chamar atenção */
@keyframes float-shake {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%       { transform: translateY(-4px) rotate(-3deg); }
  75%       { transform: translateY(-4px) rotate(3deg); }
}

.whatsapp-float.shake {
  animation: float-shake .5s ease;
}


/* ── OPÇÃO 3: STICKY CTA ────────────────────────────────────────── */
.score-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 910;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,180,255,.2);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  flex-wrap: wrap;
}

.score-sticky.visible {
  transform: translateY(0);
}

.score-sticky__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.score-sticky__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0,180,255,.12);
  border: 1px solid rgba(0,180,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.score-sticky__text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.score-sticky__text span {
  font-size: .75rem;
  color: rgba(214,234,248,.5);
}

.score-sticky__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.score-sticky__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #00b4ff;
  color: #000;
  font-size: .82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .2s, transform .15s;
}

.score-sticky__cta:hover {
  box-shadow: 0 0 20px rgba(0,180,255,.5);
  transform: translateY(-1px);
}

.score-sticky__dismiss {
  background: transparent;
  border: none;
  color: rgba(214,234,248,.3);
  cursor: pointer;
  font-size: 1.1rem;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color .15s;
  padding: 0;
}

.score-sticky__dismiss:hover { color: rgba(214,234,248,.7); }

/* Esconde WhatsApp quando sticky CTA está ativo */
body.sticky-demo-visible .whatsapp-float {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(16px) scale(0.85) !important;
}

/* Não sobrepor o botão do WhatsApp no mobile */
@media (max-width: 768px) {
  .score-sticky {
    padding: 10px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .score-sticky__actions { width: 100%; }
  .score-sticky__cta { flex: 1; justify-content: center; }
  /* Sobe o whatsapp float quando o sticky está visível */
  .score-sticky.visible ~ .whatsapp-float,
  body.sticky-demo-visible .whatsapp-float {
    bottom: 130px;
  }
}

