/* EntulhON — Landing Page
   Paleta extraída da marca: azul-marinho (#101d38), verde (#2fae4e), ciano (#22d3ee) */

:root {
  --navy: #101d38;
  --navy-light: #16244a;
  --green: #2fae4e;
  --green-light: #5fd57e;
  --cyan: #22d3ee;
  --ink: #101d38;
  --muted: #5b6579;
  --bg: #f6f8fb;
  --card: #ffffff;
  --border: #e6eaf1;
  --radius: 16px;
  --shadow: 0 10px 30px -12px rgba(16, 29, 56, 0.18);
  --container: 1160px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: "Poppins", "Inter", sans-serif; line-height: 1.2; margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px -6px rgba(47, 174, 78, 0.55); }
.btn-primary:hover { background: #299a44; }

.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-outline-dark { background: transparent; border-color: var(--border); color: var(--navy); }
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }

.btn-whats { background: #25D366; color: #fff; }
.btn-whats:hover { background: #1fb958; }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #101d38;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.brand span { color: #fff; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.15rem; }
.brand span b { color: var(--green-light); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, #1a2c54 0%, var(--navy) 55%, #0b1428 100%);
  color: #fff;
  overflow: hidden;
  padding: 84px 0 60px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 65%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 700; }
.hero h1 .accent { color: var(--green-light); }
.hero p.lead {
  margin-top: 20px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.hero-badges .badge svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; }

/* Hero mockup */
.hero-visual { position: relative; height: 460px; }
.mock-dashboard {
  position: absolute;
  top: 0; left: 0;
  width: 82%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
  overflow: hidden;
  color: var(--ink);
}
.mock-dashboard .mock-topbar {
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
}
.mock-dashboard .mock-body { padding: 18px; display: grid; gap: 12px; }
.mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-kpi {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.mock-kpi .num { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.3rem; }
.mock-kpi .lbl { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.mock-kpi.green .num { color: var(--green); }
.mock-kpi.cyan .num { color: #0891b2; }
.mock-map {
  height: 110px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #e6f7ee 0%, #e8f0fe 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.mock-map .pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(47,174,78,0.18);
}

.mock-phone {
  position: absolute;
  top: 210px; right: -12px;
  width: 200px;
  background: var(--navy);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 30px 50px -18px rgba(0,0,0,0.55);
}
.mock-phone .screen {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  color: var(--ink);
}
.mock-phone .screen .bar {
  background: var(--green);
  color: #fff;
  padding: 14px 14px 26px;
  font-size: 0.75rem;
  font-weight: 700;
}
.mock-phone .screen .content { padding: 12px; margin-top: -16px; }
.mock-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px 12px;
  font-size: 0.72rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-card .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.mock-card small { display: block; color: var(--muted); font-size: 0.65rem; }
.float-tag {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 6px;
}
.float-tag.tag-1 { top: 30px; right: 30%; }
.float-tag.tag-2 { bottom: 60px; left: -10px; }
.float-tag svg { width: 16px; height: 16px; color: var(--green); }

/* ---------- Strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item svg { width: 20px; height: 20px; color: var(--green); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-alt { background: #fff; }

/* Recursos */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; color: #fff; }
.feature-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.benefit-card .ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(47,174,78,0.12);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-card .ico svg { width: 22px; height: 22px; }
.benefit-card h4 { font-size: 0.98rem; margin-bottom: 6px; }
.benefit-card p { margin: 0; font-size: 0.86rem; color: var(--muted); }

/* Como funciona */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  padding: 30px 22px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.step .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}
.step h4 { font-size: 1rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* Diferenciais */
.diff-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.diff-list { display: grid; gap: 20px; }
.diff-item { display: flex; gap: 14px; }
.diff-item .ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(34,211,238,0.14);
  color: #0891b2;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.diff-item .ico svg { width: 18px; height: 18px; }
.diff-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.diff-item p { margin: 0; font-size: 0.88rem; color: var(--muted); }

.diff-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.diff-panel::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(47,174,78,0.35), transparent 70%);
}
.diff-panel h3 { font-size: 1.3rem; margin-bottom: 14px; position: relative; }
.diff-panel p { color: rgba(255,255,255,0.75); position: relative; margin-bottom: 24px; }
.diff-quote {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px;
  font-size: 0.9rem;
  position: relative;
}

/* Planos */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.plan-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.plan-tag {
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.plan-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.plan-card .plan-desc { font-size: 0.86rem; color: var(--muted); margin-bottom: 22px; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.7); }
.plan-price { font-family: "Poppins", sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 22px; }
.plan-price span { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.plan-card.featured .plan-price span { color: rgba(255,255,255,0.65); }
.plan-features { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; flex-grow: 1; }
.plan-features li { display: flex; gap: 10px; font-size: 0.9rem; align-items: flex-start; }
.plan-features li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.plan-card.featured .plan-features li svg { color: var(--green-light); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.faq-q svg { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--green); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p { margin: 0 24px 20px; color: var(--muted); font-size: 0.92rem; }
.faq-item.open .faq-a { max-height: 240px; }

/* CTA final */
.cta-final {
  background: linear-gradient(120deg, var(--navy) 0%, #17325f 60%, #0d3b3f 130%);
  color: #fff;
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(47,174,78,0.3), transparent 70%);
}
.cta-final h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); position: relative; }
.cta-final p { color: rgba(255,255,255,0.75); margin: 16px auto 30px; max-width: 520px; position: relative; }
.cta-final .hero-cta { justify-content: center; position: relative; }

/* Footer */
.site-footer { background: #0b1428; color: rgba(255,255,255,0.6); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: var(--green); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 0.88rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* WhatsApp float */
.whats-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.6);
  z-index: 90;
  transition: transform 0.15s ease;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Modal de leads ---------- */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 40, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.lead-modal-overlay.open { display: flex; }

.lead-modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 36px 32px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.lead-modal h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--ink); }
.lead-modal p { color: var(--muted); font-size: 0.92rem; margin: 0 0 22px; }

.lead-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.lead-modal-close:hover { background: var(--border); }

.lead-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.lead-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 18px;
}
.lead-input:focus { outline: none; border-color: var(--green); }
.lead-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead-error { color: #d9534f; font-size: 0.85rem; margin: -10px 0 14px; display: none; }
.lead-error.show { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--navy);
    padding: 12px 24px 24px;
    box-shadow: 0 16px 24px -12px rgba(0,0,0,0.4);
  }
  .nav-links.open a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { height: 340px; margin-top: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .diff-wrap { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .header-actions .btn-outline { display: none; }
  .header-actions .btn-primary { padding: 12px 16px; font-size: 0.8rem; }
  .brand span { display: none; }
  .site-header .container { height: 68px; }
  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .hero-visual { display: none; }
  .mock-phone { display: none; }
}
