/* Landing parceiro — /tenha-seu-negocio */

:root {
  --lp2-brand: #f15a24;
  --lp2-brand-deep: #c2410c;
  --lp2-ink: #0f3d3e;
  --lp2-accent-light: #ffd8c4;
  --lp2-accent-highlight: #ffb08a;
  --lp2-live: #86efac;
  --lp2-white: #ffffff;
  --lp2-text: rgba(255, 255, 255, 1);
  --lp2-text-secondary: rgba(255, 255, 255, 0.93);
  --lp2-text-tertiary: rgba(255, 255, 255, 0.7);
  --lp2-card-bg: rgba(255, 255, 255, 0.12);
  --lp2-card-border: rgba(255, 255, 255, 0.22);
  --lp2-card-dark: rgba(0, 0, 0, 0.16);
  --lp2-radius-card: 18px;
  --lp2-radius-btn: 16px;
  --lp2-radius-logo: 22.5%;
  --lp2-max: 640px;
  --lp2-px: 20px;
  --lp2-space-xs: 8px;
  --lp2-space-sm: 12px;
  --lp2-space-md: 16px;
  --lp2-space-lg: 20px;
  --lp2-space-xl: 24px;
  --lp2-space-2xl: 32px;
  --lp2-space-band: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body.lp2-body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background-color: var(--lp2-brand);
  color: var(--lp2-brand-deep);
  min-height: 100dvh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.lp2 {
  position: relative;
  min-height: 100dvh;
}

/* ─── BANDS (laranja / branco alternados) ─── */
.lp2-band {
  --lp2-band-label: var(--lp2-accent-light);
  --lp2-band-title: var(--lp2-white);
  --lp2-band-title-em: var(--lp2-accent-highlight);
  --lp2-band-text: var(--lp2-text-secondary);
  --lp2-band-text-loud: var(--lp2-white);
  --lp2-band-feature-bg: var(--lp2-card-bg);
  --lp2-band-feature-border: rgba(255, 255, 255, 0.14);
  --lp2-band-feature-icon: var(--lp2-accent-light);
  --lp2-band-feature-text: var(--lp2-text-secondary);
  --lp2-band-media-bg: rgba(0, 0, 0, 0.18);
  --lp2-band-media-border: rgba(255, 255, 255, 0.28);
  --lp2-band-media-border-solid: rgba(255, 255, 255, 0.12);
  --lp2-band-media-label: var(--lp2-text-tertiary);
  --lp2-band-tudo-bg: var(--lp2-card-bg);
  --lp2-band-tudo-border: rgba(255, 255, 255, 0.14);
  --lp2-band-tudo-title: var(--lp2-white);
  --lp2-band-tudo-desc: var(--lp2-text-secondary);
  --lp2-band-btn-bg: var(--lp2-white);
  --lp2-band-btn-color: var(--lp2-brand-deep);
  --lp2-band-btn-hover: #fff8f4;
  --lp2-band-btn-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  --lp2-band-final-bg: rgba(0, 0, 0, 0.2);
  --lp2-band-final-border: var(--lp2-card-border);
  --lp2-band-footer: var(--lp2-text-tertiary);
  --lp2-band-footer-muted: rgba(255, 255, 255, 0.45);

  position: relative;
  padding: var(--lp2-space-band) 0;
}

.lp2-band--orange + .lp2-band--orange {
  padding-top: 0;
}

.lp2-band--white + .lp2-band--white {
  padding-top: var(--lp2-space-lg);
}

.lp2-band--orange:has(+ .lp2-band--orange) {
  padding-bottom: 0;
}

/* Faixas laranja em sequência: fundo liso contínuo (sem gradiente que gera faixa clara). */
.lp2-band--orange:has(+ .lp2-band--orange)::before,
.lp2-band--orange + .lp2-band--orange::before {
  display: none;
}

.lp2-section--split {
  margin-top: var(--lp2-space-2xl);
  padding-top: var(--lp2-space-2xl);
}

.lp2-section--split::before {
  content: '';
  display: block;
  width: min(68%, 400px);
  height: 1px;
  margin: 0 auto var(--lp2-space-lg);
  background: rgba(255, 255, 255, 0.24);
}

.lp2-page > .lp2-section--split + .lp2-final-banner {
  margin-top: var(--lp2-space-2xl);
}

.lp2-band--orange {
  background-color: var(--lp2-brand);
  color: var(--lp2-text);
}

.lp2-band--orange::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(255, 181, 154, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(193, 65, 12, 0.35) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.lp2-band--orange > .lp2-page {
  position: relative;
  z-index: 1;
}

.lp2-band--white {
  --lp2-band-label: var(--lp2-brand);
  --lp2-band-title: var(--lp2-ink);
  --lp2-band-title-em: var(--lp2-brand);
  --lp2-band-text: rgba(15, 61, 62, 0.78);
  --lp2-band-text-loud: var(--lp2-ink);
  --lp2-band-text-mark: var(--lp2-ink);
  --lp2-band-feature-bg: #f4f5f7;
  --lp2-band-feature-border: #e8eaed;
  --lp2-band-feature-icon: var(--lp2-brand);
  --lp2-band-feature-text: var(--lp2-ink);
  --lp2-band-media-bg: #f3f4f6;
  --lp2-band-media-border: rgba(15, 61, 62, 0.12);
  --lp2-band-media-border-solid: rgba(15, 61, 62, 0.1);
  --lp2-band-media-label: rgba(15, 61, 62, 0.55);
  --lp2-band-tudo-bg: rgba(241, 90, 36, 0.06);
  --lp2-band-tudo-border: rgba(241, 90, 36, 0.16);
  --lp2-band-tudo-title: var(--lp2-ink);
  --lp2-band-tudo-desc: rgba(15, 61, 62, 0.72);
  --lp2-band-btn-bg: var(--lp2-brand);
  --lp2-band-btn-color: var(--lp2-white);
  --lp2-band-btn-hover: #e85320;
  --lp2-band-btn-shadow: 0 10px 28px rgba(241, 90, 36, 0.28);
  --lp2-band-final-bg: rgba(241, 90, 36, 0.08);
  --lp2-band-final-border: rgba(241, 90, 36, 0.2);
  --lp2-band-footer: rgba(15, 61, 62, 0.55);
  --lp2-band-footer-muted: rgba(15, 61, 62, 0.38);

  background-color: #ffffff;
  color: var(--lp2-ink);
}

.lp2-band:first-child {
  padding-top: 0;
}

.lp2-band--white .lp2-feature-box {
  box-shadow: 0 1px 3px rgba(15, 61, 62, 0.05);
}

.lp2-band--white .lp2-plan,
.lp2-band--white .lp2-results {
  border-color: #e8eaed;
  box-shadow: 0 8px 28px rgba(15, 61, 62, 0.06);
}

.lp2-band--white .lp2-results__stat {
  background: #f4f5f7;
  border-color: #e8eaed;
}

.lp2-band--white .lp2-plan__title,
.lp2-band--white .lp2-plan__feature-text strong,
.lp2-band--white .lp2-results__title,
.lp2-band--white .lp2-results__stat-label {
  color: var(--lp2-ink);
}

.lp2-band--white .lp2-plan__lead,
.lp2-band--white .lp2-plan__feature-text span,
.lp2-band--white .lp2-results__num {
  color: var(--lp2-brand);
}

.lp2-band--white .lp2-plan__badge {
  color: var(--lp2-brand);
  background: rgba(241, 90, 36, 0.1);
  border-color: rgba(241, 90, 36, 0.22);
}

.lp2-band--white .lp2-media__play {
  background: rgba(241, 90, 36, 0.1);
  border-color: rgba(241, 90, 36, 0.35);
}

.lp2-band--white .lp2-media__play svg path {
  fill: var(--lp2-brand);
}

/* ─── INTRO (logo) ─── */
.lp2-intro {
  display: flex;
  justify-content: center;
  padding: calc(env(safe-area-inset-top, 0px) + 16px) 0 var(--lp2-space-sm);
}

.lp2-intro__logo {
  width: min(24vw, 80px);
  aspect-ratio: 1;
  border-radius: var(--lp2-radius-logo);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.lp2-intro__logo picture,
.lp2-intro__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ─── PAGE ─── */
.lp2-page {
  max-width: var(--lp2-max);
  margin: 0 auto;
  padding: 0 var(--lp2-px);
}

.lp2-section {
  padding: 0;
}

.lp2-section__head {
  margin-bottom: var(--lp2-space-xl);
}

.lp2-section > .lp2-feature-boxes,
.lp2-section > .lp2-results,
.lp2-section > .lp2-plan,
.lp2-section > .lp2-tudo-carousel {
  margin-top: var(--lp2-space-xl);
}

.lp2-section > .lp2-plan + .lp2-plan {
  margin-top: var(--lp2-space-md);
}

.lp2-section--center,
.lp2-section__head--center {
  text-align: center;
}

/* ─── HERO ─── */
.lp2-hero {
  padding-top: var(--lp2-space-sm);
  padding-bottom: 0;
  text-align: center;
}

.lp2-hero__eyebrow {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 var(--lp2-space-md);
  padding: 8px 12px;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--lp2-accent-light);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.lp2-hero__title {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--lp2-white);
  margin: 0 0 var(--lp2-space-sm);
  text-wrap: balance;
}

.lp2-hero__title em {
  font-style: normal;
  color: var(--lp2-accent-highlight);
}

.lp2-hero__sub {
  font-size: 0.8125rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--lp2-text-secondary);
  margin: 0 auto var(--lp2-space-xl);
  padding: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.lp2-hero__sub-line {
  display: block;
}

/* ─── COUNTER ─── */
.lp2-counter {
  position: relative;
  background: #ffffff;
  border: none;
  border-radius: var(--lp2-radius-card);
  padding: var(--lp2-space-xl) var(--lp2-space-lg) var(--lp2-space-lg);
  margin-bottom: var(--lp2-space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lp2-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp2-live);
  flex-shrink: 0;
  animation: lp2-pulse-live 1.8s infinite;
}

.lp2-counter .lp2-live-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 7px;
  height: 7px;
  animation-name: lp2-pulse-live-sm;
}

@keyframes lp2-pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(134, 239, 172, 0); }
  100% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0); }
}

