/* Layout inspirado na estrutura visual de imobl.com.br — escopo Mensalee */
:root {
  /* Marca Mensalee (mesmo gradiente do landing_v2.css / identidade original) */
  --lp-brand-a: #6c63ff;
  --lp-brand-b: #1088bc;
  --lp-brand-gradient: linear-gradient(122deg, #6c63ff, #1088bc);
  --lp-bg: #f4f6f9;
  --lp-surface: #ffffff;
  --lp-ink: #0f172a;
  --lp-muted: #64748b;
  --lp-line: #e2e8f0;
  /* Texto sobre fundo em gradiente da marca */
  --lp-on-brand: #f8fafc;
  --lp-on-brand-muted: rgba(248, 250, 252, 0.82);
  --lp-on-brand-soft: rgba(248, 250, 252, 0.65);
  --lp-accent: #6c63ff;
  --lp-accent-dark: #5548d9;
  --lp-accent-glow: rgba(108, 99, 255, 0.38);
  --lp-hero-highlight: #a5d8ff;
  --lp-link-on-brand: #c8e6ff;
  --lp-radius: 16px;
  --lp-radius-sm: 12px;
  --lp-shadow: 0 22px 50px -24px rgba(15, 23, 42, 0.35);
  --lp-max: 1120px;
}

body.lp-imobl {
  margin: 0;
  background: var(--lp-bg) !important;
  color: var(--lp-ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

body.lp-imobl * {
  box-sizing: border-box;
}

body.lp-imobl header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: auto;
  min-height: 72px;
  padding: 12px 24px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-line);
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-direction: row !important;
  max-width: 100%;
}

body.lp-imobl .logo-header {
  height: 40px;
}

body.lp-imobl .btn-cta-purple {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lp-brand-gradient) !important;
  border: none;
  box-shadow: 0 8px 24px var(--lp-accent-glow);
}

body.lp-imobl .btn-cta-outline-purple {
  border-radius: 999px;
  border-color: var(--lp-line);
  color: var(--lp-ink);
}

body.lp-imobl .btn-cta-white {
  border-radius: 999px;
  padding: 16px 32px;
  background: #fff !important;
  color: var(--lp-accent) !important;
  border: none;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.18);
}

.lp-container {
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero — mesma base de cor do site Mensalee (roxo → azul) */
.lp-hero {
  position: relative;
  background: radial-gradient(900px 420px at 18% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(700px 380px at 92% 20%, rgba(16, 136, 188, 0.35), transparent 50%),
    var(--lp-brand-gradient);
  color: var(--lp-on-brand-muted);
  padding: 48px 0 100px;
  overflow: hidden;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 30%, transparent);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
}

/* Hero em duas colunas: texto à esquerda, pseudo-telas empilhadas à direita */
.lp-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.lp-hero-copy {
  min-width: 0;
}

.lp-hero-copy .lp-hero-cta-row {
  margin-bottom: 0;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--lp-on-brand-soft);
  margin: 0 0 16px;
}

.lp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--lp-on-brand);
  margin: 0 0 20px;
  max-width: none;
}

.lp-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--lp-on-brand-muted);
  margin: 0 0 28px;
  max-width: 36em;
}

.lp-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
  max-width: none;
}

.lp-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--lp-on-brand-muted);
  line-height: 1.45;
}

.lp-hero-bullets .material-symbols-outlined {
  font-size: 22px;
  color: var(--lp-hero-highlight);
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-bottom: 40px;
}

.lp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 13px;
  color: var(--lp-on-brand-soft);
}

.lp-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-hero-meta .material-symbols-outlined {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
}

/* Coluna direita: deck de pseudo-telas (sobreposição + leve perspectiva, estilo Imobl) */
.lp-hero-visual {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}

.lp-hero-screens {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
  padding: 24px 0 20px;
}

.lp-hero-screen {
  position: relative;
  z-index: 1;
}

.lp-hero-screen--1 {
  z-index: 5;
}

.lp-hero-screen--2 {
  z-index: 4;
}

.lp-hero-screen--3 {
  z-index: 3;
}

/* Wrapper: badge + pseudo-tela flutuam juntos */
.lp-hero-screen-motion {
  position: relative;
  transform-origin: 50% 100%;
  will-change: transform;
  animation: lp-hero-card-float 9s ease-in-out infinite;
}

.lp-hero-screen--1 .lp-hero-screen-motion {
  animation-delay: 0s;
}

.lp-hero-screen--2 .lp-hero-screen-motion {
  animation-delay: 1.1s;
}

.lp-hero-screen--3 .lp-hero-screen-motion {
  animation-delay: 2.2s;
}

