/* ============================================================
   sites/style.css — D3 Enterprise · Sites Conversion Page
   Extends ../css/home.css — identidade própria, foco em conversão.
   ============================================================ */

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroCycleIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroCycleOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes heroFloatAlt {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}

/* ============================================================
   1. HERO — Split layout com mockups e prova social
   ============================================================ */
.sv-hero {
  position: relative;
  background: #020817;
  overflow: clip;
  min-height: 100vh;
  padding-top: var(--hdr-h, 68px);
  display: flex;
  align-items: center;
}


.sv-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Atmospheric blobs */
.sv-hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(72px);
}
.sv-hero__blob--1 {
  width: 760px; height: 580px;
  top: -180px; right: -80px;
  background: radial-gradient(ellipse at center, rgba(29,78,216,.22) 0%, transparent 65%);
}
.sv-hero__blob--2 {
  width: 520px; height: 420px;
  bottom: -120px; left: 5%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.16) 0%, transparent 65%);
}
.sv-hero__blob--3 {
  width: 440px; height: 340px;
  top: 20%; left: 38%;
  background: radial-gradient(ellipse at center, rgba(14,165,233,.13) 0%, transparent 65%);
  filter: blur(90px);
}

.sv-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
  padding: clamp(32px, 5vh, 72px) 24px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

/* Left side */
.sv-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: heroFadeUp .7s ease both;
}

.sv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(52,211,153,.08);
  color: #6ee7b7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  border: 1px solid rgba(52,211,153,.25);
  margin-bottom: 28px;
}
.sv-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  animation: badgePulse 2s ease infinite;
}

.sv-hero__title {
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.sv-hero__cycle-wrap { display: inline; }
.sv-hero__cycle {
  display: inline;
  color: #38bdf8;
  font-weight: 800;
  text-shadow: 0 0 24px rgba(56,189,248,.55), 0 0 8px rgba(56,189,248,.3);
  animation: heroCycleIn .4s ease both;
}
.sv-hero__cycle.cycling-out { animation: heroCycleOut .3s ease forwards; }
.sv-hero__cycle.cycling-in  { animation: heroCycleIn .4s ease both; }

.sv-hero__sub {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 34px;
}

.sv-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: heroFadeUp .7s .2s ease both;
}

.sv-hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: heroFadeUp .7s .35s ease both;
}
.sv-hero__stat { display: flex; flex-direction: column; gap: 2px; }
.sv-hero__stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.sv-hero__stat span { font-size: 0.72rem; color: rgba(148,163,184,.8); font-weight: 500; }
.sv-hero__stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* Right side */
.sv-hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  animation: heroFadeUp .7s .15s ease both;
}

.sv-hero__right-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 560px;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(29,78,216,.32) 0%,
    rgba(14,165,233,.14) 40%,
    transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Browser mockup frames */
.sv-hero__mock {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: box-shadow .4s ease;
}
.sv-hero__mock:hover {
  box-shadow: 0 32px 72px rgba(0,0,0,.8), 0 0 0 1.5px rgba(59,130,246,.5);
}
.sv-hero__mock-wrap {
  position: relative;
  z-index: 2;
  animation: heroFloat 5s ease-in-out infinite;
}
.sv-hero__mock--main {
  width: clamp(340px, 36vw, 520px);
  box-shadow:
    0 28px 64px rgba(0,0,0,.75),
    0 0 0 1px rgba(59,130,246,.25),
    0 0 60px rgba(29,78,216,.2);
}
.sv-hero__mock--sec {
  width: 240px;
  bottom: 10px; right: 0;
  opacity: .85;
  animation: heroFloatAlt 6s 1s ease-in-out infinite;
}