@keyframes lp2-pulse-live-sm {
  0% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.55); }
  70% { box-shadow: 0 0 0 5px rgba(134, 239, 172, 0); }
  100% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0); }
}

.lp2-counter__inner {
  width: 100%;
  text-align: center;
}

.lp2-counter__num {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 12vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--lp2-brand);
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  display: block;
  text-align: center;
}

.lp2-counter__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp2-brand-deep);
  margin-top: 8px;
  display: block;
  text-align: center;
  max-width: 28em;
  margin-inline: auto;
}

/* ─── MEDIA ─── */
.lp2-media {
  margin: var(--lp2-space-xl) 0 0;
  border-radius: var(--lp2-radius-card);
  overflow: hidden;
  background: var(--lp2-band-media-bg);
  border: 1.5px dashed var(--lp2-band-media-border);
  position: relative;
}

.lp2-media--banner {
  aspect-ratio: 1920 / 840;
  min-height: 0;
}

.lp2-media--tall:not(:has(img)):not(:has(video)):not(:has(picture)) {
  aspect-ratio: 4 / 5;
  width: 100%;
  min-height: 280px;
}

.lp2-media--tall:has(img),
.lp2-media--tall:has(video),
.lp2-media--tall:has(picture) {
  aspect-ratio: auto;
  max-height: none;
  height: auto;
}

