/* Conferi — landing page (apex conferi.app)
   Reescrita pra ser mais profissional, vendedora e completa. */

body {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surf);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection { background: rgba(245, 130, 10, 0.25); }

/* ==== Header ==== */
.lp-hdr {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--bord);
  z-index: 100;
  padding: 12px 0;
}
.lp-hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-brand {
  font-family: var(--fm);
  font-weight: 900;
  font-size: 22px;
  color: var(--blue);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.lp-brand .dot { color: var(--primary); }
.lp-nav { display: flex; gap: 26px; align-items: center; }
.lp-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.lp-nav a:hover { color: var(--primary); }
.lp-cta-sm {
  background: var(--primary);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(245, 130, 10, 0.25);
  transition: all 0.15s;
}
.lp-cta-sm:hover { background: #e07000; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245, 130, 10, 0.35); }

@media (max-width: 800px) {
  .lp-nav a:not(.lp-cta-sm) { display: none; }
}

/* ==== Hero ==== */
.lp-hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 130, 10, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(26, 79, 168, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #f4f6fb 0%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--bord);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(26, 79, 168, 0.06);
}
.lp-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.lp-pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: lp-pulse 2s ease-out infinite;
}
@keyframes lp-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0;   }
}

.lp-tagline {
  font-family: var(--fm);
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto 20px;
  max-width: 880px;
  color: var(--text);
}
.lp-tagline .accent {
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}
.lp-tagline .accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(245, 130, 10, 0.25);
  border-radius: 3px;
  z-index: -1;
}
.lp-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.lp-sub strong { color: var(--text); font-weight: 700; }

.lp-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 130, 10, 0.3);
  transition: all 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--ff);
}
.lp-btn-p:hover { background: #e07000; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245, 130, 10, 0.4); }
.lp-btn-p:active { transform: translateY(0); }

.lp-btn-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surf);
  color: var(--blue);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--bord);
  transition: all 0.15s;
}
.lp-btn-s:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

.lp-btn-lg { padding: 17px 30px; font-size: 16px; }
.lp-btn-block { display: flex; justify-content: center; width: 100%; }

.lp-trust {
  font-size: 14px;
  color: var(--muted);
  margin-top: 24px;
}
.lp-trust strong { color: var(--text); font-weight: 700; }

/* Hero composite stage */
.lp-hero-stage {
  margin: 56px auto 0;
  max-width: 1000px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.lp-stage-desk {
  flex: 1;
  max-width: 720px;
  transform: translateX(40px);
}
.lp-stage-phone {
  position: relative;
  z-index: 2;
  transform: translate(40px, 40px);
}

@media (max-width: 900px) {
  .lp-tagline { font-size: 38px; }
  .lp-sub { font-size: 17px; }
  .lp-hero { padding: 48px 0 24px; }
  .lp-hero-stage {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
  }
  .lp-stage-desk, .lp-stage-phone { transform: none; max-width: 100%; }
}
@media (max-width: 500px) {
  .lp-tagline { font-size: 30px; }
  .lp-sub { font-size: 15px; }
  .lp-hero-badge { font-size: 11px; padding: 6px 12px; }
}

/* ==== Trust strip / verticais ==== */
.lp-strip {
  padding: 32px 0;
  background: var(--surf);
  border-top: 1px solid var(--bord);
  border-bottom: 1px solid var(--bord);
}
.lp-strip-tt {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}
.lp-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  padding: 10px;
  border-radius: 10px;
  background: var(--bg);
  transition: all 0.15s;
}
.lp-strip-item:hover { background: rgba(245, 130, 10, 0.08); color: var(--primary); }
.lp-strip-item svg { color: var(--primary); flex-shrink: 0; }
@media (max-width: 800px) {
  .lp-strip-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .lp-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-strip-item { font-size: 13px; }
}

/* ==== Sections ==== */
.lp-section {
  padding: 88px 0;
}
.lp-section.alt { background: var(--bg); }
.lp-eyebrow {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.lp-eyebrow-orange { color: var(--primary); }

.lp-section h2 {
  font-family: var(--fm);
  font-weight: 900;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-align: center;
  margin: 0 0 12px;
  color: var(--text);
}
.lp-section .lp-section-sub {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  margin: 0 auto 56px;
  max-width: 640px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .lp-section { padding: 60px 0; }
  .lp-section h2 { font-size: 28px; }
  .lp-section .lp-section-sub { font-size: 15px; margin-bottom: 36px; }
}

/* ==== 3-col grid ==== */
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .lp-grid-3 { grid-template-columns: 1fr; gap: 16px; } }