.sv-hero__mock-bar {
  height: 28px;
  background: rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  flex-shrink: 0;
}
.sv-hero__mock-bar > span {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.sv-hero__mock-bar > span:nth-child(1) { background: rgba(255,90,90,.55); }
.sv-hero__mock-bar > span:nth-child(2) { background: rgba(255,190,60,.45); }
.sv-hero__mock-bar > span:nth-child(3) { background: rgba(70,200,100,.45); }

.sv-hero__mock-url {
  flex: 1;
  font-size: 0.5rem;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  border-radius: 3px;
  padding: 2px 7px;
  margin-left: 4px;
  display: flex; align-items: center; gap: 4px;
  overflow: hidden; white-space: nowrap;
}
.sv-hero__mock-url i { color: #34d399; font-size: 0.48rem; }

/* Floating proof cards */
.sv-hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(8,14,30,.88);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  padding: 11px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
  z-index: 5;
  white-space: nowrap;
}
.sv-hero__float--lead {
  top: -18px; right: -12px;
  animation: heroFadeUp .7s .5s ease both, heroFloatAlt 7s 2s ease-in-out infinite;
}
.sv-hero__float--seo {
  bottom: -18px; left: -12px;
  z-index: 30;
  border-color: rgba(56,189,248,.2);
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 20px rgba(14,165,233,.12), inset 0 1px 0 rgba(255,255,255,.06);
  animation: heroFadeUp .7s .7s ease both, heroFloatAlt 8s 3s ease-in-out infinite;
}

.sv-hero__float-ico {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.sv-hero__float-ico--green { background: rgba(52,211,153,.15); color: #34d399; }
.sv-hero__float-ico--blue  { background: rgba(59,130,246,.15); color: #60a5fa; }
.sv-hero__float-text { display: flex; flex-direction: column; gap: 3px; }
.sv-hero__float-text strong { font-size: .86rem; font-weight: 700; color: #fff; }
.sv-hero__float-text span   { font-size: .74rem; color: rgba(148,163,184,.8); }

/* Mockup body content */
.sv-hero__mock img { display: none; }

.sv-hero__mock-body {
  flex: 1;
  overflow: hidden;
  padding: 12px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sv-hero__mock-body--dark  { background: linear-gradient(160deg, #090f1e 0%, #0d1b38 100%); }
.sv-hero__mock-body--light { background: linear-gradient(160deg, #f8faff 0%, #eef2ff 100%); }

.hmb__nav {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.12);
  margin-bottom: 8px;
}
.hmb__nav--light { background: rgba(29,78,216,.15); }

.hmb__hero-block {
  background: linear-gradient(120deg, rgba(29,78,216,.5), rgba(14,165,233,.3));
  border-radius: 6px;
  padding: 10px 10px 8px;
  display: flex; flex-direction: column; gap: 5px;
}
.hmb__hero-title { height: 7px; border-radius: 3px; background: rgba(255,255,255,.7); }
.hmb__hero-title--sm { width: 60%; height: 5px; background: rgba(255,255,255,.4); }
.hmb__hero-cta {
  margin-top: 4px; width: 45%; height: 10px; border-radius: 4px;
  background: linear-gradient(90deg, #3b82f6, #0ea5e9);
}

.hmb__cards { display: flex; gap: 5px; }
.hmb__card {
  flex: 1; border-radius: 5px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 5px;
  display: flex; flex-direction: column; gap: 4px;
}
.hmb__card-ico { width: 16px; height: 16px; border-radius: 4px; background: rgba(59,130,246,.35); }
.hmb__card-lines { display: flex; flex-direction: column; gap: 3px; }
.hmb__card-lines span { display: block; height: 3px; border-radius: 2px; background: rgba(255,255,255,.18); }
.hmb__card-lines span:last-child { width: 65%; }

.hmb__section-row { display: flex; gap: 6px; }
.hmb__img-block {
  flex: 0 0 38%; border-radius: 5px;
  background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(14,165,233,.15));
  min-height: 36px;
}
.hmb__text-block { flex: 1; display: flex; flex-direction: column; gap: 4px; padding-top: 2px; }
.hmb__text-block span { display: block; height: 3px; border-radius: 2px; background: rgba(255,255,255,.18); }
.hmb__text-block span:nth-child(2) { width: 80%; }
.hmb__text-block span:nth-child(3) { width: 55%; }
.hmb__btn { width: 40% !important; height: 8px !important; border-radius: 4px !important; background: rgba(59,130,246,.5) !important; margin-top: 2px; }

.hmb__banner { height: 32px; border-radius: 5px; background: linear-gradient(120deg, #1d4ed8, #0ea5e9); opacity: .7; }
.hmb__list { display: flex; flex-direction: column; gap: 5px; }
.hmb__list-item { display: flex; align-items: center; gap: 5px; }
.hmb__check { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; flex-shrink: 0; opacity: .7; }
.hmb__list-item span { display: block; height: 4px; border-radius: 2px; background: rgba(0,0,0,.15); flex: 1; }
.hmb__list-item:nth-child(2) span { width: 70%; }
.hmb__list-item:nth-child(3) span { width: 50%; }
.hmb__cta-strip { height: 14px; border-radius: 5px; background: linear-gradient(90deg, #1d4ed8, #0ea5e9); opacity: .5; margin-top: 2px; }

/* ============================================================
   2. PROBLEMA / DOR — Linhas horizontais, fundo escuro imersivo
   ============================================================ */
.sv-dor {
  position: relative;
  background: linear-gradient(180deg, #020817 0%, #060d1f 100%);
  overflow: hidden;
  padding: 96px 0;
}

.sv-dor__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sv-dor__bg-grid { display: none; }
.sv-dor__bg-blob {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(239,68,68,.07) 0%, transparent 60%);
  filter: blur(48px);
}

.sv-dor__inner { position: relative; z-index: 1; }

.sv-dor__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.sv-dor__label { color: #f87171 !important; }
.sv-dor__title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.sv-dor__title em {
  font-style: normal;
  color: #f87171;
}

/* Problem rows container */
.sv-dor__items {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sv-dor__item {
  display: grid;
  grid-template-columns: 40px 52px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
  cursor: default;
}
.sv-dor__item:last-child { border-bottom: none; }
.sv-dor__item:hover { background: rgba(239,68,68,.05); }

.sv-dor__num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.2);
  line-height: 1;
  text-transform: uppercase;
}

.sv-dor__item-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(239,68,68,.10);
  border: 1px solid rgba(239,68,68,.18);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.sv-dor__item:hover .sv-dor__item-ico {
  background: rgba(239,68,68,.22);
  transform: scale(1.08);
}

.sv-dor__item-body strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 5px;
}
.sv-dor__item-body span {
  font-size: 0.875rem;
  color: rgba(148,163,184,.8);
  line-height: 1.65;
}

.sv-dor__item-stat {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(239,68,68,.22);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  text-align: right;
  min-width: 100px;
  transition: color var(--transition);
}
.sv-dor__item-stat small {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.sv-dor__item:hover .sv-dor__item-stat { color: rgba(239,68,68,.48); }

.sv-dor__cta {
  text-align: center;
  margin-top: 56px;
}
.sv-dor__cta-text {
  font-size: 0.95rem;
  color: rgba(148,163,184,.75);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* ============================================================
   3. SOLUÇÃO — Split layout, sem cards excessivos
   ============================================================ */
.sv-sol {
  background: var(--bg-2);
}

.sv-sol__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sv-sol__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.sv-sol__lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}

.sv-sol__feats {
  display: flex;
  flex-direction: column;
}

.sv-sol__feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(16,185,129,0.12);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}
.sv-sol__feat.visible {
  opacity: 1;
  transform: translateX(0);
}
.sv-sol__feat:first-child { padding-top: 0; }
.sv-sol__feat:last-child  { border-bottom: none; padding-bottom: 0; }

.sv-sol__feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16,185,129,0.10);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.sv-sol__feat:hover .sv-sol__feat-ico {
  background: #10b981;
  color: #fff;
  transform: scale(1.08);
}

.sv-sol__feat-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.sv-sol__feat-text span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   4. COMO FUNCIONA — 3 passos horizontais
   ============================================================ */
.sv-steps { background: var(--bg); }

.sv-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
}
.sv-steps__grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(100%/6 + 8px);
  right: calc(100%/6 + 8px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(29,78,216,.25) 20%, rgba(29,78,216,.25) 80%, transparent);
  pointer-events: none;
  z-index: 0;
}

.sv-step {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sv-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29,78,216,.35);
}

.sv-step__num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-sub);
  border: 1px solid rgba(29,78,216,.2);
  border-radius: 6px;
  padding: 3px 8px;
  display: inline-block;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.sv-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-sub);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.sv-step:hover .sv-step__icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.sv-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.sv-step p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}

.sv-step--hl {
  background: var(--bg-card-2);
  border-color: rgba(29,78,216,.28);
}
[data-theme="dark"] .sv-step--hl { background: #1a2744; }
.sv-step--hl .sv-step__icon {
  background: var(--primary);
  color: #fff;
}

.sv-steps__cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   5. PORTFÓLIO
   ============================================================ */
.sv-port { background: var(--bg-2); }

.sv-port__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sv-pcard {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sv-pcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.sv-pcard__visual {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.sv-pcard__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.sv-pcard:hover .sv-pcard__overlay { opacity: 1; }

.sv-pcard__link {
  background: rgba(255,255,255,.92) !important;
  color: #111827 !important;
  border-color: transparent !important;
  font-weight: 600;
}

.sv-pcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sv-pcard__info {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv-pcard__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-sub);
  padding: 3px 10px;
  border-radius: 50px;
  align-self: flex-start;
}

.sv-pcard__info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.sv-pcard__info p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.62;
  flex: 1;
}

.sv-pcard__result {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}
.sv-pcard__result i { color: #10b981; flex-shrink: 0; margin-top: 1px; }

.sv-pcard--cta {
  border-color: rgba(29,78,216,.3);
  background: var(--bg-card-2);
  min-height: 320px;
}
.sv-pcard__cta-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 28px;
  gap: 14px;
}
.sv-pcard__cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-sub);
  color: var(--primary);
  border: 2px dashed rgba(29,78,216,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-style var(--transition);
}
.sv-pcard--cta:hover .sv-pcard__cta-icon {
  background: var(--primary);
  color: #fff;
  border-style: solid;
  transform: scale(1.08);
}
.sv-pcard__cta-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.sv-pcard__cta-body p  { font-size: 0.87rem; color: var(--muted); line-height: 1.62; }

/* ============================================================
   6. DEPOIMENTOS
   ============================================================ */
.sv-social { background: var(--bg); }

.sv-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sv-reviews--trio {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.sv-review {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sv-review:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.sv-review__qmark {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(29,78,216,.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: Georgia, serif;
}
[data-theme="dark"] .sv-review__qmark { color: rgba(59,130,246,.1); }

.sv-review__stars { display: flex; gap: 3px; }
.sv-review__stars i { color: #f59e0b; font-size: 0.8rem; }

.sv-review__quote {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}

.sv-review__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.sv-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--bg-2);
}
.sv-review__author > div strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.sv-review__author > div span { font-size: 0.76rem; color: var(--muted); }
.sv-review__ext {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.75rem;
  transition: color var(--transition);
}
.sv-review__ext:hover { color: var(--primary); }

.sv-review--hl {
  background: var(--bg-card-2);
  border-color: rgba(29,78,216,.22);
}
.sv-review--hl .sv-review__qmark { color: rgba(29,78,216,.12); }

/* ============================================================
   7. PREÇO / INVESTIMENTO
   ============================================================ */
.sv-preco { background: var(--bg-2); }

.sv-preco__track {
  position: relative;
}
.sv-preco__track::before,
.sv-preco__track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}
.sv-preco__track::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-2) 0%, transparent 100%);
}
.sv-preco__track::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-2) 0%, transparent 100%);
}
.sv-preco__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
}
.sv-preco__arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(29,78,216,.30);
}
.sv-preco__arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.sv-preco__arrow--prev { left: 6px; }
.sv-preco__arrow--next { right: 6px; }

