/* ============================================================
   landing.css — Landing page refatorada
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
.landing-body {
  background: #060d1a;
  color: #cbd5e1;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.landing-body *, .landing-body *::before, .landing-body *::after { box-sizing: border-box; }
.landing-body a { text-decoration: none; }
.landing-body ul { list-style: none; margin: 0; padding: 0; }
.landing-body img { display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Nav ──────────────────────────────────────────────────── */
.lp-nav-wrap {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6,13,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.lp-brand {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.15rem; font-weight: 800; color: #fff;
}
.lp-nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.lp-nav-links li a {
  font-size: .88rem; font-weight: 500; color: #94a3b8;
  transition: color .15s;
}
.lp-nav-links li a:hover { color: #fff; }
.lp-btn-ghost {
  padding: .45rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 7px; color: #e2e8f0 !important;
  font-size: .88rem !important; font-weight: 600 !important;
  transition: border-color .15s !important;
}
.lp-btn-ghost:hover { border-color: rgba(255,255,255,.4) !important; color: #fff !important; }
.lp-btn-cta {
  padding: .45rem 1.2rem;
  background: #3b82f6; border-radius: 7px;
  color: #fff !important; font-size: .88rem !important; font-weight: 700 !important;
  transition: background .15s !important;
}
.lp-btn-cta:hover { background: #2563eb !important; }
/* Hamburger */
.lp-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.lp-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #e2e8f0; border-radius: 2px;
  transition: all .2s;
}
.lp-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.active span:nth-child(2) { opacity: 0; }
.lp-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
  .lp-hamburger { display: flex; }
  .lp-nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(6,13,26,.98);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: .75rem 1.5rem 1.25rem;
  }
  .lp-nav-links.open { display: flex; }
  .lp-nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.05); }
  .lp-nav-links li a { display: block; padding: .75rem 0; font-size: .95rem !important; }
  .lp-btn-ghost, .lp-btn-cta { width: 100%; text-align: center; margin-top: .25rem; border-radius: 8px; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.lp-hero {
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-30%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,.18) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 860px) {
  .lp-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .lp-hero-visual { order: -1; display: flex; justify-content: center; }
  .lp-hero { padding: 4rem 0 2rem; }
}
.lp-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(59,130,246,.12);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,.3);
  border-radius: 999px;
  padding: .3rem 1rem;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.lp-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.12;
  color: #fff; margin-bottom: 1.25rem;
}
.lp-gradient {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-sub {
  font-size: 1.05rem; color: #94a3b8;
  line-height: 1.65; margin-bottom: 2rem; max-width: 500px;
}
@media (max-width: 860px) { .lp-hero-sub { margin-inline: auto; } }
.lp-hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
@media (max-width: 860px) { .lp-hero-btns { justify-content: center; } }
.lp-btn-hero {
  display: inline-flex; align-items: center;
  padding: .9rem 2rem;
  background: #3b82f6; color: #fff !important;
  border-radius: 10px; font-weight: 700; font-size: 1rem;
  transition: background .15s, transform .1s; box-shadow: 0 4px 24px rgba(59,130,246,.35);
}
.lp-btn-hero:hover { background: #2563eb; transform: translateY(-1px); }
.lp-btn-ghost-hero {
  display: inline-flex; align-items: center;
  padding: .9rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,.18); color: #e2e8f0 !important;
  border-radius: 10px; font-weight: 600; font-size: .97rem;
  transition: border-color .15s;
}
.lp-btn-ghost-hero:hover { border-color: rgba(255,255,255,.4); }
.lp-hero-micro { font-size: .8rem; color: #475569; }

/* Phone mockup */
.lp-hero-visual { position: relative; }
.lp-phone {
  width: 250px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.08);
  position: relative; z-index: 1;
}
.lp-phone-screen {
  background: #060d1a;
  border-radius: 24px; overflow: hidden;
}
.lp-ph-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 1rem;
  background: #0f172a;
}
.lp-ph-time { font-size: .72rem; font-weight: 700; color: #fff; }
.lp-ph-brand { font-size: .68rem; font-weight: 800; color: #3b82f6; }
.lp-ph-body { padding: .85rem; display: flex; flex-direction: column; gap: .55rem; }
.lp-ph-greet { font-size: .78rem; font-weight: 700; color: #e2e8f0; }
.lp-ph-chip {
  padding: .35rem .6rem;
  border-radius: 6px; font-size: .7rem; font-weight: 600;
}
.lp-ph-chip.green { background: rgba(34,197,94,.15); color: #86efac; }
.lp-ph-bigbtn {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  padding: .65rem;
  background: #3b82f6; border-radius: 10px;
  font-size: .78rem; font-weight: 800; color: #fff;
}
.lp-ph-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .7rem; color: #64748b;
  padding: .2rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
}
.lp-ph-row:last-child { border-bottom: none; }
.lp-tag {
  font-size: .65rem; font-weight: 700;
  padding: .15rem .4rem; border-radius: 4px;
}
.lp-tag.ok { background: rgba(34,197,94,.15); color: #86efac; }
.lp-tag.blue { background: rgba(59,130,246,.15); color: #93c5fd; }
.lp-tag.green { background: rgba(34,197,94,.15); color: #86efac; }
.lp-phone-glow {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 80px;
  background: radial-gradient(ellipse, rgba(59,130,246,.3), transparent 70%);
  filter: blur(20px); z-index: 0;
}

/* Logos strip */
.lp-logos-strip {
  margin-top: 4rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .82rem; color: #475569;
}
.lp-logos {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.lp-logos span {
  font-size: .8rem; font-weight: 600; color: #64748b;
  padding: .3rem .85rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
}

/* ── Sections base ────────────────────────────────────────── */
.lp-section { padding: 6rem 0; }
.lp-bg-alt { background: rgba(255,255,255,.018); }
.lp-eyebrow {
  display: block; text-align: center;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #3b82f6; margin-bottom: .75rem;
}
.lp-section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800; color: #fff;
  text-align: center; margin-bottom: .65rem; line-height: 1.2;
}
.lp-section-sub {
  text-align: center; color: #64748b;
  font-size: 1rem; max-width: 540px;
  margin: 0 auto 3.5rem;
}

/* ── Como funciona ────────────────────────────────────────── */
.lp-steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  justify-content: center; flex-wrap: wrap;
}
.lp-step-card {
  flex: 1; min-width: 200px; max-width: 280px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px; padding: 2rem 1.5rem;
  text-align: center;
}
.lp-step-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #334155; padding: 0 .5rem; margin-top: 3rem;
  flex-shrink: 0;
}
@media (max-width: 680px) { .lp-step-arrow { display: none; } .lp-step-card { max-width: 100%; } }
.lp-step-num {
  margin: 0 auto .75rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: #fff;
}
.lp-step-icon { font-size: 1.6rem; margin-bottom: .75rem; }
.lp-step-card h3 { color: #fff; font-size: .97rem; margin-bottom: .4rem; }
.lp-step-card p { color: #64748b; font-size: .87rem; line-height: 1.55; }

/* ── Features grid ────────────────────────────────────────── */
.lp-feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .lp-feats-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .lp-feats-grid { grid-template-columns: 1fr; } }
.lp-feat-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.lp-feat-card:hover { border-color: rgba(59,130,246,.35); transform: translateY(-2px); }
.lp-feat-ico { font-size: 1.8rem; margin-bottom: .75rem; }
.lp-feat-card h3 { color: #e2e8f0; font-size: .93rem; margin-bottom: .35rem; }
.lp-feat-card p { color: #64748b; font-size: .84rem; line-height: 1.55; }

/* ── Testimonials ─────────────────────────────────────────── */
.lp-testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) { .lp-testi-grid { grid-template-columns: 1fr; } }
.lp-testi-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.lp-testi-featured {
  background: linear-gradient(135deg, rgba(59,130,246,.1), rgba(139,92,246,.1));
  border-color: rgba(59,130,246,.25);
}
.lp-stars { color: #fbbf24; font-size: 1rem; letter-spacing: .1em; }
.lp-testi-card p { color: #94a3b8; font-size: .9rem; line-height: 1.65; flex: 1; }
.lp-testi-card p em { color: #e2e8f0; font-style: normal; font-weight: 600; }
.lp-testi-autor {
  display: flex; align-items: center; gap: .75rem;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: .75rem; margin-top: .25rem;
}
.lp-testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.lp-testi-autor strong { display: block; font-size: .87rem; color: #e2e8f0; }
.lp-testi-autor span { font-size: .78rem; color: #64748b; }

/* ── Pricing ─────────────────────────────────────────────── */
.lp-plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: start;
}
@media (max-width: 860px) { .lp-plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.lp-plan-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 2rem;
  position: relative;
  transition: border-color .2s;
}
.lp-plan-card:hover { border-color: rgba(59,130,246,.3); }
.lp-plan-featured {
  background: linear-gradient(135deg, rgba(59,130,246,.08), rgba(139,92,246,.08));
  border-color: rgba(59,130,246,.35);
  transform: scale(1.03);
}
@media (max-width: 860px) { .lp-plan-featured { transform: none; } }
.lp-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #fff; font-size: .72rem; font-weight: 700;
  padding: .25rem .9rem; border-radius: 999px;
  white-space: nowrap; letter-spacing: .03em;
}
.lp-plan-header { margin-bottom: 1.5rem; }
.lp-plan-name { display: block; font-size: .82rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.lp-plan-price { display: flex; align-items: baseline; gap: .2rem; margin-bottom: .4rem; }
.lp-price-val { font-size: 2.2rem; font-weight: 800; color: #fff; }
.lp-price-per { font-size: .85rem; color: #64748b; }
.lp-plan-desc { font-size: .83rem; color: #64748b; }
.lp-plan-list {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 1.75rem;
}
.lp-plan-list li { font-size: .87rem; color: #94a3b8; }
.lp-plan-list li.lp-plan-off { color: #334155; text-decoration: line-through; }
.lp-btn-plan-primary {
  display: block; text-align: center;
  padding: .8rem; border-radius: 10px;
  background: #3b82f6; color: #fff !important; font-weight: 700;
  transition: background .15s;
}
.lp-btn-plan-primary:hover { background: #2563eb; }
.lp-btn-plan-ghost {
  display: block; text-align: center;
  padding: .8rem; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.15); color: #e2e8f0 !important; font-weight: 600;
  transition: border-color .15s;
}
.lp-btn-plan-ghost:hover { border-color: rgba(255,255,255,.35); }
.lp-pricing-note {
  text-align: center; color: #475569; font-size: .83rem; margin-top: 2rem;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.lp-faq-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 860px) { .lp-faq-inner { grid-template-columns: 1fr; gap: 2rem; } }
.lp-faq-head .lp-eyebrow { text-align: left; }
.lp-faq-list { display: flex; flex-direction: column; }
.lp-faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.lp-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; background: none; border: none; cursor: pointer;
  font-size: .93rem; font-weight: 600; color: #e2e8f0; text-align: left; gap: 1rem;
}
.lp-faq-q span {
  font-size: 1.3rem; color: #3b82f6; flex-shrink: 0;
  transition: transform .2s;
}
.lp-faq-item.open .lp-faq-q span { transform: rotate(45deg); }
.lp-faq-a {
  display: none; padding: 0 0 1rem;
  font-size: .88rem; color: #64748b; line-height: 1.65;
}
.lp-faq-item.open .lp-faq-a { display: block; }

/* ── CTA final ────────────────────────────────────────────── */
.lp-cta-final { padding: 5rem 0; }
.lp-cta-card {
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
  border-radius: 24px; padding: 4rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.lp-cta-card::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06); border-radius: 50%;
}
.lp-cta-card h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: .6rem; position: relative; }
.lp-cta-card p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 2rem; position: relative; }
.lp-cta-btns {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 1.5rem; position: relative;
}
.lp-cta-btns .lp-btn-hero { background: #fff; color: #1d4ed8 !important; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.lp-cta-btns .lp-btn-hero:hover { background: #f1f5f9; }
.lp-cta-btns .lp-btn-ghost-hero { border-color: rgba(255,255,255,.4); color: #fff !important; }
.lp-cta-micros {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.6); position: relative;
}

/* ── Footer ───────────────────────────────────────────────── */
.lp-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem 0;
}
.lp-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.lp-footer-brand {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1rem; font-weight: 800; color: #fff;
}
.lp-footer-links {
  display: flex; gap: 1.75rem; flex-wrap: wrap;
}
.lp-footer-links a { font-size: .84rem; color: #475569; transition: color .15s; }
.lp-footer-links a:hover { color: #94a3b8; }
.lp-footer-copy { font-size: .8rem; color: #334155; }

/* ── Auth pages ───────────────────────────────────────────── */
.auth-body { background: #060d1a; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.auth-logo-title { font-size: 1.05rem; font-weight: 800; color: #0f172a; }
