/* ============================================================
   PDV Loja — Landing Page
   ============================================================ */

/* ---- Variables (extends app.css variables) ---- */
:root {
  --lp-white: #ffffff;
  --lp-dark:  #0D1117;
  --lp-gray:  #6B7280;
  --lp-light: #F3F4F6;
  --lp-blue:  #1565C0;
  --lp-blue-dark: #0D47A1;
  --lp-blue-light: #E3F2FD;
  --lp-green: #2E7D32;
  --lp-green-light: #E8F5E9;
  --lp-accent: #FF6B35;
  --lp-border: #E5E7EB;
  --lp-shadow: 0 4px 24px rgba(0,0,0,.08);
  --lp-shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --lp-radius: 12px;
  --lp-radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--lp-dark);
  background: var(--lp-white);
  line-height: 1.6;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ============================================================
   NAV
   ============================================================ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lp-border);
  padding: 14px 0;
}

.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-logo .logo-pdv  { font-size: 22px; font-weight: 900; color: var(--lp-blue-dark); letter-spacing: -.5px; }
.lp-logo .logo-loja { font-size: 22px; font-weight: 700; color: var(--lp-blue); letter-spacing: -.5px; }

.lp-nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-nav__links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-gray);
  transition: color .2s;
}
.lp-nav__links a:hover { color: var(--lp-blue); }

.lp-nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Botão de login: pílula de contorno fino em tinta escura. O azul de 1,5px
   com canto de 8px competia com o CTA azul ao lado — dois botões azuis
   disputando o mesmo canto da tela, e nenhum vencia. */
.btn-outline-nav {
  padding: 9px 22px;
  background: transparent;
  border: 1px solid var(--lp-dark);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-dark);
  text-decoration: none;
  transition: background .18s, color .18s;
}
.btn-outline-nav:hover { background: var(--lp-dark); color: var(--lp-white); }

.btn-primary-nav {
  padding: 8px 20px;
  background: var(--lp-blue);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all .2s;
}
.btn-primary-nav:hover { background: var(--lp-blue-dark); }

.lp-nav__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--lp-dark);
  padding: 4px;
}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--lp-blue-light) 0%, #ffffff 60%);
  overflow: hidden;
  position: relative;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,101,192,.1) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lp-green-light);
  color: var(--lp-green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.lp-hero__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  color: var(--lp-dark);
}
.lp-hero__title span { color: var(--lp-blue); }

.lp-hero__subtitle {
  font-size: 18px;
  color: var(--lp-gray);
  margin-bottom: 36px;
  max-width: 460px;
}

.lp-hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--lp-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(21,101,192,.35);
}
.btn-hero-primary:hover { background: var(--lp-blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,101,192,.4); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 2px solid var(--lp-border);
  color: var(--lp-dark);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
}
.btn-hero-outline:hover { border-color: var(--lp-blue); color: var(--lp-blue); }