.lp2-media--tall.lp2-media--preview-still img {
  object-fit: contain;
  background: #ffffff;
}

.lp2-media--contain img,
.lp2-media--contain picture img,
.lp2-media--contain video {
  object-fit: contain;
  background: transparent;
}

.lp2-media:has(img),
.lp2-media:has(video),
.lp2-media:has(picture) {
  border-style: solid;
  border-color: var(--lp2-band-media-border-solid);
  background: transparent;
}

.lp2-media:has(video),
.lp2-media--video-ph {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.lp2-band--white .lp2-media:has(video),
.lp2-band--white .lp2-media--video-ph {
  box-shadow: 0 8px 22px rgba(15, 61, 62, 0.09);
}

.lp2-band--orange .lp2-media:has(video),
.lp2-band--orange .lp2-media--video-ph {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.lp2-media img,
.lp2-media video,
.lp2-media picture {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lp2-media__video--loop {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.lp2-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp2-media--banner img,
.lp2-media--banner picture,
.lp2-media--banner picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lp2-media--banner:has(img),
.lp2-media--banner:has(picture) {
  aspect-ratio: auto;
  height: auto;
}

.lp2-media--tall img,
.lp2-media--tall video,
.lp2-media--tall picture,
.lp2-media--tall picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lp2-media__placeholder {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.lp2-media--tall .lp2-media__placeholder {
  min-height: 0;
  height: 100%;
}

.lp2-media__icon {
  font-size: 2rem;
  line-height: 1;
}

.lp2-media__label {
  font-size: 0.82rem;
  color: var(--lp2-band-media-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.lp2-media__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp2-white);
}

.lp2-media__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

/* ─── CTA ─── */
.lp2-cta {
  margin: var(--lp2-space-xl) 0 0;
}

.lp2-btn {
  display: block;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  padding: 17px 24px;
  border-radius: var(--lp2-radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.lp2-btn--primary,
.lp2-btn--primary:visited {
  background: var(--lp2-band-btn-bg);
  color: var(--lp2-band-btn-color);
  -webkit-text-fill-color: var(--lp2-band-btn-color);
  box-shadow: var(--lp2-band-btn-shadow);
}

.lp2-btn--primary:hover {
  background: var(--lp2-band-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.lp2-band--white .lp2-btn--primary:hover {
  box-shadow: 0 14px 32px rgba(241, 90, 36, 0.34);
}

.lp2-btn--primary:active {
  transform: translateY(0);
}

.lp2-btn--disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

/* ─── SECTION TYPO ─── */
.lp2-section__label,
.lp2-section__title,
.lp2-section__text {
  text-align: center;
}

.lp2-section__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp2-band-label);
  margin-bottom: var(--lp2-space-xs);
}

.lp2-section > .lp2-section__label:first-child {
  margin-bottom: var(--lp2-space-xs);
}

.lp2-section > .lp2-section__label:first-child + .lp2-section__title {
  margin-bottom: var(--lp2-space-xl);
}

.lp2-section__title {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--lp2-band-title);
  margin: 0 0 var(--lp2-space-md);
  text-wrap: balance;
}

.lp2-section__title em {
  font-style: normal;
  color: var(--lp2-band-title-em);
}

.lp2-section__text {
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--lp2-band-text);
  margin: var(--lp2-space-sm) 0 0;
}

.lp2-section__text strong {
  color: var(--lp2-band-text-mark, var(--lp2-band-title));
}

.lp2-section__text--loud {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--lp2-band-text-loud);
  letter-spacing: -0.01em;
  margin: var(--lp2-space-sm) 0 0;
}

/* ─── FEATURE LIST ─── */
.lp2-feature-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp2-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--lp2-text-secondary);
}

.lp2-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp2-accent-light);
  flex-shrink: 0;
  margin-top: 7px;
}