/* Badge azul semitransparente sobre cada pseudo-tela */
.lp-hero-screen-badge {
  position: absolute;
  top: -8px;
  left: 22px;
  z-index: 8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 249, 255, 0.98);
  background: rgba(16, 136, 188, 0.42);
  border: 1px solid rgba(147, 197, 253, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(8, 47, 73, 0.25);
  pointer-events: none;
}

@keyframes lp-hero-card-float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.08deg);
  }

  50% {
    transform: translateY(-5px) rotate(0.1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-screen-motion {
    animation: none;
  }
}

@media (max-width: 991px) {
  .lp-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lp-hero-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

}

.lp-ui-card {
  background: #fff;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  color: var(--lp-ink);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-align: left;
}

.lp-ui-card.lp-ui-card--hero {
  border-radius: 14px;
  box-shadow: 0 22px 48px -18px rgba(15, 23, 42, 0.38);
}

.lp-ui-card__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f8fafc;
  border-bottom: 1px solid var(--lp-line);
  font-size: 11px;
  color: var(--lp-muted);
  font-weight: 500;
}

.lp-ui-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.lp-ui-card__body {
  padding: 16px 16px 18px;
}

.lp-ui-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}

.lp-ui-kpi {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.lp-ui-kpi div {
  flex: 1;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 10px 12px;
}

.lp-ui-kpi small {
  display: block;
  font-size: 10px;
  color: var(--lp-muted);
  margin-bottom: 4px;
}

.lp-ui-kpi strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-ink);
}

.lp-ui-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
}

.lp-ui-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-ui-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid var(--lp-line);
}

.lp-ui-row em {
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
}

.lp-ui-row .tag-vago {
  background: #fef3c7;
  color: #b45309;
}

.lp-ui-row .tag-ativo {
  background: #dcfce7;
  color: #15803d;
}

.lp-ui-crm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.lp-ui-crm span {
  text-align: center;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 10px 6px;
  font-size: 11px;
}

.lp-ui-crm strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

.lp-ui-chat {
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  padding: 10px;
  font-size: 11px;
  background: #fff;
}

.lp-ui-chat .wa {
  color: #059669;
  font-weight: 700;
  margin-bottom: 6px;
}

.lp-ui-chat__hint {
  margin-top: 8px;
  color: #64748b;
  font-size: 11px;
}

.lp-ui-pill--mt {
  margin-top: 10px;
  display: inline-flex;
}

/* Trust bar */
.lp-trust-bar {
  background: var(--lp-surface);
  border-bottom: 1px solid var(--lp-line);
  padding: 18px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--lp-muted);
  font-weight: 500;
}

.lp-trust-bar strong {
  color: var(--lp-ink);
  font-weight: 600;
}

/* Sections */
.lp-section {
  padding: 72px 0;
}

.lp-section--muted {
  background: var(--lp-surface);
}

.lp-section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.lp-kicker {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-accent-dark);
  margin: 0 0 12px;
}

.lp-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--lp-ink);
}

.lp-section-head p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--lp-muted);
  line-height: 1.6;
}

/* Three pillars */
.lp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .lp-pillars {
    grid-template-columns: 1fr;
  }
}

.lp-pillar {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.lp-pillar .material-symbols-outlined {
  font-size: 36px;
  color: var(--lp-accent);
  margin-bottom: 16px;
}

.lp-pillar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.lp-pillar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--lp-muted);
}

/* Feature grid */
.lp-kicker-block {
  text-align: center;
  margin-bottom: 10px;
}

.lp-grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .lp-grid-features {
    grid-template-columns: 1fr;
  }
}

.lp-feat {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-sm);
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lp-feat .material-symbols-outlined {
  font-size: 28px;
  color: var(--lp-accent);
  flex-shrink: 0;
}

.lp-feat h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.lp-feat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-muted);
}

/* Mid CTA */
.lp-mid-cta {
  text-align: center;
  padding: 56px 24px;
  background: var(--lp-brand-gradient);
  color: #fff;
  border-radius: var(--lp-radius);
  margin: 0 auto;
  max-width: var(--lp-max);
  box-shadow: var(--lp-shadow);
}

.lp-mid-cta h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.lp-mid-cta p {
  margin: 0 0 22px;
  opacity: 0.92;
  font-size: 15px;
}

/* Pricing */
.lp-pricing-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.lp-pricing-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 12px;
}

.lp-pricing-head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1rem;
}

.lp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 991px) {
  .lp-plans {
    grid-template-columns: 1fr;
  }

  .lp-plan--featured::before {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }

  .lp-plan--featured h3 {
    padding-right: 0;
  }
}