.lp-hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--lp-gray);
}
.lp-hero__proof-stars { color: #F59E0B; font-size: 16px; }

.lp-hero__img {
  position: relative;
}
.lp-hero__screen {
  width: 100%;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid var(--lp-border);
  background: #fff;
  overflow: hidden;
}

/* Mock screen inside hero */
.mock-screen {
  background: #f8f9fa;
}
.mock-topbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock-topbar-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-body {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.mock-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #e5e7eb;
}
.mock-card__label { font-size: 11px; color: #6b7280; margin-bottom: 4px; }
.mock-card__value { font-size: 20px; font-weight: 800; color: #1565C0; }
.mock-card__sub   { font-size: 11px; color: #2E7D32; }
.mock-table {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  grid-column: 1 / -1;
}
.mock-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 12px;
}
.mock-row:last-child { border-bottom: none; }
.mock-badge {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.mock-badge--green { background: #E8F5E9; color: #2E7D32; }
.mock-badge--blue  { background: #E3F2FD; color: #1565C0; }

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.lp-proof-strip {
  padding: 20px 0;
  background: var(--lp-dark);
}
.lp-proof-strip__inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.lp-proof-item i { color: #fff; font-size: 18px; }

/* ============================================================
   FEATURES
   ============================================================ */
.lp-section {
  padding: 80px 0;
}
.lp-section--alt { background: var(--lp-light); }

.lp-section__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.lp-section__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 14px;
  color: var(--lp-dark);
}
.lp-section__subtitle {
  font-size: 17px;
  color: var(--lp-gray);
  max-width: 560px;
}
.lp-section__head { margin-bottom: 48px; }
.lp-section__head--center { text-align: center; }
.lp-section__head--center .lp-section__subtitle { margin: 0 auto; }

/* Features — cards verticais estreitos (retrato): ícone → título → texto */
.lp-features {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.lp-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  padding: 28px 16px 24px;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  transition:
    transform .2s cubic-bezier(0.23, 1, 0.32, 1),
    border-color .2s ease,
    box-shadow .2s cubic-bezier(0.23, 1, 0.32, 1);
}
.lp-feature:hover {
  transform: translateY(-3px);
  border-color: #93C5FD;
  box-shadow: 0 14px 36px rgba(21, 101, 192, 0.12);
}

.lp-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--lp-blue);
  background: var(--lp-blue-light);
}

.lp-feature__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.35;
  color: var(--lp-dark);
  margin: 0 0 10px;
}

.lp-feature__text {
  font-size: 13px;
  color: var(--lp-gray);
  line-height: 1.55;
  margin: 0;
}

/* Tablet / mobile: mantém card vertical e faz scroll horizontal */
@media (max-width: 1100px) {
  .lp-features {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .lp-features::-webkit-scrollbar { display: none; }
  .lp-feature {
    flex: 0 0 200px;
    width: 200px;
    min-height: 300px;
  }
}

/* ============================================================
   MODULES GRID
   ============================================================ */
.lp-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.lp-module {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all .2s;
}
.lp-module:hover { border-color: var(--lp-blue); box-shadow: 0 4px 16px rgba(21,101,192,.1); }
.lp-module--pro .lp-module__icon { background: #FFF8E1; color: #F59E0B; }

.lp-module__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--lp-blue-light);
  color: var(--lp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.lp-module__info h4 { font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.lp-module__info p  { font-size: 12px; color: var(--lp-gray); margin: 0; }

.lp-module__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 4px;
  background: #FFF8E1;
  color: #B45309;
}

/* Segmentos (SEO) */
/* Segmentos — layout compacto (mesmo espírito dos módulos) */
.lp-seg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.lp-seg-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lp-seg-card:hover {
  border-color: #90CAF9;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.08);
}
.lp-seg-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--lp-blue-light);
  color: var(--lp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.lp-seg-card__body { min-width: 0; }
.lp-seg-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 3px;
  color: var(--lp-dark);
  line-height: 1.25;
}
.lp-seg-card p {
  font-size: 12.5px;
  color: var(--lp-gray);
  line-height: 1.4;
  margin: 0;
}
.lp-seg-foot {
  max-width: 640px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-gray);
}
@media (max-width: 900px) {
  .lp-seg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .lp-seg-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.lp-price-card {
  background: var(--lp-white);
  border: 2px solid var(--lp-border);
  border-radius: 16px;
  padding: 22px 20px;
  position: relative;
  transition: all .25s;
}
.lp-price-card:hover { box-shadow: var(--lp-shadow-lg); transform: translateY(-4px); }

.lp-price-card--hero {
  border-color: var(--lp-blue);
  box-shadow: 0 0 0 4px rgba(21,101,192,.08);
}
.lp-price-card--hero:hover { transform: translateY(-4px); }

.lp-price-card--anchor {
  border-color: var(--lp-border);
  opacity: .92;
}

.lp-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.lp-price-badge--accent { background: var(--lp-accent); }

.lp-price-card__name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lp-gray);
  margin-bottom: 8px;
}

.lp-price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.lp-price-currency { font-size: 17px; font-weight: 700; color: var(--lp-dark); }
.lp-price-value    { font-size: 38px; font-weight: 900; letter-spacing: -1.5px; color: var(--lp-dark); line-height: 1; }
.lp-price-period   { font-size: 13px; color: var(--lp-gray); }

.lp-price-card__desc {
  font-size: 13px;
  color: var(--lp-gray);
  margin: 4px 0 14px;
  line-height: 1.45;
  min-height: 34px;
}

/* Limites (usuários / produtos / lojas) */
.lp-price-limits {
  display: flex;
  text-align: center;
  background: var(--lp-blue-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.lp-price-limits span {
  flex: 1;
  padding: 8px 4px;
  font-size: 11px;
  color: var(--lp-gray);
  border-right: 1px solid rgba(255,255,255,.7);
}
.lp-price-limits span:last-child { border-right: none; }
.lp-price-limits b { display: block; font-size: 16px; font-weight: 800; color: var(--lp-dark); }

.lp-price-features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lp-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}
.lp-price-features li i {
  color: var(--lp-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-price-features li.disabled { color: #9CA3AF; text-decoration: line-through; }
.lp-price-features li.disabled i { color: #CBD5E1; }
.lp-price-econ {
  font-size: 12px; font-weight: 700; color: #15803D;
  background: #DCFCE7; display: inline-block; padding: 3px 11px;
  border-radius: 100px; margin-top: 6px;
}

/* Toggle mensal / anual */
.lp-billing {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #EEF2F7;
  border-radius: 100px;
  margin: 0 auto 28px;
}
.lp-billing__opt {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-gray);
  padding: 9px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .15s;
}
.lp-billing__opt.is-active { background: #fff; color: var(--lp-blue); box-shadow: 0 2px 8px rgba(2,6,23,.08); }
.lp-billing__save { font-size: 11px; font-weight: 700; background: #DCFCE7; color: #15803D; padding: 2px 8px; border-radius: 100px; }

/* Preço mensal x anual */
.lp-price--a { display: none; }
.lp-pricing.is-annual .lp-price--m { display: none; }
.lp-pricing.is-annual .lp-price--a { display: block; }

.btn-plan {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.btn-plan--primary {
  background: var(--lp-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,101,192,.3);
}
.btn-plan--primary:hover { background: var(--lp-blue-dark); }
.btn-plan--outline {
  border: 2px solid var(--lp-border);
  color: var(--lp-dark);
}
.btn-plan--outline:hover { border-color: var(--lp-blue); color: var(--lp-blue); }

.lp-pricing__note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--lp-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-pricing__note span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-pricing__note i { color: var(--lp-green); }

/* ============================================================
   TESTIMONIALS — infinite carousel
   ============================================================ */
.lp-tc-outer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-tc-viewport {
  flex: 1;
  overflow: hidden;
}

.lp-testimonials {
  display: flex;
  gap: 20px;
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.lp-testimonials.lp-tc--grabbing,
.lp-testimonials.lp-tc--grabbing * { cursor: grabbing !important; }

.lp-testimonial {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.lp-testimonial__stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; }
.lp-testimonial__text  { font-size: 15px; color: var(--lp-dark); line-height: 1.65; margin-bottom: 16px; }
.lp-testimonial__author { display: flex; align-items: center; gap: 12px; }
.lp-testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lp-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-blue);
  flex-shrink: 0;
}
.lp-testimonial__name  { font-size: 14px; font-weight: 700; }
.lp-testimonial__role  { font-size: 12px; color: var(--lp-gray); }

/* Arrow buttons */
.lp-tc-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--lp-border);
  background: var(--lp-white);
  color: var(--lp-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .18s, border-color .18s, color .18s;
}
.lp-tc-arrow:hover {
  background: var(--lp-blue);
  border-color: var(--lp-blue);
  color: #fff;
}

/* Dots */
.lp-tc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.lp-tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--lp-border);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.lp-tc-dot--active {
  background: var(--lp-blue);
  transform: scale(1.4);
}

@media (max-width: 540px) {
  .lp-tc-arrow { display: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq-item {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
}
.lp-faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: background .15s;
}
.lp-faq-item__q:hover { background: var(--lp-light); }
.lp-faq-item__q i { font-size: 18px; color: var(--lp-blue); transition: transform .2s; flex-shrink: 0; }
.lp-faq-item.open .lp-faq-item__q i { transform: rotate(180deg); }
.lp-faq-item__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--lp-gray);
  line-height: 1.7;
}
.lp-faq-item.open .lp-faq-item__a { display: block; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.lp-cta {
  background: linear-gradient(135deg, var(--lp-blue-dark) 0%, var(--lp-blue) 100%);
  padding: 80px 0;
  text-align: center;
}
.lp-cta__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -1px;
}
.lp-cta__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
}
.lp-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #fff;
  color: var(--lp-blue);
  font-size: 16px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
}
.btn-cta-outline:hover { border-color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  background: var(--lp-dark);
  color: rgba(255,255,255,.6);
  padding: 48px 0 24px;
}
.lp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.lp-footer__brand .lp-logo .logo-pdv  { font-size: 20px; color: #fff; }
.lp-footer__brand .lp-logo .logo-loja { font-size: 20px; color: rgba(255,255,255,.7); }
.lp-footer__brand p { font-size: 14px; margin-top: 10px; line-height: 1.6; }

.lp-footer__col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.lp-footer__col a  { display: block; font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.lp-footer__col a:hover { color: #fff; }

.lp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.lp-footer__bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.lp-footer__bottom a:hover { color: #fff; }

/* ============================================================
   MOBILE NAV MENU
   ============================================================ */
.lp-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu__panel {
  background: #fff;
  width: 280px;
  height: 100%;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--lp-gray);
}
.lp-mobile-menu a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--lp-border);
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-dark);
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .lp-nav__links { display: none; }
  .lp-nav__cta   { display: none; }
  .lp-nav__hamburger { display: block; }

  .lp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero__img   { display: none; }
  .lp-hero { padding: 48px 0; }

  .lp-pricing { grid-template-columns: 1fr; }
  .lp-price-card--hero { transform: none; }
  .lp-price-card--hero:hover { transform: translateY(-4px); }

  .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp-footer__brand { grid-column: 1 / -1; }

  .lp-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .lp-hero__actions .btn-hero-outline { display: none; }
  .lp-footer__grid { grid-template-columns: 1fr; }
  .lp-footer__bottom { justify-content: center; text-align: center; }
  .lp-hero h1 { font-size: 28px; }
  .lp-hero p  { font-size: 15px; }
  .lp-pricing-card { padding: 24px 16px; }
  .lp-section__title { font-size: 22px; }
  .lp-nav { padding: 12px 16px; }
}

@media (max-width: 390px) {
  .lp-hero h1 { font-size: 24px; }
  .lp-hero { padding: 36px 0; }
  .btn-hero-primary { width: 100%; justify-content: center; }
  .lp-pricing-grid { gap: 12px; }
}

/* ============================================================
   HOME V2 — product-led landing
   ============================================================ */
.lp-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 16px;
  color: #fff;
  background: #1f4fc4;
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms cubic-bezier(.23, 1, .32, 1);
}
.lp-skip-link:focus { transform: translateY(0); }

.lp-home-v2 {
  --v2-ink: #121722;
  --v2-muted: #657083;
  --v2-line: #e6e9ef;
  --v2-soft: #f6f7f9;
  --v2-blue: #2856c7;
  --v2-blue-dark: #1c43a5;
  --v2-night: #080a0f;
  --v2-night-soft: #111722;
  color: var(--v2-ink);
  background: #fff;
}
.lp-home-v2 .container { max-width: 1180px; }
.lp-home-v2 main { overflow: hidden; }
.lp-home-v2 a,
.lp-home-v2 button { -webkit-tap-highlight-color: transparent; }
.lp-home-v2 :focus-visible {
  outline: 3px solid rgba(76, 133, 255, .55);
  outline-offset: 3px;
}

/* Navegação clara, alinhada à identidade azul do produto */
.lp-home-v2 .lp-nav {
  padding: 12px 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #dce8f7;
  backdrop-filter: blur(14px);
}
.lp-home-v2 .lp-nav__inner { min-height: 42px; }
.lp-home-v2 .lp-logo { gap: 9px; color: #0f6ce5; }
.lp-brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #0f6ce5;
  background: #edf5ff;
  border-radius: 7px;
  transform: none;
}
.lp-brand-mark i { font-size: 17px; transform: none; }
.lp-brand-copy { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.lp-brand-copy strong { color: #162033; font-size: 13px; font-weight: 800; letter-spacing: .05em; }
.lp-brand-copy small {
  margin-top: 3px;
  padding: 2px 4px;
  color: #0f6ce5;
  background: #edf5ff;
  border-radius: 2px;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .16em;
}
.lp-home-v2 .lp-logo .logo-pdv,
.lp-home-v2 .lp-logo .logo-loja { color: #0f6ce5; font-size: 17px; letter-spacing: -.04em; }
.lp-home-v2 .lp-logo .logo-pdv { font-weight: 900; }
.lp-home-v2 .lp-logo .logo-loja { color: #0f6ce5; }
.lp-home-v2 .lp-nav__links { gap: 38px; }
.lp-home-v2 .lp-nav__links a {
  color: #445066;
  font-size: 15px;
  font-weight: 700;
  transition: color 160ms ease;
}
.lp-home-v2 .lp-nav__links a:hover { color: #0f6ce5; }
.lp-home-v2 .btn-outline-nav {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  color: #344056;
  border-color: transparent;
  border-radius: 999px;
  transition: color 160ms ease, background-color 160ms ease, transform 120ms ease;
}
.lp-home-v2 .btn-outline-nav:hover { color: #0f6ce5; background: #edf5ff; }
.lp-home-v2 .btn-primary-nav {
  padding: 9px 17px;
  color: #fff;
  background: var(--v2-blue);
  border-radius: 999px;
  font-size: 14px;
  box-shadow: none;
  transition: background-color 160ms ease, transform 120ms ease;
}
.lp-home-v2 .btn-primary-nav:hover { background: #3566dc; }
.lp-home-v2 .btn-primary-nav:active,
.lp-home-v2 .btn-outline-nav:active { transform: scale(.97); }
.lp-home-v2 .lp-nav__hamburger { color: #0f6ce5; }

/* Hero */
.lp-home-v2 .lp-hero {
  position: relative;
  padding: 58px 0 0;
  text-align: center;
  color: var(--v2-ink);
  background: #eef6ff;
  overflow: hidden;
}
.lp-home-v2 .lp-hero::before {
  display: none;
}
.lp-home-v2 .lp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 52px;
}
.lp-home-v2 .lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  color: #3d5d86;
  border: 1px solid #cadff8;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.lp-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65d998;
  box-shadow: 0 0 0 4px rgba(101, 217, 152, .1);
}
.lp-home-v2 .lp-hero h1 {
  margin: 0;
  color: #162033;
  font-size: clamp(38px, 4.2vw, 52px);
  line-height: 1.14;
  letter-spacing: -.045em;
  font-weight: 800;
}
.lp-home-v2 .lp-hero h1 span {
  color: #0f6ce5;
  -webkit-text-fill-color: currentColor;
}
.lp-typewriter {
  position: relative;
  display: inline-block;
  width: auto;
  min-width: 0;
  min-height: 0;
  white-space: normal;
  text-align: left;
}
.lp-typewriter::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: .82em;
  margin-left: 3px;
  vertical-align: -.04em;
  background: #0f6ce5;
  animation: lp-caret 800ms steps(1) infinite;
}
@keyframes lp-caret { 50% { opacity: 0; } }
.lp-home-v2 .lp-hero__content > p {
  max-width: 560px;
  margin: 17px auto 0;
  color: #5b6b80;
  font-size: 18px;
  line-height: 1.65;
}
.lp-home-v2 .lp-hero__actions {
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.lp-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 120ms ease, box-shadow 180ms ease;
}
.lp-btn:active { transform: scale(.97); }
.lp-btn--primary {
  color: #fff;
  background: var(--v2-blue);
  box-shadow: none;
}
.lp-btn--primary:hover { color: #fff; background: #3465db; box-shadow: none; }
.lp-btn--sales {
  color: #1f7044;
  background: #fff;
  border-color: #cde7d8;
  box-shadow: none;
}
.lp-btn--sales:hover { color: #185c38; background: #f5fff9; border-color: #9fd1b4; }
.lp-btn--ghost {
  color: rgba(255, 255, 255, .84);
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
}
.lp-btn--ghost:hover { color: #fff; border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .09); }
.lp-btn--outline { color: var(--v2-ink); border-color: #dce1e9; background: #fff; }
.lp-btn--outline:hover { color: var(--v2-blue); border-color: #a9bce8; background: #f8faff; }
.lp-btn--light { color: #153581; background: #fff; box-shadow: 0 12px 32px rgba(2, 15, 48, .18); }
.lp-btn--light:hover { color: #153581; background: #f2f6ff; }
.lp-home-v2 .lp-hero__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 21px;
  color: #66778d;
  font-size: 11px;
  font-weight: 600;
}
.lp-home-v2 .lp-hero__meta span { display: inline-flex; align-items: center; gap: 5px; }
.lp-home-v2 .lp-hero__meta i { color: #0f6ce5; font-size: 14px; }

/* Product window */
.lp-product-stage {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 10px 10px 0;
  border: 1px solid #cbdcf1;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 24px 60px rgba(27, 74, 132, .16);
}
.lp-product-window {
  overflow: hidden;
  text-align: left;
  color: var(--v2-ink);
  background: #f5f7fa;
  border-radius: 14px 14px 0 0;
  min-height: 470px;
}
.lp-product-window__bar {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  background: #fff;
  border-bottom: 1px solid #eaedf2;
}
.lp-window-dots { display: flex; gap: 6px; }
.lp-window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d5d9e0; }
.lp-window-dots span:first-child { background: #ff8585; }
.lp-window-dots span:nth-child(2) { background: #ffd27a; }
.lp-window-dots span:last-child { background: #7ed9a1; }
.lp-window-address {
  padding: 5px 50px;
  color: #9299a6;
  background: #f5f6f8;
  border-radius: 6px;
  font-size: 9px;
}
.lp-window-address i { margin-right: 5px; }
.lp-window-user { justify-self: end; }
.lp-window-user span,
.lp-avatar {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: #294fbb;
  font-size: 8px;
  font-weight: 800;
}
.lp-product-window__body { display: grid; grid-template-columns: 150px 1fr; min-height: 424px; }
/* Mockup "Bem-vindo" nítido em HTML/CSS */
.lp-welcome { grid-template-columns: 172px 1fr; background: #fff; user-select: none; }
.lp-welcome__side {
  padding: 16px 12px;
  color: #fff;
  background: #0D47A1;
  overflow: hidden;
}
.lp-welcome__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 4px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.2px;
}
.lp-welcome__brand i { font-size: 17px; }
.lp-welcome__nav { display: flex; flex-direction: column; gap: 2px; }
.lp-welcome__nav hr { margin: 6px 2px; border: 0; border-top: 1px solid rgba(255, 255, 255, .16); }
.lp-welcome__nav span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  white-space: nowrap;
}
.lp-welcome__nav span i { font-size: 12px; width: 14px; }
.lp-welcome__nav span.is-active { background: rgba(255, 255, 255, .14); color: #fff; }
.lp-welcome__main { padding: 34px 34px 26px; }
.lp-welcome__main h3 {
  margin: 0 0 6px;
  color: #162033;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.5px;
}
.lp-welcome__main > p { margin: 0 0 30px; color: #64748b; font-size: 13px; }
.lp-welcome__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-welcome__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 12px 16px;
  text-align: center;
  background: #fff;
  border: 1.5px solid #9DBEF0;
  border-radius: 10px;
}
.lp-welcome__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 2px;
  background: #9DBEF0;
}
.lp-welcome__num {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1565C0;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.lp-welcome__step > i { font-size: 33px; color: #1565C0; line-height: 1; }
.lp-welcome__step strong { color: #1565C0; font-size: 13.5px; font-weight: 700; }
.lp-welcome__step small { color: #64748b; font-size: 11px; line-height: 1.45; }
.lp-demo-sidebar { padding: 22px 13px; color: #818999; background: #111722; }
.lp-demo-brand { margin: 0 10px 26px; color: #fff; font-size: 15px; font-weight: 900; }
.lp-demo-brand span { color: #7ea3ff; }
.lp-demo-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  padding: 9px 10px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 600;
}
.lp-demo-nav i { width: 14px; font-size: 11px; }
.lp-demo-nav.is-active { color: #fff; background: rgba(75, 118, 230, .2); }
.lp-demo-main { padding: 28px 30px; }
.lp-demo-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lp-demo-heading div { display: flex; flex-direction: column; gap: 5px; }
.lp-demo-heading small { color: #9aa1ae; font-size: 7px; font-weight: 800; letter-spacing: .08em; }
.lp-demo-heading strong { font-size: 17px; letter-spacing: -.02em; }
.lp-demo-heading button {
  padding: 9px 12px;
  color: #fff;
  background: var(--v2-blue);
  border: 0;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 700;
}
.lp-demo-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-top: 23px; }
.lp-demo-metric {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 9px;
}
.lp-demo-metric span { color: #8a93a1; font-size: 8px; }
.lp-demo-metric strong { margin: 6px 0 4px; font-size: 18px; letter-spacing: -.03em; }
.lp-demo-metric small { color: #8a93a1; font-size: 7px; }
.lp-demo-metric .is-positive { color: #329265; }
.lp-demo-metric .is-warning { color: #d68a32; }
.lp-demo-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 11px; margin-top: 11px; }
.lp-demo-chart,
.lp-demo-sales { padding: 15px; background: #fff; border: 1px solid #e9edf2; border-radius: 9px; }
.lp-demo-card-head { display: flex; align-items: center; justify-content: space-between; }
.lp-demo-card-head strong { font-size: 9px; }
.lp-demo-card-head span { color: #8a93a1; font-size: 7px; }
.lp-chart-bars { height: 112px; display: flex; align-items: end; gap: 9px; padding: 16px 5px 0; border-bottom: 1px solid #edf0f4; }
.lp-chart-bars i { flex: 1; height: var(--bar); min-width: 8px; border-radius: 3px 3px 0 0; background: linear-gradient(#4775df, #2856c7); opacity: .86; }
.lp-chart-days { display: flex; justify-content: space-around; padding-top: 6px; color: #a0a7b2; font-size: 6px; }
.lp-demo-sale { display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 7px; padding: 10px 0; border-bottom: 1px solid #eff1f4; }
.lp-demo-sale:last-child { border: 0; }
.lp-demo-sale > i { display: grid; place-items: center; width: 19px; height: 19px; color: #2b9361; background: #e7f6ee; border-radius: 5px; font-size: 9px; }
.lp-demo-sale span { display: flex; flex-direction: column; }
.lp-demo-sale b,
.lp-demo-sale > strong { font-size: 7px; }
.lp-demo-sale small { color: #9aa1ad; font-size: 6px; }

/* Assurance strip */
.lp-assurance { color: #fff; background: var(--v2-blue); }
.lp-assurance .container {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.lp-assurance .container > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, .17);
}
.lp-assurance .container > div:first-child { padding-left: 0; }
.lp-assurance .container > div:last-child { padding-right: 0; border-right: 0; }
.lp-assurance i { font-size: 22px; opacity: .8; }
.lp-assurance span { display: flex; flex-direction: column; color: rgba(255, 255, 255, .64); font-size: 13px; line-height: 1.35; }
.lp-assurance strong { font-size: 14px; color: #fff; }
.lp-assurance span span,
.lp-assurance small { color: rgba(255, 255, 255, .64); font-size: 13px; }

/* Shared sections */
.lp-home-v2 .lp-section { padding: 104px 0; }
.lp-home-v2 .lp-section--soft { background: var(--v2-soft); }
.lp-section-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.lp-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--v2-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lp-section-head h2,
.lp-section-copy h2 {
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 800;
}
.lp-section-head > p,
.lp-section-copy > p {
  margin: 18px 0 0;
  color: var(--v2-muted);
  font-size: 17px;
  line-height: 1.75;
}
.lp-section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
  text-align: left;
}
.lp-section-head--split > p { margin: 0 0 4px; }
.lp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--v2-blue);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}
.lp-text-link i { transition: transform 160ms cubic-bezier(.23, 1, .32, 1); }
.lp-text-link:hover i { transform: translateX(3px); }

/* Flow */
.lp-intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.lp-flow-card { padding: 30px 32px; border: 1px solid var(--v2-line); border-radius: 18px; box-shadow: 0 24px 70px rgba(27, 38, 61, .08); }
.lp-flow-step { display: grid; grid-template-columns: 28px 44px 1fr; gap: 14px; align-items: center; }
.lp-flow-step > span { color: #a3aab6; font-size: 9px; font-weight: 800; }
.lp-flow-step > i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--v2-blue);
  background: #edf2ff;
  border-radius: 12px;
  font-size: 18px;
}
.lp-flow-step div { display: flex; flex-direction: column; gap: 3px; }
.lp-flow-step strong { font-size: 16px; }
.lp-flow-step small { color: var(--v2-muted); font-size: 14px; }
.lp-flow-line { width: 1px; height: 26px; margin: 4px 0 4px 49px; background: #dfe4ec; }

/* Benefit cards */
.lp-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-benefit-card {
  min-height: 226px;
  padding: 28px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--v2-line);
  border-radius: 14px;
  transition: transform 180ms cubic-bezier(.23, 1, .32, 1), border-color 180ms ease, box-shadow 180ms ease;
}
.lp-benefit-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  color: var(--v2-blue);
  background: #edf2ff;
  border-radius: 11px;
  font-size: 18px;
}
.lp-benefit-card h3 { margin: 0 0 10px; font-size: 17px; letter-spacing: -.02em; }
.lp-benefit-card p { margin: 0; color: var(--v2-muted); font-size: 15px; line-height: 1.7; }
@media (hover: hover) and (pointer: fine) {
  .lp-benefit-card:hover { transform: translateY(-3px); border-color: #cdd8ef; box-shadow: 0 16px 36px rgba(32, 52, 93, .08); }
}

/* Product showcase */
.lp-showcase__tabs {
  width: max-content;
  max-width: 100%;
  display: flex;
  gap: 3px;
  margin: 0 auto 18px;
  padding: 4px;
  overflow-x: auto;
  background: #f0f2f5;
  border-radius: 999px;
}
.lp-showcase__tabs button {
  min-height: 37px;
  padding: 0 18px;
  color: #717b8c;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}
.lp-showcase__tabs button.is-active { color: var(--v2-blue); background: #fff; box-shadow: 0 2px 8px rgba(20, 31, 52, .09); }
.lp-showcase__tabs button:active { transform: scale(.97); }
.lp-showcase__frame {
  padding: 1px;
  background: #dfe4ec;
  border-radius: 15px;
  box-shadow: 0 30px 80px rgba(20, 29, 46, .18);
}
.lp-showcase-panel {
  min-height: 465px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  align-items: center;
  padding: 54px;
  background: #f6f7f9;
  border-radius: 13px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms cubic-bezier(.23, 1, .32, 1);
}
.lp-showcase-panel[hidden] { display: none !important; }
.lp-showcase-panel.is-active { display: grid; opacity: 1; transform: translateY(0); }
.lp-showcase-copy > span { color: var(--v2-blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.lp-showcase-copy h3 { margin: 12px 0 15px; font-size: 26px; line-height: 1.2; letter-spacing: -.035em; }
.lp-showcase-copy p { margin: 0; color: var(--v2-muted); font-size: 15px; line-height: 1.7; }
.lp-showcase-copy ul { list-style: none; margin: 23px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.lp-showcase-copy li { color: #445065; font-size: 14px; font-weight: 650; }
.lp-showcase-copy li::before { content: "✓"; margin-right: 9px; color: var(--v2-blue); font-weight: 900; }
.lp-ui-preview {
  overflow: hidden;
  padding: 23px;
  background: #fff;
  border: 1px solid #e4e8ef;
  border-radius: 13px;
  box-shadow: 0 18px 45px rgba(31, 45, 70, .1);
}
.lp-ui-search { display: flex; gap: 8px; align-items: center; padding: 11px 13px; color: #a2a9b4; background: #f6f7f9; border-radius: 7px; font-size: 9px; }
.lp-ui-product { display: grid; grid-template-columns: 34px 1fr auto 26px; gap: 10px; align-items: center; padding: 14px 0; border-bottom: 1px solid #edf0f4; }
.lp-product-thumb { width: 34px; height: 34px; background: #202631; border-radius: 7px; }
.lp-product-thumb.is-blue { background: #5272aa; }
.lp-ui-product div { display: flex; flex-direction: column; }
.lp-ui-product b,
.lp-ui-product strong { font-size: 9px; }
.lp-ui-product small { color: #969eaa; font-size: 7px; }
.lp-ui-product button { width: 24px; height: 24px; padding: 0; color: #fff; background: var(--v2-blue); border: 0; border-radius: 6px; }
.lp-ui-total { display: flex; align-items: end; justify-content: space-between; padding-top: 20px; }
.lp-ui-total span { display: flex; flex-direction: column; }
.lp-ui-total small { color: #929aa7; font-size: 7px; }
.lp-ui-total b { font-size: 11px; }
.lp-ui-total > strong { font-size: 20px; letter-spacing: -.04em; }
.lp-ui-table-head,
.lp-ui-table-row { display: grid; grid-template-columns: 1fr 70px 70px; align-items: center; gap: 10px; padding: 12px 3px; }
.lp-ui-table-head { color: #9aa2ae; border-bottom: 1px solid #e9edf2; font-size: 8px; }
.lp-ui-table-row { grid-template-columns: 28px 1fr 70px 70px; border-bottom: 1px solid #edf0f4; font-size: 9px; }
.lp-ui-table-row > i { display: grid; place-items: center; width: 27px; height: 27px; color: #64718a; background: #f0f2f6; border-radius: 6px; }
.lp-ui-table-row span { color: #697386; }
.lp-ui-table-row .is-low { color: #d17631; font-weight: 700; }
.lp-customer-head { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid #edf0f4; }
.lp-customer-head .lp-avatar { width: 42px; height: 42px; font-size: 10px; }
.lp-customer-head div { display: flex; flex-direction: column; }
.lp-customer-head b { font-size: 11px; }
.lp-customer-head small { color: #98a0ac; font-size: 8px; }
.lp-customer-head em { padding: 4px 8px; color: #31865d; background: #e9f7ef; border-radius: 999px; font-size: 7px; font-style: normal; font-weight: 700; }
.lp-customer-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
.lp-customer-stats span { display: flex; flex-direction: column; padding: 14px; background: #f6f7f9; border-radius: 8px; }
.lp-customer-stats small { color: #969eaa; font-size: 7px; }
.lp-customer-stats b { margin-top: 5px; font-size: 11px; }
.lp-customer-history { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 9px; }
.lp-customer-history > i { color: #349267; }
.lp-customer-history span { display: flex; flex-direction: column; }
.lp-customer-history b,
.lp-customer-history strong { font-size: 8px; }
.lp-customer-history small { color: #989faa; font-size: 7px; }
.lp-report-head { display: flex; justify-content: space-between; font-size: 9px; }
.lp-report-head span { color: #9aa2ae; font-size: 8px; }
.lp-report-value { margin: 20px 0 8px; font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.lp-report-value small { margin-left: 5px; color: #338d62; font-size: 8px; }
.lp-report-preview svg { width: 100%; height: 150px; }

/* Segments */
.lp-segment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lp-segment-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 21px;
  background: #fff;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
}
.lp-segment-card > i { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 36px; color: var(--v2-blue); background: #edf2ff; border-radius: 9px; }
.lp-segment-card h3 { margin: 0 0 5px; font-size: 16px; }
.lp-segment-card p { margin: 0; color: var(--v2-muted); font-size: 14px; line-height: 1.55; }

/* Pricing */
.lp-home-v2 .lp-pricing-section { background: #fafafa; }
.lp-home-v2 .lp-billing {
  width: max-content;
  display: flex;
  gap: 2px;
  margin: 0 auto 28px;
  padding: 4px;
  border: 1px solid #344b8b;
  background: transparent;
  border-radius: 999px;
}
.lp-home-v2 .lp-billing button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  color: #344b8b;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}
.lp-home-v2 .lp-billing button.is-active { color: #fff; background: #344b8b; box-shadow: none; }
.lp-home-v2 .lp-billing button:active { transform: scale(.97); }
.lp-home-v2 .lp-billing button span { padding: 2px 6px; color: #245f3e; background: #d9f6e3; border-radius: 999px; font-size: 10px; }
.lp-home-v2 .lp-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.lp-home-v2 .lp-price-card {
  --plan-color: #3157a5;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 24px 26px;
  text-align: center;
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: 10px;
  transition: transform 180ms cubic-bezier(.23, 1, .32, 1), border-color 180ms ease, box-shadow 180ms ease;
}
.lp-home-v2 .lp-price-card:nth-child(4n + 1) { --plan-color: #80c7b9; }
.lp-home-v2 .lp-price-card:nth-child(4n + 2) { --plan-color: #38599f; }
.lp-home-v2 .lp-price-card:nth-child(4n + 3) { --plan-color: #2e5ccb; }
.lp-home-v2 .lp-price-card:nth-child(4n + 4) { --plan-color: #101b32; }
.lp-home-v2 .lp-price-card.is-highlighted { border-color: #dce3ef; box-shadow: none; }
.lp-home-v2 .lp-price-card__badge {
  position: absolute;
  /* Cavalgando a borda de cima. Dentro do card, o selo disputava a linha com
     a pílula do nome do plano e lia-se como parte do conteúdo; sobre a borda
     ele vira etiqueta e destaca o card à distância. Os -12px cabem nos 28px
     que separam a grade do seletor mensal/anual, então nada colide. */
  top: -12px;
  right: 14px;
  width: max-content;
  margin: 0;
  padding: 4px 10px;
  color: var(--plan-color);
  background: #fff;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.lp-price-card__head { min-height: 112px; }
.lp-plan-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  margin: 0 auto 17px;
  padding: 0 17px;
  color: #fff;
  background: var(--plan-color);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}
.lp-price-card__head p {
  max-width: 220px;
  margin: 0 auto;
  color: #6d7480;
  font-size: 13px;
  line-height: 1.55;
}
.lp-price-cycle { min-height: 142px; }
.lp-home-v2 .lp-price {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0;
  margin: 0;
}
.lp-price-cycle .lp-price {
  min-height: 96px;
  flex-direction: row;
  justify-content: center;
}
.lp-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}
.lp-home-v2 .lp-price sup,
.lp-price-main sup { position: static; color: #303642; font-size: 13px; font-weight: 500; }
.lp-home-v2 .lp-price strong,
.lp-price-main strong { margin: 0 3px; color: #171b23; font-size: 43px; line-height: 1; letter-spacing: -.055em; }
.lp-home-v2 .lp-price > span,
.lp-price-main span { color: #444c59; font-size: 14px; }
.lp-home-v2 .lp-price > small {
  width: 100%;
  margin-top: 9px;
  color: #555d69;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}
.lp-price-old {
  width: 100%;
  margin-bottom: 9px;
  color: #c0525e;
  font-size: 12px;
  text-align: center;
  text-decoration: line-through;
}
.lp-price-saving {
  position: relative;
  align-self: center;
  padding: 6px 9px;
  color: #fff;
  background: #25c94a;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.lp-price-saving::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 0;
  content: "";
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #25c94a;
  transform: translateX(-50%);
}
.lp-price-total {
  color: #68717f;
  font-size: 12px;
  font-weight: 650;
}
.lp-home-v2 .lp-price--annual { display: none; }
.lp-home-v2 .lp-pricing.is-annual .lp-price--monthly { display: none; }
.lp-home-v2 .lp-pricing.is-annual .lp-price--annual { display: flex; }
.lp-plan-cta {
  align-self: center;
  min-height: 38px;
  margin: 19px 0 20px;
  padding: 0 21px;
  color: #fff;
  background: var(--plan-color);
  border-color: var(--plan-color);
  font-size: 13px;
}
.lp-plan-cta:hover { color: #fff; filter: brightness(1.06); }
.lp-home-v2 .lp-price-limits {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  text-align: left;
  background: transparent;
}
.lp-home-v2 .lp-price-limits span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: #424a57;
  border: 0;
  font-size: 12px;
}
.lp-home-v2 .lp-price-limits i { width: 15px; color: #1e2633; font-size: 11px; text-align: center; }
.lp-home-v2 .lp-price-limits b { margin: 0; color: #242b36; font-size: 12px; }
.lp-price-divider { width: 100%; height: 1px; margin: 18px 0 15px; background: #d9dde3; }
.lp-price-includes { margin: 0 0 11px; color: #303744; font-size: 12px; font-weight: 750; text-align: left; }
.lp-home-v2 .lp-price-card > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.lp-home-v2 .lp-price-card > ul li { display: flex; gap: 7px; color: #525b68; font-size: 12px; line-height: 1.35; }
.lp-home-v2 .lp-price-card > ul i { flex-shrink: 0; margin-top: 1px; color: var(--plan-color); font-size: 16px; }
.lp-pricing-note { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-top: 27px; color: #747e8f; font-size: 13px; }
.lp-pricing-note span { display: inline-flex; align-items: center; gap: 6px; }
.lp-pricing-note i { color: var(--v2-blue); font-size: 14px; }
.lp-pricing-more { display: flex; justify-content: center; margin-top: 28px; }
.lp-pricing-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  color: #344b8b;
  border: 1px solid #344b8b;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 120ms ease;
}
.lp-pricing-more a:hover { color: #fff; background: #344b8b; }
.lp-pricing-more a:active { transform: scale(.97); }
@media (hover: hover) and (pointer: fine) {
  .lp-home-v2 .lp-price-card:hover { transform: translateY(-3px); border-color: #dbe0e7; box-shadow: 0 16px 36px rgba(26, 42, 74, .08); }
}
@media (max-width: 980px) {
  .lp-home-v2 .lp-pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lp-home-v2 .lp-pricing { grid-template-columns: 1fr; }
}

/* FAQ */
.lp-home-v2 .lp-faq-section { background: var(--v2-soft); }
.lp-faq-layout { display: block; }
.lp-home-v2 .lp-faq {
  max-width: 820px;
  margin: 0 auto;
  gap: 0;
  border-top: 1px solid #dfe3ea;
}
.lp-home-v2 .lp-faq-item { border: 0; border-bottom: 1px solid #dfe3ea; border-radius: 0; }
.lp-home-v2 .lp-faq-item h3 { margin: 0; }
.lp-home-v2 .lp-faq-item__q {
  padding: 22px 4px;
  font-size: 17px;
  transition: color 160ms ease;
}
.lp-home-v2 .lp-faq-item__q:hover { color: var(--v2-blue); background: transparent; }
.lp-home-v2 .lp-faq-item__q i { color: #8b94a2; font-size: 18px; transition: transform 180ms cubic-bezier(.23, 1, .32, 1), color 160ms ease; }
.lp-home-v2 .lp-faq-item.open .lp-faq-item__q i { color: var(--v2-blue); transform: rotate(45deg); }
.lp-home-v2 .lp-faq-item__a {
  display: none;
  padding: 0 40px 22px 4px;
}
.lp-home-v2 .lp-faq-item__a[hidden] { display: none !important; }
.lp-home-v2 .lp-faq-item.open .lp-faq-item__a { display: block; }
.lp-home-v2 .lp-faq-item.open .lp-faq-item__a[hidden] { display: block !important; }
.lp-home-v2 .lp-faq-item__a p { margin: 0; color: var(--v2-muted); font-size: 15px; line-height: 1.75; }
.lp-faq-foot {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.lp-faq-foot .lp-text-link { margin-top: 0; }

/* Support */
.lp-home-v2 .lp-support { padding-top: 90px; padding-bottom: 90px; }
.lp-support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.lp-support-card {
  display: grid;
  grid-template-columns: 42px 1fr 16px;
  gap: 13px;
  align-items: center;
  padding: 22px;
  color: var(--v2-ink);
  border: 1px solid var(--v2-line);
  border-radius: 13px;
  text-decoration: none;
  transition: transform 180ms cubic-bezier(.23, 1, .32, 1), border-color 180ms ease, box-shadow 180ms ease;
}
.lp-support-card > i:first-child { display: grid; place-items: center; width: 42px; height: 42px; color: var(--v2-blue); background: #edf2ff; border-radius: 11px; font-size: 17px; }
.lp-support-card > i:last-child { color: #9da5b1; }
.lp-support-card span { display: flex; flex-direction: column; min-width: 0; }
.lp-support-card small { margin-bottom: 3px; color: #929aa7; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.lp-support-card strong { overflow: hidden; font-size: 15px; text-overflow: ellipsis; }
.lp-support-card em { margin-top: 3px; color: var(--v2-muted); font-size: 13px; font-style: normal; }
@media (hover: hover) and (pointer: fine) {
  .lp-support-card:hover { transform: translateY(-2px); color: var(--v2-ink); border-color: #c8d4eb; box-shadow: 0 14px 32px rgba(30, 48, 82, .07); }
}

/* Final CTA and footer */
.lp-final-cta { color: #fff; background: var(--v2-blue); }
.lp-final-cta .container { min-height: 270px; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.lp-final-cta .lp-kicker { color: #bcd0ff; }
.lp-final-cta h2 { max-width: 660px; margin: 0; color: #fff; font-size: clamp(30px, 4.5vw, 49px); line-height: 1.08; letter-spacing: -.045em; }
.lp-final-cta p { margin: 15px 0 0; color: rgba(255, 255, 255, .7); font-size: 16px; }
.lp-home-v2 .lp-footer { background: var(--v2-night); }

/* Responsive V2 */
@media (max-width: 1020px) {
  .lp-home-v2 .container { padding-left: 30px; padding-right: 30px; }
  .lp-product-stage { width: 94%; }
  .lp-intro__grid,
  .lp-faq-layout { gap: 55px; }
  .lp-showcase-panel { gap: 35px; padding: 40px; }
  .lp-assurance .container { grid-template-columns: repeat(2, 1fr); padding-top: 18px; padding-bottom: 18px; gap: 15px 0; }
  .lp-assurance .container > div:nth-child(2) { border-right: 0; }
  .lp-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .lp-home-v2 .container { padding-left: 20px; padding-right: 20px; }
  .lp-home-v2 .lp-nav { padding: 13px 0; }
  .lp-home-v2 .lp-nav__cta { display: none; }
  .lp-home-v2 .lp-hero { padding: 60px 0 0; }
  .lp-home-v2 .lp-hero h1 { font-size: clamp(36px, 11vw, 50px); }
  .lp-home-v2 .lp-hero__content > p { font-size: 15px; }
  .lp-home-v2 .lp-hero__meta { gap: 8px 15px; }
  .lp-product-stage { width: 100%; padding: 6px 6px 0; border-radius: 14px 14px 0 0; }
  .lp-product-window { min-height: 330px; border-radius: 9px 9px 0 0; }
  .lp-product-window__bar { height: 34px; }
  .lp-window-address { padding: 4px 25px; }
  .lp-product-window__body { grid-template-columns: 50px 1fr; min-height: 300px; }
  .lp-welcome { grid-template-columns: 1fr; min-height: 0; }
  .lp-welcome__side { display: none; }
  .lp-welcome__main { padding: 24px 18px 20px; }
  .lp-welcome__main h3 { font-size: 20px; }
  .lp-welcome__main > p { margin-bottom: 24px; }
  .lp-welcome__steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lp-welcome__step::after { display: none; }
  .lp-demo-sidebar { padding: 14px 8px; }
  .lp-demo-brand { margin: 0 0 18px; font-size: 8px; text-align: center; }
  .lp-demo-nav { justify-content: center; padding: 8px 4px; }
  .lp-demo-nav i { width: auto; font-size: 12px; }
  .lp-demo-nav span { display: none; }
  .lp-demo-main { padding: 18px; }
  .lp-demo-heading strong { font-size: 12px; }
  .lp-demo-metrics { gap: 6px; margin-top: 15px; }
  .lp-demo-metric { padding: 10px; }
  .lp-demo-metric strong { font-size: 12px; }
  .lp-demo-grid { grid-template-columns: 1fr; gap: 6px; }
  .lp-demo-sales { display: none; }
  .lp-chart-bars { height: 78px; }
  .lp-home-v2 .lp-section { padding: 76px 0; }
  .lp-section-head { margin-bottom: 38px; }
  .lp-section-head--split,
  .lp-intro__grid,
  .lp-faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .lp-section-head--split { text-align: center; }
  .lp-flow-card { padding: 24px; }
  .lp-showcase-panel { min-height: 0; grid-template-columns: 1fr; padding: 30px; }
  .lp-ui-preview { min-height: 250px; }
  .lp-segment-grid,
  .lp-support-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-final-cta .container { min-height: 320px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 30px; }
}

@media (max-width: 520px) {
  .lp-home-v2 .lp-hero { padding-top: 45px; }
  .lp-home-v2 .lp-hero__eyebrow { font-size: 10px; }
  .lp-home-v2 .lp-hero__content { margin-bottom: 42px; }
  .lp-home-v2 .lp-hero__actions { flex-direction: column; align-items: stretch; }
  .lp-home-v2 .lp-hero__actions .lp-btn { width: 100%; }
  .lp-home-v2 .lp-hero__meta span { font-size: 10px; }
  .lp-window-address { padding: 4px 10px; }
  .lp-window-user { display: none; }
  .lp-product-window__bar { grid-template-columns: 1fr auto; }
  .lp-demo-main { padding: 13px; overflow: hidden; }
  .lp-demo-heading small,
  .lp-demo-heading button { display: none; }
  .lp-demo-metrics { grid-template-columns: repeat(2, 1fr); }
  .lp-demo-metric:nth-child(3) { display: none; }
  .lp-assurance .container { grid-template-columns: 1fr; gap: 0; padding-top: 12px; padding-bottom: 12px; }
  .lp-assurance .container > div { padding: 13px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .lp-assurance .container > div:last-child { border-bottom: 0; }
  .lp-benefit-grid,
  .lp-segment-grid,
  .lp-support-grid { grid-template-columns: 1fr; }
  .lp-benefit-card { min-height: 0; }
  .lp-showcase__tabs { justify-content: flex-start; }
  .lp-showcase__frame { margin-left: -10px; margin-right: -10px; padding: 1px; border-radius: 15px; }
  .lp-showcase-panel { gap: 28px; padding: 25px 20px; }
  .lp-showcase-copy h3 { font-size: 23px; }
  .lp-ui-preview { min-height: 220px; padding: 16px; }
  .lp-ui-product { grid-template-columns: 28px 1fr auto 24px; gap: 7px; }
  .lp-product-thumb { width: 28px; height: 28px; }
  .lp-ui-table-head { grid-template-columns: 1fr 55px 55px; }
  .lp-ui-table-row { grid-template-columns: 26px 1fr 48px 55px; }
  .lp-home-v2 .lp-price-card { padding: 24px; }
  .lp-pricing-note { flex-direction: column; align-items: center; gap: 10px; }
  .lp-final-cta .lp-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-home-v2 *,
  .lp-home-v2 *::before,
  .lp-home-v2 *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Logo padrao (identico ao da tela de login) */
.lp-logo.lp-logo--brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f6ce5;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.8px;
  text-decoration: none;
}
.lp-logo--brand .lp-logo__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #0f6ce5;
  font-size: 31px;
  line-height: 1;
}
.lp-footer__brand .lp-logo.lp-logo--brand { margin-bottom: 4px; }
@media (max-width: 640px) {
  .lp-logo.lp-logo--brand { font-size: 21px; gap: 8px; }
  .lp-logo--brand .lp-logo__mark { width: 28px; height: 28px; font-size: 26px; }
}