.lp2-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--lp2-accent-light);
  line-height: 0;
}

.lp2-check .guia-ui-lucide,
.lp2-check__svg {
  display: block;
}

.lp2-feature-boxes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--lp2-space-sm);
}

.lp2-feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lp2-band-feature-bg);
  border: 1px solid var(--lp2-band-feature-border);
  border-radius: 14px;
  padding: 14px 16px;
}

.lp2-feature-box__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--lp2-band-feature-icon);
}

.lp2-feature-box__icon .guia-ui-lucide,
.lp2-feature-box__icon-svg {
  display: block;
  flex-shrink: 0;
}

.lp2-feature-box__text {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--lp2-band-feature-text);
}

/* ─── CARDS ─── */
.lp2-card {
  background: var(--lp2-card-bg);
  border: 1px solid var(--lp2-card-border);
  border-radius: var(--lp2-radius-card);
  padding: 18px 20px;
  margin-bottom: 12px;
}

.lp2-card__title {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--lp2-white);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp2-card__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.lp2-card--highlight {
  background: #ffffff;
  border: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.lp2-card--highlight .lp2-card__title {
  color: var(--lp2-brand-deep);
}

.lp2-card--highlight .lp2-feature-list li {
  color: var(--lp2-brand);
}

.lp2-card--highlight .lp2-check {
  color: #22c55e;
}

/* ─── PLAN CARD (estilo Blencer Plus) ─── */
.lp2-plan {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: var(--lp2-space-xl) var(--lp2-space-lg);
  margin: 0 0 var(--lp2-space-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.lp2-plan:last-of-type {
  margin-bottom: 0;
}

.lp2-plan__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lp2-space-sm);
  margin-bottom: var(--lp2-space-md);
}

.lp2-plan__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lp2-brand);
  background: rgba(241, 90, 36, 0.1);
  border: 1px solid rgba(241, 90, 36, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
}