.lp-card {
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  transition: all 0.2s;
}
.lp-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 79, 168, 0.10);
}
.lp-card-icon-svg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 130, 10, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lp-card-icon-svg.red { background: rgba(217, 53, 53, 0.1); color: var(--red); }
.lp-card-icon-svg.green { background: rgba(24, 168, 90, 0.1); color: var(--green); }
.lp-card-icon-svg.blue { background: rgba(26, 79, 168, 0.1); color: var(--blue); }

.lp-card h3 {
  font-family: var(--fm);
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lp-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ==== Antes / Depois ==== */
.lp-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 800px) { .lp-vs { grid-template-columns: 1fr; } }
.lp-vs-col {
  background: var(--surf);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--bord);
}
.lp-vs-before { background: linear-gradient(180deg, #fff5f5, #fff); border-color: rgba(217, 53, 53, 0.2); }
.lp-vs-after  { background: linear-gradient(180deg, #f1fcf5, #fff); border-color: rgba(24, 168, 90, 0.25); }
.lp-vs-tag {
  display: inline-block;
  background: rgba(217, 53, 53, 0.12);
  color: var(--red);
  font-family: var(--fc);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.lp-vs-tag.green { background: rgba(24, 168, 90, 0.14); color: var(--green); }
.lp-vs-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-vs-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  padding: 10px 0;
  color: var(--text);
  border-bottom: 1px dashed var(--bord);
}
.lp-vs-col li:last-child { border-bottom: none; }
.lp-vs-before li svg { color: var(--red); flex-shrink: 0; margin-top: 4px; }
.lp-vs-after li svg  { color: var(--green); flex-shrink: 0; margin-top: 4px; }

/* ==== Feature grid (líder + dono) ==== */
.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .lp-feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lp-feat-grid { grid-template-columns: 1fr; } }

.lp-feat {
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.2s;
}
.lp-feat:hover {
  border-color: rgba(245, 130, 10, 0.4);
  box-shadow: 0 8px 22px rgba(26, 79, 168, 0.06);
  transform: translateY(-2px);
}
.lp-feat-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(245, 130, 10, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.lp-feat-ico.red { background: rgba(217, 53, 53, 0.1); color: var(--red); }
.lp-feat-ico.green { background: rgba(24, 168, 90, 0.1); color: var(--green); }
.lp-feat-ico.blue { background: rgba(26, 79, 168, 0.1); color: var(--blue); }
.lp-feat h3 {
  font-family: var(--fm);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lp-feat p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* ==== Killer feature: PDF ==== */
.lp-pdf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .lp-pdf-grid { grid-template-columns: 1fr; gap: 40px; } }

.lp-pdf-grid h2 { text-align: left; }
@media (max-width: 900px) { .lp-pdf-grid h2 { text-align: center; } }

.lp-pdf-lead {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
}
.lp-pdf-lead strong { color: var(--text); }
.lp-pdf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-pdf-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.lp-pdf-list li svg { color: var(--green); flex-shrink: 0; }

/* PDF mockup */
.lp-pdf-mock {
  display: flex;
  justify-content: center;
}
.lp-pdfm {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 8px;
  box-shadow:
    0 30px 60px -15px rgba(26, 35, 64, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  font-family: 'Helvetica', Arial, sans-serif;
  transform: rotate(-1.5deg);
  transition: transform 0.4s;
}
.lp-pdfm:hover { transform: rotate(0deg) scale(1.02); }
.lp-pdfm-hdr {
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-pdfm-tt {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.lp-pdfm-sub {
  font-size: 11px;
  opacity: 0.9;
  margin-top: 2px;
}
.lp-pdfm-meta {
  text-align: right;
  font-size: 10px;
  opacity: 0.95;
  line-height: 1.5;
}
.lp-pdfm-body { padding: 18px; }
.lp-pdfm-score {
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.lp-pdfm-score-pct {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.lp-pdfm-score-l1 { font-size: 11px; font-weight: 600; }
.lp-pdfm-score-l2 { font-size: 10px; opacity: 0.85; margin-top: 3px; }
.lp-pdfm-sec-tt {
  font-size: 11px;
  font-weight: 700;
  margin: 14px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  letter-spacing: 0.04em;
}
.lp-pdfm-sec-tt.red { color: var(--red); }
.lp-pdfm-sec-tt.blue { color: var(--blue); }
.lp-pdfm-li {
  font-size: 11px;
  color: #1a2340;
  margin: 5px 0;
}
.lp-pdfm-obs {
  font-size: 10px;
  color: #966a1a;
  font-style: italic;
  padding-left: 12px;
  margin-top: 0;
}
.lp-pdfm-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}
.lp-pdfm-photo {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, #b8c5dc 0%, #8a9ec1 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.lp-pdfm-photo::after {
  content: '';
  position: absolute;
  inset: 30% 30%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  filter: blur(8px);
}

/* ==== AI Plus section ==== */
.lp-ai-section {
  padding: 56px 0;
}
.lp-ai-card {
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 130, 10, 0.4), transparent 50%),
    linear-gradient(135deg, #1a4fa8 0%, #1a2340 100%);
  color: #fff;
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.lp-ai-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.lp-ai-title {
  font-family: var(--fm);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
}
.lp-ai-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.lp-ai-sub strong { color: #fff; }
.lp-ai-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 680px;
  margin: 0 auto 32px;
}
.lp-ai-feat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}
.lp-ai-feat svg { color: var(--primary); flex-shrink: 0; }
@media (max-width: 700px) {
  .lp-ai-card { padding: 48px 24px; }
  .lp-ai-title { font-size: 26px; }
  .lp-ai-sub { font-size: 15px; }
  .lp-ai-feats { grid-template-columns: 1fr; }
}

/* ==== Steps (como começa) ==== */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .lp-steps { grid-template-columns: 1fr; gap: 24px; } }
.lp-step {
  text-align: center;
}
.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #d96a00);
  color: #fff;
  font-family: var(--fm);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(245, 130, 10, 0.35);
}
.lp-step h3 {
  font-family: var(--fm);
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--text);
}
.lp-step p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.lp-step code {
  background: var(--bg);
  border: 1px solid var(--bord);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--fc);
  font-size: 12px;
  color: var(--blue);
}

/* ==== Pricing ==== */
.lp-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 56px;
}
@media (max-width: 800px) { .lp-plans { grid-template-columns: 1fr; } }

.lp-plan {
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 18px;
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.lp-plan-base {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(245, 130, 10, 0.15);
  background: linear-gradient(180deg, #fffaf3 0%, #ffffff 60%);
}
.lp-plan-plus {
  background: linear-gradient(135deg, #1a4fa8 0%, #1a2340 100%);
  border-color: transparent;
  color: #fff;
}
.lp-plan-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-plan-tag.plus { background: #fff; color: var(--blue); }

.lp-plan-name {
  font-family: var(--fm);
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.lp-plan-plus .lp-plan-name { color: #fff; }
.lp-plan-pitch {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 20px;
}
.lp-plan-plus .lp-plan-pitch { color: rgba(255, 255, 255, 0.8); }

.lp-plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--bord);
}
.lp-plan-plus .lp-plan-price { border-bottom-color: rgba(255, 255, 255, 0.2); }
.lp-plan-price .cur {
  font-family: var(--fm);
  font-size: 22px;
  font-weight: 700;
  color: var(--muted);
}
.lp-plan-plus .lp-plan-price .cur { color: rgba(255, 255, 255, 0.7); }
.lp-plan-price .val {
  font-family: var(--fm);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.lp-plan-plus .lp-plan-price .val { color: #fff; }
.lp-plan-price .cents {
  font-family: var(--fm);
  font-size: 22px;
  font-weight: 700;
  color: var(--muted);
}
.lp-plan-plus .lp-plan-price .cents { color: rgba(255, 255, 255, 0.7); }
.lp-plan-price .per {
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
}
.lp-plan-plus .lp-plan-price .per { color: rgba(255, 255, 255, 0.7); }
.lp-plan-price .custom {
  font-family: var(--fm);
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lp-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.lp-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.45;
}
.lp-plan-list li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.lp-plan-plus .lp-plan-list li { color: #fff; }
.lp-plan-plus .lp-plan-list li svg { color: var(--primary); }

.lp-btn-plus {
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue) !important;
  border-color: transparent;
}
.lp-btn-plus:hover { background: #fff; color: var(--blue) !important; }

.lp-plan-foot {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}
.lp-plan-plus .lp-plan-foot { color: rgba(255, 255, 255, 0.65); }

/* Inclusos */
.lp-included {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 16px;
  padding: 32px;
}
.lp-included h3 {
  font-family: var(--fm);
  font-weight: 800;
  font-size: 17px;
  text-align: center;
  margin: 0 0 20px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lp-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-included-grid > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.lp-included-grid svg { color: var(--primary); flex-shrink: 0; }
@media (max-width: 800px) { .lp-included-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .lp-included-grid { grid-template-columns: 1fr; } }

/* ==== Mockup styles (compartilhados — usados no hero) ==== */
.lp-mockup-frame { position: relative; }

/* Phone */
.lp-stage-phone .lp-mockup-frame {
  width: 280px;
  height: 568px;
  background: linear-gradient(145deg, #1a2340 0%, #0a1024 100%);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 30px 60px -15px rgba(26, 35, 64, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
.lp-stage-phone .lp-mockup-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #0a1024;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.lp-stage-phone .lp-mockup-content {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

/* Desktop */
.lp-stage-desk .lp-mockup-frame {
  background: #2a2f3a;
  border-radius: 12px 12px 4px 4px;
  padding: 32px 6px 6px;
  position: relative;
  width: 100%;
  box-shadow: 0 30px 60px -15px rgba(26, 35, 64, 0.35);
}
.lp-stage-desk .lp-mockup-frame::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: 16px 0 0 #ffbd2e, 32px 0 0 #27c93f;
}
.lp-stage-desk .lp-mockup-content {
  width: 100%;
  background: var(--bg);
  border-radius: 4px;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

/* Conteúdo simulado */
.lp-mockup-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 18px 14px;
  background: var(--bg);
  font-family: var(--ff);
}
.lp-mp-hdr {
  background: var(--blue);
  color: #fff;
  margin: -18px -14px 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--fm);
  font-weight: 800;
  font-size: 13px;
}
.lp-mp-hdr .dot { color: #ffc166; }
.lp-mp-status {
  background: rgba(75, 232, 122, 0.2);
  color: #4be87a;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 10px;
  font-family: var(--fc);
}
.lp-mp-card {
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}
.lp-mp-card-tt {
  font-family: var(--fm);
  font-weight: 700;
  font-size: 12px;
  color: var(--blue);
  margin-bottom: 4px;
}
.lp-mp-card-meta {
  font-size: 9px;
  color: var(--muted);
  font-family: var(--fc);
}
.lp-mp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 7px;
  margin-bottom: 5px;
  font-size: 11px;
}
.lp-mp-row.done {
  background: rgba(24, 168, 90, 0.05);
  border-color: rgba(24, 168, 90, 0.25);
}
.lp-mp-row.crit { border-left: 3px solid var(--red); }
.lp-mp-cb {
  width: 14px;
  height: 14px;
  border: 2px solid #c0ccdf;
  border-radius: 4px;
  flex-shrink: 0;
}
.lp-mp-row.done .lp-mp-cb {
  background: var(--green);
  border-color: var(--green);
}
.lp-mp-txt { flex: 1; color: var(--text); line-height: 1.3; }
.lp-mp-row.done .lp-mp-txt { text-decoration: line-through; color: #a0aec0; }
.lp-mp-bdg {
  font-size: 8px;
  font-family: var(--fc);
  font-weight: 700;
  background: rgba(217, 53, 53, 0.12);
  color: var(--red);
  padding: 2px 5px;
  border-radius: 3px;
}

/* Desktop placeholder */
.lp-mp-desk {
  position: absolute;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.lp-mp-desk-hdr {
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--fm);
  font-weight: 800;
  font-size: 13px;
}
.lp-mp-desk-live {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--fc);
}
.lp-mp-desk-body { flex: 1; padding: 14px; overflow: hidden; }
.lp-mp-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.lp-mp-kpi {
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 6px;
  padding: 8px 10px;
  position: relative;
}
.lp-mp-kpi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.lp-mp-kpi.g::before { background: var(--green); }
.lp-mp-kpi.o::before { background: var(--primary); }
.lp-mp-kpi.r::before { background: var(--red); }
.lp-mp-kpi.b::before { background: var(--blue); }
.lp-mp-kpi-lbl {
  font-size: 7px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--fc);
}
.lp-mp-kpi-val {
  font-family: var(--fm);
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-top: 2px;
  line-height: 1;
}
.lp-mp-secs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.lp-mp-sec {
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 6px;
  padding: 10px;
}
.lp-mp-sec-name {
  font-family: var(--fm);
  font-weight: 700;
  font-size: 9px;
  color: var(--text);
  margin-bottom: 4px;
}
.lp-mp-sec-score {
  font-family: var(--fm);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.lp-mp-sec-bar {
  height: 2px;
  background: #dde3f0;
  border-radius: 1px;
  margin-top: 6px;
  overflow: hidden;
}
.lp-mp-sec-bar-fill {
  height: 100%;
  border-radius: 1px;
}

/* ==== Quote ==== */
.lp-quote {
  background: var(--surf);
  border-radius: 18px;
  padding: 40px 36px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(26, 79, 168, 0.08);
  position: relative;
  border: 1px solid var(--bord);
}
.lp-quote-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(245, 130, 10, 0.18);
}
.lp-quote-text {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 20px;
  font-weight: 500;
}
.lp-quote-text strong { color: var(--primary); font-weight: 700; }
.lp-quote-author {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--fc);
}
.lp-quote-author strong { color: var(--text); font-weight: 700; }
@media (max-width: 600px) {
  .lp-quote { padding: 28px 22px; }
  .lp-quote-text { font-size: 17px; }
}

/* ==== FAQ ==== */
.lp-faq { max-width: 800px; margin: 0 auto; }
.lp-faq-item {
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.lp-faq-item:hover { border-color: rgba(245, 130, 10, 0.35); }
.lp-faq-item.open { border-color: var(--primary); box-shadow: 0 4px 14px rgba(245, 130, 10, 0.1); }
.lp-faq-q {
  font-family: var(--fm);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.lp-faq-icn {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  width: 24px;
  text-align: center;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.lp-faq-item.open .lp-faq-icn { transform: rotate(45deg); }
.lp-faq-a {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  padding: 0 22px;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.lp-faq-item.open .lp-faq-a {
  max-height: 400px;
  padding: 0 22px 20px;
}
.lp-faq-a a { color: var(--primary); text-decoration: underline; }
.lp-faq-a code {
  background: var(--bg);
  border: 1px solid var(--bord);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--fc);
  font-size: 13px;
  color: var(--blue);
}

/* ==== Final CTA ==== */
.lp-cta-final {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 130, 10, 0.1) 0%, transparent 50%),
    var(--bg);
}
.lp-cta-final h2 { margin-bottom: 12px; }
.lp-cta-final p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 580px;
}

/* ==== Footer ==== */
.lp-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 24px;
}
.lp-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .lp-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .lp-footer-inner { grid-template-columns: 1fr; gap: 24px; } }

.lp-footer h4 {
  font-family: var(--fm);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 14px;
}
.lp-footer-brand {
  font-family: var(--fm);
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.lp-footer-brand .dot { color: var(--primary); }
.lp-footer p, .lp-footer a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  line-height: 1.5;
}
.lp-footer-col-brand p { max-width: 320px; }
.lp-footer a:hover { color: var(--primary); }
.lp-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.lp-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  transition: all 0.15s;
}
.lp-footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer-made { font-family: var(--fc); }
@media (max-width: 600px) {
  .lp-footer-bottom { justify-content: center; text-align: center; }
}

/* ==== WhatsApp floating button ==== */
.lp-wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: transform 0.15s;
}
.lp-wa-fab:hover { transform: scale(1.06); }
.lp-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: lp-wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes lp-wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0;   }
}
@media (max-width: 600px) {
  .lp-wa-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .lp-wa-fab svg { width: 24px; height: 24px; }
}