.lp-plan {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.lp-plan--featured {
  border-color: var(--lp-accent);
  box-shadow: 0 16px 48px var(--lp-accent-glow);
  position: relative;
  padding-top: 36px;
}

.lp-plan--featured h3 {
  padding-right: 120px;
}

.lp-plan--featured::before {
  content: "Mais escolhido";
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-accent-dark);
  background: #e8e6ff;
  padding: 4px 10px;
  border-radius: 999px;
}

.lp-plan h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.lp-plan .lp-plan-desc {
  font-size: 13px;
  color: var(--lp-muted);
  margin: 0 0 16px;
  min-height: 44px;
}

.lp-plan-price {
  margin-bottom: 20px;
}

.lp-plan-price .old {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-right: 6px;
}

.lp-plan-price .cur {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-plan-price .per {
  font-size: 14px;
  color: var(--lp-muted);
  font-weight: 500;
}

.lp-plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.lp-plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--lp-ink);
}

.lp-plan li .material-symbols-outlined {
  font-size: 18px;
  color: var(--lp-accent);
  flex-shrink: 0;
}

.lp-plan .btn-cta-purple,
.lp-plan .btn-cta-outline-purple {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.lp-plan--featured .btn-cta-purple {
  box-shadow: none;
}

.lp-card-soft {
  background: #f8fafc;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-sm);
  padding: 24px;
  text-align: center;
  margin-top: 28px;
}

.lp-card-soft h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.lp-card-soft p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--lp-muted);
}

/* Fees compare */
.lp-fees h3 {
  text-align: center;
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.lp-fees .sub {
  text-align: center;
  color: var(--lp-muted);
  margin: 0 0 28px;
  font-size: 15px;
}

.lp-fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 767px) {
  .lp-fee-grid {
    grid-template-columns: 1fr;
  }
}

.lp-fee-box {
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  color: #fff;
}

.lp-fee-box--us {
  background: var(--lp-brand-gradient);
}

.lp-fee-box--them {
  background: #1e293b;
}

.lp-fee-box p.label {
  margin: 0 0 8px;
  font-size: 13px;
  opacity: 0.9;
}

.lp-fee-box h4 {
  margin: 0 0 20px;
  font-size: 1.35rem;
}

.lp-fee-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-fee-box li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.95;
}

.lp-fee-box .material-symbols-outlined {
  font-size: 20px;
  flex-shrink: 0;
}

.lp-fee-box--them li .material-symbols-outlined {
  opacity: 0.7;
}

/* Testimonials */
body.lp-imobl .feedback-section {
  background: var(--lp-bg) !important;
  padding: 72px 0 48px;
  margin-top: 0 !important;
}

body.lp-imobl .feedback-section-header h1 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.25;
}

body.lp-imobl .feedback-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 28px 32px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  max-width: 880px;
  margin: 0 auto;
}

body.lp-imobl .card-avatar-feedback {
  background: #e8e6ff;
}

body.lp-imobl .feedback-card-content h5 {
  font-weight: 600;
  color: var(--lp-ink);
}

/* Final CTA */
.lp-final-cta {
  padding: 64px 24px 80px;
  background: var(--lp-brand-gradient);
  color: var(--lp-on-brand-muted);
  text-align: center;
}

.lp-final-cta h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--lp-on-brand);
  margin: 0 auto 12px;
  max-width: 560px;
  line-height: 1.3;
}

.lp-final-cta p {
  margin: 0 auto 24px;
  max-width: 520px;
  color: var(--lp-on-brand-soft);
  font-size: 15px;
  line-height: 1.55;
}

.lp-final-cta .lp-final-cta-footnote {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 13px;
  color: var(--lp-on-brand-soft);
}

.lp-final-cta .lp-final-cta-footnote a {
  color: var(--lp-link-on-brand);
  font-weight: 600;
  text-decoration: none;
}

.lp-final-cta .lp-final-cta-footnote a:hover {
  text-decoration: underline;
}

/* Footer — mesmo gradiente do rodapé original Mensalee */
body.lp-imobl footer {
  background: var(--lp-brand-gradient) !important;
  padding: 32px 0 !important;
}

body.lp-imobl footer .img-footer {
  width: 120px;
}

body.lp-imobl footer p {
  color: #eaeaea !important;
  font-size: 14px;
  line-height: 1.6;
}

/* Modal tweaks */
body.lp-imobl .modal-content {
  border-radius: var(--lp-radius);
  border: none;
  box-shadow: var(--lp-shadow);
}

@media screen and (max-width: 1010px) {
  body.lp-imobl header.site-header {
    flex-direction: column !important;
    gap: 14px;
    padding: 16px !important;
  }

  body.lp-imobl #cta-header-1 {
    margin-top: 0;
    width: 100%;
    justify-content: center;
  }
}