.lp2-plan__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp2-brand);
  line-height: 0;
}

.lp2-plan__title {
  margin: 0 0 var(--lp2-space-xs);
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(1.2rem, 4.5vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--lp2-brand-deep);
}

.lp2-plan__lead {
  margin: 0 0 var(--lp2-space-lg);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--lp2-brand);
}

.lp2-plan__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(241, 90, 36, 0.12);
  padding-top: 16px;
}

.lp2-plan__features--compact {
  gap: 8px;
}

.lp2-plan__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.lp2-plan__feature .lp2-check {
  margin-top: 2px;
  color: #22c55e;
}

.lp2-plan__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--lp2-brand);
  line-height: 0;
}

.lp2-plan__feature-icon .guia-ui-lucide,
.lp2-plan__feature-icon-svg {
  display: block;
}

.lp2-plan__feature-text {
  flex: 1;
  min-width: 0;
}

.lp2-plan__feature-text strong {
  display: block;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--lp2-brand-deep);
  margin-bottom: 1px;
  line-height: 1.25;
}

.lp2-plan__feature-text span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--lp2-brand);
  opacity: 0.9;
}


/* ─── RESULTS PANEL ─── */
.lp2-results {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: var(--lp2-space-lg) var(--lp2-space-md) var(--lp2-space-xl);
  margin: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.lp2-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lp2-space-sm);
  margin-bottom: var(--lp2-space-md);
}

.lp2-results__title {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--lp2-brand-deep);
  margin: 0;
}

.lp2-results__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #16a34a;
  white-space: nowrap;
}

.lp2-results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--lp2-space-sm);
}

.lp2-results__stat {
  background: rgba(241, 90, 36, 0.08);
  border: 1px solid rgba(241, 90, 36, 0.14);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
}

.lp2-results__num {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.05rem, 4.8vw, 1.35rem);
  letter-spacing: -0.02em;
  color: var(--lp2-brand);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.lp2-results__stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--lp2-brand-deep);
  margin-top: 6px;
  line-height: 1.25;
}

/* ─── TUDO CAROUSEL (2 fileiras) ─── */
.lp2-tudo-carousel {
  display: flex;
  flex-direction: column;
  gap: var(--lp2-space-sm);
  margin: var(--lp2-space-lg) calc(-1 * var(--lp2-px)) 0;
}

.lp2-tudo-row__viewport {
  overflow: hidden;
}

.lp2-tudo-row__track {
  display: flex;
  gap: var(--lp2-space-sm);
  width: max-content;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
}

.lp2-tudo-row__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.lp2-tudo-row__group {
  display: contents;
}

.lp2-tudo-card {
  flex: 0 0 min(68vw, 220px);
  background: var(--lp2-band-tudo-bg);
  border: 1px solid var(--lp2-band-tudo-border);
  border-radius: 14px;
  padding: 18px 16px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp2-tudo-card__emoji {
  font-size: 1.75rem;
  line-height: 1;
}

.lp2-tudo-card__title {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp2-band-tudo-title);
  line-height: 1.2;
}

.lp2-tudo-card__desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--lp2-band-tudo-desc);
}

/* ─── DISCOVER APP ─── */
.lp2-discover {
  margin-top: var(--lp2-space-2xl);
}

.lp2-cta--inline {
  margin-top: var(--lp2-space-lg);
}