.sv-preco__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 16px 80px 72px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sv-preco__grid::-webkit-scrollbar { display: none; }

.sv-preco__card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.sv-preco__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.sv-preco__card--hl {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(29,78,216,.32);
  transform: translateY(-8px);
}
.sv-preco__card--hl:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 64px rgba(29,78,216,.45);
}

.sv-preco__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #34d399;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.sv-preco__type {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}
.sv-preco__card--hl .sv-preco__type { color: rgba(255,255,255,.7); }

.sv-preco__price span {
  font-size: 0.84rem;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.sv-preco__card--hl .sv-preco__price span { color: rgba(255,255,255,.65); }

.sv-preco__price strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.sv-preco__card--hl .sv-preco__price strong { color: #fff; }

.sv-preco__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.sv-preco__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.sv-preco__card--hl .sv-preco__list li { color: rgba(255,255,255,.88); }

.sv-preco__list li i { color: #10b981; font-size: 0.72rem; flex-shrink: 0; }
.sv-preco__card--hl .sv-preco__list li i { color: #6ee7b7; }

.sv-preco__card--hl .btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.sv-preco__card--hl .btn-outline:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.sv-preco__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 32px;
}

/* ============================================================
   8. CTA FINAL — Formulário
   ============================================================ */
.ctaf__field select { display: none; }

/* Custom Select */
.csel {
  position: relative;
  width: 100%;
  user-select: none;
}
.csel__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .9rem;
  font-family: inherit;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  outline: none;
}
.csel__trigger:focus,
.csel.open .csel__trigger {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.14);
}
.csel__trigger.has-value { color: #fff; }
.csel__arrow {
  font-size: .65rem;
  color: rgba(255,255,255,.5);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.csel.open .csel__arrow { transform: rotate(180deg); }
.csel__list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #1e2d50;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  overflow: hidden;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  padding: 4px;
}
.csel.open .csel__list { display: block; }
.csel__item {
  padding: 10px 14px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  border-radius: 7px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.csel__item:hover { background: rgba(255,255,255,.1); color: #fff; }
.csel__item.selected { background: rgba(99,102,241,.3); color: #fff; font-weight: 600; }

/* CTA checklist */
.sites-cta__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.sites-cta__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.sites-cta__checklist li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(52,211,153,.2);
  border: 1px solid rgba(52,211,153,.45);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
}

.sites-cta__wabtn {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
  margin-bottom: 12px;
}
.sites-cta__wabtn:hover {
  background: #1ebe5d !important;
  border-color: #1ebe5d !important;
  box-shadow: 0 8px 24px rgba(37,211,102,.35) !important;
  transform: translateY(-2px);
}

/* ============================================================
   WAVE SEPARATORS
   ============================================================ */
.wave-sep--dor-to-sol { background: #060d1f; }
.wave-sep--dor-to-sol::after { background: var(--bg-2); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered reveals */
.sv-reviews .sv-review.reveal:nth-child(1) { transition-delay: 0ms; }
.sv-reviews .sv-review.reveal:nth-child(2) { transition-delay: 100ms; }
.sv-reviews .sv-review.reveal:nth-child(3) { transition-delay: 200ms; }

.sv-steps__grid .sv-step.reveal:nth-child(1) { transition-delay: 0ms; }
.sv-steps__grid .sv-step.reveal:nth-child(2) { transition-delay: 100ms; }
.sv-steps__grid .sv-step.reveal:nth-child(3) { transition-delay: 200ms; }

.sv-port__grid .sv-pcard.reveal:nth-child(1) { transition-delay: 0ms; }
.sv-port__grid .sv-pcard.reveal:nth-child(2) { transition-delay: 100ms; }
.sv-port__grid .sv-pcard.reveal:nth-child(3) { transition-delay: 200ms; }

.sv-preco__grid .sv-preco__card.reveal:nth-child(1) { transition-delay: 0ms; }
.sv-preco__grid .sv-preco__card.reveal:nth-child(2) { transition-delay: 120ms; }
.sv-preco__grid .sv-preco__card.reveal:nth-child(3) { transition-delay: 240ms; }
.sv-preco__grid .sv-preco__card.reveal:nth-child(4) { transition-delay: 360ms; }

/* ============================================================
   NAVBAR — 3-column centered alignment (override home.css)
   ============================================================ */
.hdr__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}
.hdr__logo {
  position: static;
  transform: none;
  grid-column: 2;
  justify-self: center;
}
.hdr__nav    { grid-column: 1; display: flex; align-items: center; }
.hdr__actions { grid-column: 3; margin-left: 0; justify-self: end; }

/* Dropdown */
.hdr__dropdown { position: relative; }
.hdr__link--drop { display: inline-flex; align-items: center; gap: 4px; }
.hdr__drop-icon { font-size: 0.6rem; transition: transform 0.2s ease; }
.hdr__dropdown:hover .hdr__drop-icon,
.hdr__dropdown.open  .hdr__drop-icon { transform: rotate(180deg); }

.hdr__drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 248px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.05);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
  pointer-events: none;
}
.hdr__dropdown:hover .hdr__drop-menu,
.hdr__dropdown.open  .hdr__drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
[data-theme="dark"] .hdr__drop-menu {
  background: rgba(13,19,36,0.97);
  border-color: rgba(255,255,255,0.10);
}

.hdr__drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 11px;
  border-radius: 11px;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.hdr__drop-item::after { display: none; }
.hdr__drop-item:hover  { background: rgba(29,78,216,0.07); color: var(--primary); }
[data-theme="dark"] .hdr__drop-item       { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .hdr__drop-item:hover { background: rgba(255,255,255,0.08); color: #fff; }

.hdr__drop-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--primary-sub);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.hdr__drop-item:hover .hdr__drop-ico { background: var(--primary); color: #fff; }
.hdr__drop-item strong { display: block; font-size: 0.875rem; font-weight: 600; line-height: 1.25; }
.hdr__drop-desc { font-size: 0.76rem; color: #9ca3af; display: block; margin-top: 2px; }
[data-theme="dark"] .hdr__drop-desc { color: rgba(255,255,255,0.66); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1400px) {
  .sv-hero__inner      { max-width: 1400px; gap: 60px; }
}

@media (max-width: 1024px) {
}

@media (max-width: 960px) {
  /* Hero */
  .sv-hero__inner { grid-template-columns: 1fr; gap: 0; padding: 60px 24px 48px; text-align: center; }
  .sv-hero__left  { align-items: center; }
  .sv-hero__sub   { max-width: 560px; margin-left: auto; margin-right: auto; }
  .sv-hero__stats { justify-content: center; }
  .sv-hero__right { display: none; }

  /* Dor */
  .sv-dor__item {
    grid-template-columns: 32px 44px 1fr;
    padding: 24px 24px;
    gap: 16px;
  }
  .sv-dor__item-stat { display: none; }

  /* Solução */
  .sv-sol__split { grid-template-columns: 1fr; gap: 40px; }
  .sv-sol__feat  { opacity: 1; transform: none; transition: none; }

  /* Passos */
  .sv-steps__grid { grid-template-columns: 1fr; }
  .sv-steps__grid::before { display: none; }

  /* Portfólio */
  .sv-port__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  /* Depoimentos */
  .sv-reviews       { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .sv-reviews--trio { grid-template-columns: 1fr; max-width: 520px; }

  /* Preço */
  .sv-preco__card--hl { transform: none; }
  .sv-preco__card--hl:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  /* Navbar dropdown mobile */
  .hdr__drop-menu {
    position: static;
    transform: none !important;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 4px 0 4px 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .hdr__dropdown.open .hdr__drop-menu { max-height: 180px; }
  .hdr__drop-item { padding: 8px 10px; border-radius: 10px; }
}

@media (max-width: 640px) {
  .sv-hero__inner  { padding: 48px 20px 40px; }
  .sv-hero__title  { font-size: clamp(2rem, 7vw, 2.8rem); }
  .sv-hero__ctas   { flex-direction: column; width: 100%; max-width: 340px; }
  .sv-hero__ctas .hero-primary-btn,
  .sv-hero__ctas .hero-secondary-btn { width: 100%; }

  .sv-sol__lead { max-width: 100%; }

  .sv-steps__grid { grid-template-columns: 1fr; }

  .sv-reviews--trio { max-width: 100%; }
}

@media (max-width: 480px) {
  .sv-hero__badge      { font-size: 0.8rem; }
  .sv-hero__stat span  { font-size: 0.8rem; }
}
