/* ============================================================
   Whatsingle — Página de Vendas 3.0
   Estilos custom (Tailwind CDN + overrides e sistemas próprios)
   ============================================================ */

:root {
  --brand: #FC7611;
  --brand-600: #EA580C;
  --brand-700: #C2410C;
  --ink: #0F172A;
  --muted: #475569;
  --dark: #0B0B0B;
  --dark-tint: #1A0D05;
  --dark-card: #2A1A10;
  --text-dark: #F8FAFC;
  --muted-dark: #F0C9A8;
  --marker: #FFE13A;
  --gold: #FFD700;
  --gold-dark: #D4AF37;
  --success: #16A34A;
  --danger: #DC2626;
  --chat-client: #F1F5F9;
  --grad-btn: linear-gradient(135deg, #FF9C6B 0%, #E55A00 100%);
  --grad-dark: linear-gradient(160deg, #1A0D05 0%, #0B0B0B 100%);
  --grad-dark2: linear-gradient(160deg, #0B0B0B 0%, #2A0A00 60%, #EA580C 100%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  overflow-x: hidden;
}

::selection {
  background: rgba(252, 118, 17, .25);
}

/* ============ Tipografia ============ */
.h2 {
  font-size: clamp(1.7rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ============ Efeito marca-texto ============ */
.marker {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.marker::after {
  content: '';
  position: absolute;
  left: -1%;
  right: -1%;
  bottom: 0.08em;
  height: 0.42em;
  background: linear-gradient(100deg, rgba(255, 225, 58, .85), rgba(255, 190, 80, .85));
  border-radius: 0.15em;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.marker-orange::after {
  background: linear-gradient(100deg, rgba(255, 160, 60, .7), rgba(252, 118, 17, .55));
}
.marker.is-visible::after {
  transform: scaleX(1);
}

/* ============ Badges ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.badge-light {
  background: #fff;
  border: 1px solid #E2E8F0;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(15,23,42,.06);
}
.badge-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text-dark);
  backdrop-filter: blur(6px);
}
.badge-hero {
  background: linear-gradient(135deg, rgba(255,156,107,.18), rgba(229,90,0,.12));
  border: 1px solid rgba(252,118,17,.35);
  color: var(--brand-700);
}

/* ============ Botões ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0 1.5rem;
  height: 52px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.96); }
.btn:focus-visible {
  outline: 3px solid rgba(252,118,17,.5);
  outline-offset: 2px;
}
.btn-lg { height: 58px; font-size: 1.0625rem; padding: 0 2rem; border-radius: 16px; }
.btn-xl { height: 64px; font-size: 1.125rem; padding: 0 2.25rem; border-radius: 18px; }

.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 6px 20px rgba(229,90,0,.35), inset 0 1px 0 rgba(255,255,255,.25);
  animation: glowPulse 2.4s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(229,90,0,.45); }
.btn-primary:active { transform: scale(.96); }

.btn-ghost {
  background: transparent;
  color: var(--brand-700);
  border: 2px solid rgba(252,118,17,.45);
  height: 54px;
}
.btn-ghost:hover { background: rgba(252,118,17,.08); transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 2px solid rgba(255,255,255,.22);
  height: 54px;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* Botões não estouram a tela no mobile */
@media (max-width: 767px) {
  .btn {
    white-space: normal;
    line-height: 1.2;
    max-width: 100%;
    height: auto;
    min-height: 52px;
    padding: .75rem 1.25rem;
  }
  .btn.btn-xl { min-height: 60px; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(229,90,0,.35); }
  50% { box-shadow: 0 6px 28px rgba(229,90,0,.6), 0 0 0 4px rgba(252,118,17,.12); }
}

/* ============ Hero ============ */
.hero {
  background: radial-gradient(circle at 82% 8%, rgba(252,118,17,.14), transparent 55%), #fff;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 90% 20%, rgba(252,118,17,.08), transparent 40%),
              radial-gradient(circle at 10% 90%, rgba(252,118,17,.06), transparent 45%);
}
.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .5;
}

/* Avatares */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  background: var(--grad-btn);
}
.avatar:nth-child(2) { background: #64748B; }
.avatar:nth-child(3) { background: #EA580C; }
.avatar:nth-child(4) { background: #0EA5E9; }
.avatar:last-child { background: #16A34A; }

.sep-dot { color: #CBD5E1; }

/* ============ Seções ============ */
.sec-dark {
  background: var(--grad-dark);
  position: relative;
}
.sec-gradient {
  background: var(--grad-dark2);
}
.sec-dark .card-body { color: var(--muted-dark); }

/* Card escuro (dor) */
.card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(252,118,17,.4);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.icon-chip {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  background: var(--grad-btn);
  box-shadow: 0 6px 16px rgba(229,90,0,.3);
}
.icon-chip.big { width: 54px; height: 54px; font-size: 1.3rem; border-radius: 16px; }
.card-title { font-weight: 700; font-size: 1.1rem; color: #fff; margin-top: 1rem; }
.card-body { color: var(--muted); font-size: .95rem; line-height: 1.6; margin-top: .5rem; }
.card-body em, .mini-proof em, p em { color: #94A3B8; font-size: .8rem; font-style: normal; }
.big-num {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  margin-top: 1.1rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.big-num span { font-size: .45em; font-weight: 700; }

/* Card claro */
.card-light {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 22px;
  padding: 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-light:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,23,42,.1); }
.card-body-md { color: var(--muted); font-size: 1rem; line-height: 1.65; margin-top: .85rem; }
.mini-proof {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  background: #FFEDE1;
  border-radius: 12px;
  padding: .7rem .9rem;
}
.mini-proof i { color: var(--success); margin-top: .15rem; }

/* Mini visuals (diferenciais) */
.mini-visual {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(15,23,42,.1);
}
.mv-head {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  padding-bottom: .75rem;
  border-bottom: 1px solid #EEF2F7;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mini-chat .bubble { margin-bottom: .5rem; }
.mv-time { font-size: .75rem; color: var(--success); font-weight: 600; margin-top: .4rem; }

.mini-cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.mini-cal-grid span {
  background: #F8FAFC;
  border-radius: 10px;
  padding: .55rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
}
.mini-cal-grid .on { color: #fff; background: var(--grad-btn); }
.mini-cal-grid .hl { animation: calGlow 2s ease-in-out infinite; }
@keyframes calGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(252,118,17,.4); }
  50% { box-shadow: 0 0 0 6px rgba(252,118,17,.15); }
}
.mini-slot {
  margin-top: .75rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mini-slot i { color: var(--success); }

.mini-funil-steps { display: flex; flex-direction: column; gap: .4rem; }
.mini-funil-steps span {
  background: #F8FAFC;
  border-radius: 10px;
  padding: .5rem .8rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mini-funil-steps .active { background: #FFEDE1; color: var(--brand-700); }
.mini-funil-steps .active.hl { background: var(--grad-btn); color: #fff; }
.mini-chip-move {
  margin-top: .75rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mini-chip-move i { color: var(--brand); }

/* ============ MOCKUP (laptop) ============ */
.mockup-wrap { position: relative; width: 100%; max-width: 620px; }

/* Hero: mockup maior, centralizado e invadindo a próxima seção */
.mockup-hero-lg { max-width: 680px; }
.mockup-hero-overflow { position: relative; z-index: 5; margin-bottom: -4rem; }
@media (min-width: 768px) {
  .mockup-hero-overflow { margin-bottom: -5rem; }
  .mockup-hero-lg .cs-card { padding: 10px 14px; }
  .mockup-hero-lg .cs-screen { padding: 14px; }
}

/* Card estilo ContainerScroll (aceternity) — mockup da hero */
.cs-card {
  border: 4px solid #6C6C6C;
  padding: 6px;
  background: #222222;
  border-radius: 30px;
  box-shadow:
    0 0 #0000004d,
    0 9px 20px #0000004a,
    0 37px 37px #00000042,
    0 84px 50px #00000026,
    0 149px 60px #0000000a,
    0 233px 65px #00000003;
  will-change: transform;
}
.cs-screen {
  background: #0E0E14;
  border-radius: 18px;
  padding: 10px;
  overflow: hidden;
}
.laptop {
  background: linear-gradient(180deg, #2A2A35, #1B1B22);
  border-radius: 18px 18px 10px 10px;
  padding: 14px 14px 0;
  box-shadow: 0 40px 80px -20px rgba(15,23,42,.45), 0 0 60px rgba(252,118,17,.08);
  position: relative;
}
.laptop-screen {
  background: #0E0E14;
  border-radius: 10px;
  padding: 10px;
}
.sys-topbar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .15rem .25rem .7rem;
}
.sys-dots { display: flex; gap: 5px; }
.sys-dots i { width: 8px; height: 8px; border-radius: 50%; background: #FF5F57; display: block; }
.sys-dots i:nth-child(2) { background: #FEBC2E; }
.sys-dots i:nth-child(3) { background: #28C840; }
.sys-brand {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sys-brand img { width: 18px; height: 18px; object-fit: contain; display: inline-block; margin-right: .35rem; }
.sys-brand span { color: var(--brand); }
.sys-ia-chip {
  font-size: .68rem;
  font-weight: 600;
  color: #FFD9BE;
  background: rgba(252,118,17,.16);
  border: 1px solid rgba(252,118,17,.35);
  padding: .3rem .6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  animation: calGlow 2.4s ease-in-out infinite;
}
.sys-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 8px;
  background: #0E0E14;
}

/* Chat */
.chat-pane {
  background: #FDFDFF;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem .7rem;
  background: #fff;
  border-bottom: 1px solid #EEF2F7;
}
.chat-avatar { font-size: .72rem; font-weight: 700; color: var(--ink); }
.chat-status {
  font-size: .62rem;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.chat-box {
  padding: .6rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  min-height: 210px;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 100% 0, rgba(252,118,17,.05), transparent 60%),
    #FDFDFF;
}

/* Mini-visuals (diferenciais) usam .bubble mas não são animados */
.mini-visual .bubble { opacity: 1; }

.bubble {
  max-width: 88%;
  padding: .5rem .7rem;
  border-radius: 12px;
  font-size: .78rem;
  line-height: 1.45;
  box-shadow: 0 2px 6px rgba(15,23,42,.08);
  opacity: 0;
}
.bubble.sm { font-size: .82rem; }
.bubble.client {
  background: var(--chat-client);
  color: var(--ink);
  align-self: flex-start;
  margin-right: auto;
  border-bottom-left-radius: 4px;
}
.bubble.ia {
  background: var(--grad-btn);
  color: #fff;
  align-self: flex-end;
  margin-left: auto;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 14px rgba(229,90,0,.3);
  text-align: left;
}
.ia-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .6rem;
  font-weight: 700;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  padding: .1rem .45rem;
  margin-right: .4rem;
  vertical-align: 1px;
}
.typing {
  align-self: flex-end;
  margin-left: auto;
  display: flex;
  gap: 4px;
  background: var(--grad-btn);
  padding: .5rem .75rem;
  border-radius: 12px;
  border-bottom-right-radius: 4px;
  opacity: 0;
}
.typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: typingDot 1.2s ease-in-out infinite;
}
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* Painel lateral */
.side-pane { display: flex; gap: 6px; }
.side-tabs { display: flex; flex-direction: column; gap: 6px; }
.side-tab {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: rgba(255,255,255,.05);
  color: #94A3B8;
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}
.side-tab:hover { color: #fff; background: rgba(255,255,255,.12); }
.side-tab.active {
  color: #fff;
  background: var(--grad-btn);
  box-shadow: 0 4px 12px rgba(229,90,0,.4);
}
.side-panel {
  flex: 1;
  background: #14141C;
  border-radius: 9px;
  padding: .55rem;
  min-height: 240px;
}
.panel-pane { display: none; }
.panel-pane.active { display: block; animation: paneIn .25s ease; }
@keyframes paneIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.pane-title {
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted-dark);
  margin-bottom: .55rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.cal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.cal-d {
  background: rgba(255,255,255,.05);
  border-radius: 7px;
  padding: .3rem 0;
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  color: #CBD5E1;
  display: flex;
  flex-direction: column;
}
.cal-d b { color: #64748B; font-weight: 500; font-size: .58rem; text-transform: uppercase; }
.cal-d.active { background: var(--grad-btn); color: #fff; box-shadow: 0 4px 10px rgba(229,90,0,.4); }
.cal-d.active b { color: rgba(255,255,255,.85); }
.cal-slot {
  margin-top: .55rem;
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(22,163,74,.35);
  border-radius: 8px;
  padding: .4rem .5rem;
  font-size: .66rem;
  color: #86EFAC;
  display: flex;
  align-items: center;
  gap: .4rem;
  opacity: 0;
}
.cal-reminder {
  margin-top: .45rem;
  font-size: .62rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: .35rem;
  opacity: 0;
}
.cal-reminder::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* Funil no painel */
.funil-col {
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: .4rem;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.f-stage { font-size: .62rem; font-weight: 600; color: #94A3B8; }
.f-chip {
  font-size: .6rem;
  font-weight: 700;
  color: #fff;
  background: #475569;
  padding: .15rem .4rem;
  border-radius: 6px;
}
.f-chip.off { color: #475569; background: rgba(255,255,255,.06); }
.f-chip[data-funil-chip] { opacity: 0; }
.f-chip[data-funil-chip].moved { opacity: 1; }
.f-chip.moved { background: var(--grad-btn); box-shadow: 0 3px 10px rgba(229,90,0,.45); }
.funil-col.hl { border-color: rgba(252,118,17,.6); box-shadow: 0 0 16px rgba(252,118,17,.25); }

/* Relatórios */
.rel-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 74px;
  margin-top: .4rem;
}
.rel-bars span {
  flex: 1;
  background: var(--grad-btn);
  border-radius: 4px 4px 0 0;
  opacity: .8;
  transform-origin: bottom;
}
.rel-kpis {
  display: flex;
  justify-content: space-between;
  margin-top: .6rem;
  font-size: .6rem;
  color: #94A3B8;
}
.rel-kpis b { display: block; color: #fff; font-size: .75rem; }

.laptop-base {
  height: 14px;
  background: linear-gradient(180deg, #3A3A46, #23232B);
  border-radius: 0 0 10px 10px;
  margin-top: 0;
}

/* Toast */
.toast {
  position: absolute;
  top: 34px;
  right: -6px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: .65rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(15,23,42,.18);
  display: flex;
  align-items: center;
  gap: .55rem;
  z-index: 20;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast[data-toast="1"] { top: 96px; }

/* Pause button */
.mockup-pause {
  position: absolute;
  bottom: 14px;
  right: -6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 1px solid #E2E8F0;
  color: var(--ink);
  cursor: pointer;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15,23,42,.15);
  z-index: 25;
  transition: transform .15s ease;
}
.mockup-pause:hover { transform: scale(1.06); }
.mockup-pause:active { transform: scale(.94); }

/* ============ GRÁFICOS ============ */
.kpi {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.kpi-num {
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kpi-label { color: #fff; font-weight: 600; margin-top: .75rem; font-size: .92rem; }
.kpi-sub { color: #F0C9A8; font-size: .78rem; display: block; margin-top: .25rem; }
.kpi-sub em { color: #94A3B8; }

.chart-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 1.5rem;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}
.chart-box { position: relative; height: 260px; min-width: 0; }
.chart-box-tall { height: 300px; }

/* Funil */
.funnel {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(.5rem, 2vw, 1.25rem);
  padding: 0 .5rem;
}
.funnel-step {
  flex: 1;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.funnel-bar {
  width: 100%;
  height: clamp(140px, 24vw, 230px);
  display: flex;
  align-items: flex-end;
}
.funnel-fill {
  width: 100%;
  background: linear-gradient(180deg, #FDBA74, #EA580C);
  border-radius: 10px 10px 4px 4px;
  height: var(--h);
  transform-origin: bottom;
  transform: scaleY(0);
  box-shadow: 0 8px 24px rgba(229,90,0,.3);
}
.funnel-step:nth-child(2) .funnel-fill { background: linear-gradient(180deg, #FB923C, #EA580C); }
.funnel-step:nth-child(3) .funnel-fill { background: linear-gradient(180deg, #F97316, #EA580C); }
.funnel-step:nth-child(4) .funnel-fill { background: linear-gradient(180deg, #EA580C, #C2410C); }
.funnel-step:nth-child(5) .funnel-fill { background: linear-gradient(180deg, #EA580C, #9A3412); }
.funnel-pct { font-weight: 700; font-size: .95rem; color: #FFD9BE; margin-bottom: .4rem; font-variant-numeric: tabular-nums; }
.funnel-label { text-align: center; font-size: .75rem; font-weight: 600; color: #fff; margin-top: .6rem; line-height: 1.4; }
.funnel-label small { display: block; font-weight: 400; color: #94A3B8; }

/* Gauge */
.gauge-wrap { position: relative; max-width: 320px; margin: 0 auto; }
.gauge-svg { width: 100%; height: auto; display: block; }
.gauge-track { fill: none; stroke: rgba(255,255,255,.09); stroke-width: 16; stroke-linecap: round; }
.gauge-fill {
  fill: none;
  stroke: url(#gaugeGrad);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  transition: stroke-dashoffset 1.2s cubic-bezier(.22,.61,.36,1);
}
.gauge-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 34px;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 800;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.gauge-label { text-align: center; color: #F0C9A8; font-size: .82rem; margin-top: -6px; }

/* Gráficos no mobile não estouram */
@media (max-width: 767px) {
  .kpi { padding: 1.25rem .9rem; }
  .kpi-num { font-size: clamp(1.5rem, 7vw, 2.1rem); word-break: break-word; }
  .funnel { gap: .4rem; padding: 0; }
  .funnel-label { font-size: .65rem; }
  .funnel-pct { font-size: .8rem; }
  .chart-card { padding: 1.1rem; }
  .chart-box { height: 220px; }
  .chart-box-tall { height: 260px; }
}

/* ============ Showcase de funcionalidades (estilo hero-195) ============ */
.ws-features { margin-top: 4.5rem; }
.ws-features-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}
.ws-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: #F0C9A8;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.ws-tab i { color: var(--brand); transition: color .2s ease; }
.ws-tab:hover { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.ws-tab.active {
  color: #fff;
  background: var(--grad-btn);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(229,90,0,.4);
}
.ws-tab.active i { color: #fff; }

.ws-features-panels {
  margin-top: 1.75rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.ws-panel { display: none; }
.ws-panel.active { display: block; animation: wsFade .35s ease; }
@keyframes wsFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.ws-panel-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  padding: .5rem;
}
.ws-panel-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.ws-panel-media img.ws-zoom {
  animation: wsImgZoom .9s cubic-bezier(.22,.61,.36,1);
}
@keyframes wsImgZoom {
  0% { transform: scale(1); }
  30% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.ws-border-beam {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  z-index: 2;
  border: 3px solid transparent;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,170,64,.95) 50%,
    rgba(156,64,255,.95) 60%,
    transparent 70%
  );
  background-size: 250% 100%;
  animation: wsBeam 7s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
@keyframes wsBeam {
  to { background-position: -250% 0; }
}

.ws-panel-body {
  text-align: center;
  padding: 1.5rem 1rem 0;
}
.ws-panel-desc {
  margin-top: .5rem;
  color: #F0C9A8;
  font-size: .95rem;
  line-height: 1.65;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .ws-border-beam { animation: none; opacity: .35; }
}

/* ============ Sistema em ação ============ */
.scene-tabs .scene-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #E2E8F0;
  background: #fff;
  color: var(--muted);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s ease;
}
.scene-tab span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--muted);
  font-size: .72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.scene-tab.active {
  background: var(--grad-btn);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(229,90,0,.35);
}
.scene-tab.active span { background: rgba(255,255,255,.25); color: #fff; }
.mockup-big { max-width: 760px; margin: 0 auto; }
.demo-chat { min-height: 240px; }
.demo-bubble { opacity: 0; }
.demo-bubble.show { opacity: 1; }
.demo-bubble.focus { box-shadow: 0 0 0 3px rgba(252,118,17,.55), 0 6px 18px rgba(229,90,0,.35); }

/* ============ Comparação de preço ============ */
.price-comp {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pc-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}
.pc-head i { color: #94A3B8; }
.pc-head.ws { color: #fff; }
.pc-head.ws i { color: var(--brand); }
.pc-list { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.pc-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: #E2E8F0;
  border-bottom: 1px dashed rgba(255,255,255,.1);
  padding-bottom: .6rem;
}
.pc-list li small { display: block; color: #94A3B8; font-size: .72rem; }
.pc-list li b { font-weight: 700; color: #FCA5A5; white-space: nowrap; font-size: .9rem; }
.pc-list.ws li { justify-content: flex-start; color: #FDEBD3; }
.pc-list.ws li b { color: #fff; }
.pc-list.ws li i { flex-shrink: 0; }
.pc-total {
  margin-top: 1.25rem;
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-total span { font-size: .75rem; font-weight: 700; letter-spacing: .06em; color: #94A3B8; }
.pc-total b { font-size: 1.35rem; font-weight: 800; }
.pc-total.danger b { color: #F87171; }
.pc-total.ws { background: var(--grad-btn); box-shadow: 0 12px 30px rgba(229,90,0,.4); animation: glowPulse 2.6s ease-in-out infinite; }
.pc-total.ws span { color: rgba(255,255,255,.85); }
.pc-total.ws b { color: #fff; font-size: 1.6rem; }
.pc-foot { margin-top: .9rem; font-size: .8rem; }
.pc-foot.danger-text { color: #FCA5A5; }
.ws-badge {
  position: absolute;
  top: -14px;
  left: 1.25rem;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #3d2c00;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: .35rem .9rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(212,175,55,.35);
}
.economy-badge {
  margin-top: 1rem;
  background: rgba(255,215,0,.12);
  border: 1px solid rgba(255,215,0,.3);
  color: #FDE68A;
  border-radius: 12px;
  padding: .8rem .9rem;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.economy-badge i { color: var(--gold); }
.economy-badge b { color: #fff; }

/* ============ Prova social ============ */
.trust-bar { text-align: center; }
.trust-item {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.1rem .75rem;
}
.trust-item b { display: block; font-size: 1.6rem; font-weight: 800; color: var(--brand-700); font-variant-numeric: tabular-nums; }
.trust-item span { font-size: .8rem; color: var(--muted); }

.sphere-wrap { display: flex; flex-direction: column; align-items: center; }
.sphere-stage {
  position: relative;
  width: 520px;
  height: 520px;
  perspective: 1200px;
  touch-action: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.sphere-stage:active { cursor: grabbing; }
.sphere-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--grad-btn);
  border: 3px solid #fff;
  box-shadow: 0 20px 44px -16px rgba(15,23,42,.45);
  cursor: pointer;
  transition: opacity .2s linear;
  box-sizing: border-box;
}
.sphere-card .sp-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .sphere-stage { width: 340px; height: 340px; perspective: 900px; }
  .sphere-card { width: 100px; height: 100px; }
}

.sphere-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(10,14,24,.55);
  backdrop-filter: blur(4px);
  animation: smFadeIn .25s ease-out;
}
.sphere-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 520px;
  width: 100%;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  animation: smScaleIn .3s ease-out;
}
.sphere-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #F1F5F9;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .2s ease;
}
.sphere-close:hover { background: var(--grad-btn); color: #fff; transform: rotate(90deg); }
.sm-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,.2);
}
.sm-stars { color: var(--gold); font-size: .95rem; display: flex; justify-content: center; gap: .15rem; }
.sm-quote { margin: 1rem auto 1.4rem; color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 42ch; }
.sm-author b { display: block; color: var(--ink); font-size: 1.05rem; }
.sm-author .sm-role { display: block; color: var(--brand); font-weight: 600; font-size: .88rem; margin-top: .2rem; }

@keyframes smFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes smScaleIn { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.stars { color: var(--gold); font-size: .85rem; display: flex; gap: .15rem; }
.t-quote { margin-top: .9rem; color: var(--muted); font-size: .95rem; line-height: 1.65; }
.t-author { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.t-author b { display: block; color: var(--ink); font-size: .9rem; }
.t-author small { color: #94A3B8; font-size: .78rem; }
.t-avatar { width: 44px; height: 44px; }

/* ============ Price card ============ */
.price-card-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 2rem 1.75rem;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,.5), 0 0 80px rgba(252,118,17,.15);
  text-align: center;
}
.price-selos { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; }
.selo-plano {
  background: var(--grad-btn);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .4rem .9rem;
  border-radius: 999px;
}
.selo-vendido {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #3d2c00;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .4rem .9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.price-values { margin-top: 1.5rem; }
.price-old {
  color: #94A3B8;
  font-size: 1.1rem;
  text-decoration: line-through;
  font-weight: 500;
}
.price-old span { font-size: .8rem; }
.price-new {
  font-size: clamp(3rem, 9vw, 4rem);
  font-weight: 800;
  color: var(--brand-700);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.price-new span { font-size: .3em; font-weight: 600; color: var(--muted); }
.price-off { margin-top: .75rem; display: flex; align-items: center; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.off-pill {
  background: linear-gradient(135deg, #16A34A, #15803D);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  padding: .35rem .8rem;
  border-radius: 999px;
}
.off-save { font-weight: 600; color: var(--success); font-size: .9rem; }
.price-feats {
  list-style: none;
  text-align: left;
  margin: 1.75rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem .75rem;
}
.price-feats li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
}
.price-feats i { color: var(--success); margin-top: .15rem; flex-shrink: 0; }
.garantia {
  margin-top: 1.5rem;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 14px;
  padding: .9rem 1rem;
  display: flex;
  gap: .75rem;
  text-align: left;
  align-items: flex-start;
  color: #166534;
  font-size: .85rem;
}
.garantia i { font-size: 1.4rem; color: var(--success); margin-top: .1rem; }
.garantia b { display: block; color: #14532D; }

/* ============ FAQ ============ */
.faq-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  text-align: left;
}
.faq-q i { color: var(--brand); transition: transform .25s ease; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding: 0 1.25rem 1.1rem; color: var(--muted-dark); font-size: .92rem; line-height: 1.6; }
.faq-a p em { color: #94A3B8; }

/* ============ Footer ============ */
.bg-darkbase { background: #070707; }
.foot-link { color: #F0C9A8; transition: color .2s; }
.foot-link:hover { color: var(--brand); }

/* ============ Barra fixa mobile ============ */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -8px 30px rgba(15,23,42,.12);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  padding-bottom: env(safe-area-inset-bottom);
  overflow: hidden;
}
.cta-bar.visible { transform: translateY(0); }
.cta-bar.hidden-bar { transform: translateY(110%); }
.cta-bar-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .6rem 1rem;
}
.cta-bar-price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; min-width: 0; }
.cta-old { color: #94A3B8; text-decoration: line-through; font-size: .78rem; font-weight: 500; }
.cta-new { color: var(--brand-700); font-weight: 800; font-size: 1.2rem; }
.cta-new span { font-size: .65rem; color: var(--muted); font-weight: 600; }
.cta-free { color: var(--success); font-size: .8rem; font-weight: 600; }
.cta-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--grad-btn);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  min-height: 56px;
  padding: .5rem 1.25rem;
  border-radius: 14px;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 8px 20px rgba(229,90,0,.4);
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  transition: transform .15s ease;
}
.cta-bar-btn:active { transform: scale(.96); }

@media (max-width: 767px) {
  .cta-bar-inner {
    justify-content: space-between;
  }
  .cta-bar-price {
    flex: 1 1 auto;
    justify-content: flex-start;
  }
  .cta-bar-btn {
    flex: 0 0 auto;
    max-width: 60%;
  }
}

@media (max-width: 430px) {
  .cta-free { display: none; }
  .cta-old { display: none; }
  .cta-bar-inner { gap: .5rem; padding: .5rem .6rem; }
  .cta-new { font-size: 1rem; }
  .cta-bar-btn {
    font-size: .82rem;
    min-height: 46px;
    padding: .45rem .7rem;
    gap: .35rem;
  }
  .cta-bar-btn i { display: none; }
}

/* Barra fixa é recurso MOBILE (polegar) */
@media (min-width: 769px) {
  .cta-bar { display: none; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .marker::after { transform: scaleX(1); }
}

/* ============ Reveal states (JS controla) ============ */
.reveal { will-change: transform, opacity; }

/* Ajustes de ancoragem por seção */
section[id] { scroll-margin-top: 80px; }

/* ============ Modal de imagem (zoom) ============ */
.ws-panel-media img { cursor: zoom-in; }

.img-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}
.img-modal.open { visibility: visible; opacity: 1; }

.img-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 18, .92);
  backdrop-filter: blur(6px);
}

.img-modal-box {
  position: relative;
  max-width: min(1100px, 94vw);
  max-height: 90vh;
  transform: scale(.92);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.img-modal.open .img-modal-box { transform: scale(1); }

.img-modal-box img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
}

.img-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: #151a26;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.6);
  transition: background .2s ease, transform .2s ease;
}
.img-modal-close:hover { background: #1f2637; transform: rotate(90deg); }

body.modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .img-modal { padding: 1rem; }
  .img-modal-close { top: -10px; right: -10px; width: 38px; height: 38px; }
}

/* ============ Circular Gallery 3D (cards girando) ============ */
.gallery-wrap {
  position: relative;
  margin-top: 2rem;
  height: 180vh;
}
.gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circular-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2200px;
}
.gallery-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.gallery-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  height: 360px;
  margin-left: -125px;
  margin-top: -180px;
  transform-style: preserve-3d;
  transition: opacity .3s linear;
}
.gallery-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.4);
  background: #fff;
  border: 1px solid #EEF2F7;
  display: flex;
  flex-direction: column;
  padding: 1.8rem 1.5rem 1.5rem;
  text-align: left;
}
.gallery-card .g-ico {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
  background: var(--grad-btn);
  box-shadow: 0 10px 24px -8px rgba(229,90,0,.45);
  margin-bottom: 1.3rem;
}
.gallery-card .g-ico i {
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
}
.gallery-card .g-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.15;
  min-height: 2.6em;
  display: flex;
  align-items: center;
}
.gallery-card .g-tag {
  display: block;
  margin-bottom: .35rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brand);
}
.gallery-card .g-desc {
  margin-top: .7rem;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.gallery-card .g-foot {
  flex: 0 0 auto;
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid #EEF2F7;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
}
.gallery-card .g-foot i { color: var(--brand); margin-right: .35rem; }

@media (max-width: 640px) {
  .gallery-sticky { min-height: 460px; }
  .gallery-item { width: 220px; height: 330px; margin-left: -110px; margin-top: -165px; }
  .gallery-card { padding: 1.3rem 1.1rem 1.1rem; }
  .gallery-card .g-ico { width: 46px; height: 46px; flex-basis: 46px; font-size: 1.1rem; margin-bottom: .9rem; }
  .gallery-card .g-title { font-size: 1.05rem; min-height: 2em; }
  .gallery-card .g-desc { font-size: .8rem; -webkit-line-clamp: 3; margin-top: .55rem; }
  .gallery-card .g-foot { font-size: .72rem; margin-top: .8rem; padding-top: .7rem; }
}