.lp2-btn--outline,
.lp2-btn--outline:visited {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lp2-white);
  -webkit-text-fill-color: var(--lp2-white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.lp2-btn--outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

/* ─── PRICING ─── */
.lp2-pricing-section .lp2-section__head .lp2-section__text {
  max-width: 30em;
  margin-inline: auto;
}

.lp2-pricing {
  position: relative;
  margin-top: 0;
  background: #ffffff;
  border-radius: 22px;
  padding: var(--lp2-space-2xl) var(--lp2-space-xl);
  text-align: left;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 20px 50px rgba(0, 0, 0, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.lp2-pricing__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--lp2-space-lg);
  margin-bottom: 0;
}

.lp2-pricing__pitch {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 0 4px;
  font-size: clamp(0.72rem, 2.8vw, 0.82rem);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(15, 61, 62, 0.78);
}

.lp2-pricing__pitch-line {
  display: block;
}

.lp2-pricing__pitch strong {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f3d3e;
}

.lp2-pricing__price-box {
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 18px 14px;
  text-align: center;
  background: linear-gradient(165deg, rgba(15, 61, 62, 0.05) 0%, rgba(15, 61, 62, 0.02) 100%);
  border: 1px solid rgba(15, 61, 62, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(15, 61, 62, 0.06);
}

.lp2-pricing__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  line-height: 1;
  color: #0f3d3e;
}

.lp2-pricing__currency {
  margin-top: 0.42em;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f3d3e;
}

.lp2-pricing__value {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.04em;
}

.lp2-pricing__amount {
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(2.35rem, 11vw, 2.85rem);
  font-weight: 900;
  color: #0f3d3e;
  font-variant-numeric: tabular-nums;
}

.lp2-pricing__cents {
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: 900;
  color: #0f3d3e;
}

.lp2-pricing__period {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: rgba(15, 61, 62, 0.62);
}

.lp2-pricing__note {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(15, 61, 62, 0.08);
  width: 100%;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(15, 61, 62, 0.45);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.lp2-pricing__close {
  margin-top: var(--lp2-space-lg);
  padding-top: var(--lp2-space-lg);
  border-top: 1px solid rgba(15, 61, 62, 0.08);
  text-align: center;
}

.lp2-pricing__close-title {
  margin: 0 0 var(--lp2-space-xl);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 4.5vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0f3d3e;
  text-wrap: balance;
}

.lp2-pricing__close-title em {
  font-style: normal;
  color: var(--lp2-brand);
}

.lp2-pricing .lp2-cta {
  margin-top: 0;
}

.lp2-pricing .lp2-btn--primary,
.lp2-pricing .lp2-btn--primary:visited {
  background: var(--lp2-brand);
  color: var(--lp2-white);
  -webkit-text-fill-color: var(--lp2-white);
  box-shadow: 0 12px 32px rgba(241, 90, 36, 0.35);
}

.lp2-pricing .lp2-btn--primary:hover {
  background: #e85320;
  box-shadow: 0 16px 36px rgba(241, 90, 36, 0.42);
}

/* ─── FINAL BANNER ─── */
.lp2-final-banner {
  background: var(--lp2-band-final-bg);
  border: 1px solid var(--lp2-band-final-border);
  border-radius: var(--lp2-radius-card);
  padding: var(--lp2-space-2xl) var(--lp2-space-xl);
  text-align: center;
  margin-bottom: 0;
}

.lp2-final-banner__title {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 4.5vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--lp2-band-title);
  margin: 0 0 var(--lp2-space-xl);
  text-wrap: balance;
}

.lp2-final-banner__title em {
  font-style: normal;
  color: var(--lp2-band-title-em);
}

.lp2-final-banner .lp2-cta {
  margin-bottom: 0;
}

/* ─── FOOTER ─── */
.lp2-footer {
  padding: var(--lp2-space-2xl) 0 calc(var(--lp2-space-md) + env(safe-area-inset-bottom));
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp2-footer p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--lp2-band-footer);
  line-height: 1.55;
}

.lp2-footer__muted {
  color: var(--lp2-band-footer-muted);
}

/* ─── SCROLL REVEAL ─── */
.lp2-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 480px) {
  :root {
    --lp2-px: 24px;
    --lp2-space-band: 40px;
  }

  .lp2-hero__sub {
    font-size: 0.9375rem;
  }
}

@media (min-width: 375px) and (max-width: 479px) {
  .lp2-hero__sub {
    font-size: 0.875rem;
  }
}
