/* === Design tokens (visual "Tailwind") === */
:root {
  --teal-900: #053b3a;
  --teal-800: #0a6867;
  --teal-700: #0f766e;
  --teal-500: #14b8a6;
  --lime: #b6f05c;
  --blue: #2563eb;
  --ink: #0f172a;
  --text: #243142;
  --muted: #64748b;
  --line: #dce7ef;
  --line-soft: #edf3f7;
  --soft: #f5faf9;
  --mint: #e8fbf6;
  --shadow: 0 18px 44px rgba(15, 23, 42, .12);
  --shadow-soft: 0 10px 26px rgba(15, 23, 42, .08);

  /* Bootstrap overrides para o look moderno */
  --bs-body-font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --bs-body-color: var(--text);
  --bs-body-bg: var(--soft);
  --bs-primary: #0f766e;
  --bs-primary-rgb: 15, 118, 110;
  --bs-border-color: var(--line);
  --bs-border-radius: 10px;
  --bs-border-radius-sm: 8px;
  --bs-border-radius-lg: 14px;
  --bs-link-color: var(--teal-700);
  --bs-link-hover-color: var(--teal-800);
}

body { line-height: 1.5; }
h1, h2, h3 { color: var(--ink); font-weight: 900; letter-spacing: -.01em; }
img { max-width: 100%; height: auto; }

/* container alinhado ao max do design */
.container { max-width: 1180px; }

.section { padding: 92px 0; }
.section-sm { padding: 66px 0; }
.surface { background: #fff; }

.section-kicker {
  margin-bottom: 10px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-head { max-width: 780px; margin-bottom: 34px; }
.section-head h2 { font-size: 46px; line-height: 1.06; margin-bottom: 14px; }
.section-text { max-width: 720px; color: var(--muted); font-size: 18px; }

/* === Botões (tema sobre o Bootstrap) === */
.btn { font-weight: 800; border-radius: 10px; padding: 12px 18px; min-height: 44px; }
.btn-accent {
  color: #062120;
  background: var(--lime);
  border-color: rgba(6, 33, 32, .08);
  box-shadow: 0 14px 30px rgba(182, 240, 92, .26);
}
.btn-accent:hover { color: #062120; background: #aceb46; box-shadow: 0 18px 36px rgba(182, 240, 92, .34); }
.btn-primary { --bs-btn-bg: var(--teal-800); --bs-btn-border-color: var(--teal-800); --bs-btn-hover-bg: var(--teal-900); --bs-btn-hover-border-color: var(--teal-900); }
.btn-outline-secondary { --bs-btn-color: var(--ink); --bs-btn-border-color: var(--line); --bs-btn-hover-bg: #fff; --bs-btn-hover-color: var(--ink); --bs-btn-hover-border-color: #b9c8d6; background: #fff; }

/* === Navbar === */
.site-nav {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 231, 239, .86);
}
.navbar-brand { font-weight: 900; font-size: 20px; color: var(--ink); display: inline-flex; align-items: center; gap: 10px; }
.navbar-brand img { width: 38px; height: 38px; object-fit: contain; }
.site-nav .nav-link { color: #3b4b5f; font-weight: 800; font-size: 14px; }
.site-nav .nav-link:hover { color: var(--teal-700); }

/* === Hero === */
.hero {
  position: relative;
  overflow: hidden;
  color: #e8fbf6;
  background: #061f24 url("media/secao-one.png") center right / auto 100% no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 21, .96) 0%, rgba(3, 22, 28, .9) 48%, rgba(3, 22, 28, .55) 78%, rgba(3, 22, 28, .1) 100%),
    linear-gradient(180deg, rgba(3, 14, 21, .2), rgba(3, 14, 21, .44));
  pointer-events: none;
}
.hero-shell { position: relative; z-index: 1; min-height: 530px; display: flex; align-items: center; padding: 64px 0; }
.hero-copy { max-width: 840px; text-shadow: 0 2px 18px rgba(0, 0, 0, .26); }
.hero h1 { color: #fff; font-size: 70px; line-height: .96; margin-bottom: 20px; }
.hero-lead { max-width: 780px; color: #d4e9e6; font-size: 20px; margin-bottom: 28px; }
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 10px; margin-bottom: 18px;
  border: 1px solid rgba(232, 251, 246, .18); border-radius: 10px;
  background: rgba(255, 255, 255, .08); color: #d9fff7;
  font-size: 13px; font-weight: 800;
}
.pulse { width: 9px; height: 9px; border-radius: 99px; background: var(--lime); box-shadow: 0 0 0 6px rgba(182, 240, 92, .16); }
.sales-points { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 18px 0 0; list-style: none; }
.sales-points li {
  border: 1px solid rgba(255, 255, 255, .16); border-radius: 10px;
  padding: 8px 10px; background: rgba(255, 255, 255, .08);
  color: #f1fffd; font-size: 13px; font-weight: 700;
}

/* === Trust strip === */
.trust-strip { position: relative; z-index: 4; margin-top: -36px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  overflow: hidden; border: 1px solid var(--line); border-radius: 14px;
  background: var(--line); box-shadow: var(--shadow-soft);
}
.trust-item { min-height: 114px; padding: 20px; background: #fff; }
.trust-item strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 18px; }
.trust-item span { color: var(--muted); font-size: 14px; }

/* === Cards (tema) === */
.card { border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 1px 0 rgba(15, 23, 42, .03); }
.card .card-body h3 { font-size: 20px; line-height: 1.18; margin-bottom: 8px; }
.card .card-body p { color: var(--muted); margin: 0; }
.card-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  margin-bottom: 16px; border-radius: 10px; background: var(--mint);
  color: var(--teal-800); font-size: 13px; font-weight: 900;
}
.card-mark.coral { background: #fff0ee; color: #b42318; }
.card-mark.amber { background: #fff6e7; color: #995900; }
.card-mark.blue { background: #eef4ff; color: var(--blue); }
.feature-tag {
  width: fit-content; margin-bottom: 14px; padding: 6px 8px; border-radius: 8px;
  background: var(--mint); color: var(--teal-800); font-size: 12px; font-weight: 900;
}

/* === Como funciona === */
.media-frame { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-soft); }
.media-frame img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; }

/* === Integrações === */
.integration-note {
  padding: 18px; border: 1px solid rgba(10, 104, 103, .18); border-radius: 12px;
  background: var(--mint); color: #24504e; font-weight: 700;
}
.integration {
  display: grid; grid-template-columns: 46px 1fr; gap: 12px; align-items: center;
  min-height: 82px; border: 1px solid var(--line); border-radius: 12px; padding: 15px; background: #fff;
}
.integration.wide { grid-template-columns: 46px 1fr auto; }
.logo-chip {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 10px;
  background: linear-gradient(135deg, #e8fbf6, #fff); border: 1px solid rgba(10, 104, 103, .15); padding: 7px;
}
.logo-chip img { width: 100%; height: 100%; object-fit: contain; }
.integration h3 { margin: 0; font-size: 17px; }
.integration p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.pill {
  display: inline-flex; align-items: center; min-height: 30px; padding: 6px 9px; border-radius: 8px;
  color: #063f3d; background: var(--lime); font-size: 12px; font-weight: 900; white-space: nowrap;
}
.platform-cloud {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; padding: 14px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.platform-cloud span { min-height: 48px; display: grid; place-items: center; border-radius: 8px; background: #f8fbfc; border: 1px solid var(--line-soft); padding: 9px; }
.platform-cloud img { width: 100%; max-width: 92px; max-height: 28px; object-fit: contain; }

/* === Band (operação profissional) === */
.band { color: #fff; background: linear-gradient(135deg, #052f31, #0a6867); }
.band h2, .band h3 { color: #fff; }
.band .section-kicker { color: var(--lime); }
.band .section-text { color: #d4e9e6; }
.band .media-frame { border-color: rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .08); box-shadow: 0 22px 54px rgba(0, 0, 0, .18); }
.band .media-frame img { aspect-ratio: 16 / 9; }
.band .card { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); }
.band .card .card-body p { color: #d4e9e6; }

/* === Prova social === */
.proof-numbers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-bottom: 52px;
}
.proof-number { padding: 36px 24px; background: #fff; text-align: center; }
.proof-number strong { display: block; font-size: 52px; font-weight: 900; color: var(--teal-700); line-height: 1; margin-bottom: 8px; }
.proof-number span { color: var(--muted); font-size: 15px; }
.testimonial { height: 100%; display: flex; flex-direction: column; gap: 16px; }
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 4px; }
.testimonial-quote { color: #405065; font-size: 15px; line-height: 1.65; flex: 1; margin: 0; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 99px; background: var(--mint); display: grid; place-items: center; color: var(--teal-800); font-weight: 900; font-size: 15px; flex-shrink: 0; }
.author-info strong { display: block; color: var(--ink); font-size: 14px; }
.author-info span { color: var(--muted); font-size: 12px; }

/* === Planos === */
.billing-toggle { --bs-btn-border-color: var(--line); }
.billing-toggle .btn { font-weight: 800; color: #4a5b70; }
.billing-toggle .btn-check:checked + .btn,
.billing-toggle .btn.active { color: #063f3d; background: #fff; border-color: var(--teal-700); box-shadow: 0 6px 16px rgba(15, 23, 42, .08); }
.price-card { position: relative; display: flex; flex-direction: column; height: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: #fff; box-shadow: 0 1px 0 rgba(15, 23, 42, .03); }
.price-card.highlight { border-color: rgba(10, 104, 103, .58); box-shadow: 0 18px 48px rgba(10, 104, 103, .16); }
.plan-badge { width: fit-content; margin-bottom: 16px; padding: 6px 8px; border-radius: 8px; color: #063f3d; background: var(--lime); font-size: 12px; font-weight: 900; }
.price-name { margin-bottom: 4px; color: var(--ink); font-size: 24px; font-weight: 900; }
.price-desc { min-height: 44px; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; color: var(--ink); }
.price strong { font-size: 36px; line-height: 1; }
.price span { color: var(--muted); font-size: 14px; font-weight: 800; }
.charge { min-height: 20px; margin-bottom: 16px; color: var(--muted); font-size: 13px; font-weight: 700; }
.nf-count { margin-bottom: 18px; border: 1px solid var(--line-soft); border-radius: 10px; padding: 12px; color: var(--ink); background: #f8fbfc; font-weight: 900; }
.nf-count span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 700; }
.price-list { display: grid; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; color: #35465b; font-size: 14px; }
.price-list li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; align-items: start; }
.price-list .check { color: var(--teal-700); font-weight: 900; }
.price-card .btn { width: 100%; margin-top: auto; }
.note-box { border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: #f8fbfc; color: #4b5e72; font-size: 14px; }
.note-box strong { color: var(--ink); }

/* === FAQ accordion === */
.accordion { --bs-accordion-border-color: var(--line); --bs-accordion-border-radius: 12px; --bs-accordion-active-bg: var(--mint); --bs-accordion-active-color: var(--teal-900); --bs-accordion-btn-focus-box-shadow: 0 0 0 .25rem rgba(15, 118, 110, .15); }
.accordion-button { font-weight: 800; color: var(--ink); }
.accordion-body { color: var(--muted); }

/* === Final CTA === */
.final-cta {
  padding: 82px 0; color: #fff; text-align: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(135deg, #053b3a, #0a6867 58%, #0f766e);
  background-size: 54px 54px, 54px 54px, auto;
}
.final-cta h2 { color: #fff; max-width: 780px; margin: 0 auto 14px; font-size: 44px; }
.final-cta p { max-width: 680px; margin: 0 auto 24px; color: #dffbf5; font-size: 18px; }
.lgpd-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: rgba(255, 255, 255, .6); font-size: 13px; font-weight: 700; }
.lgpd-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* === Footer === */
footer { padding: 34px 0; color: #a8c1bd; background: #052f31; }
footer .navbar-brand { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; font-weight: 700; }
.footer-links a { color: #a8c1bd; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13px; color: #6a8e8a; }

/* === WhatsApp flutuante === */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1030;
  width: 56px; height: 56px; border: none; padding: 0; cursor: pointer;
  border-radius: 99px; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37, 211, 102, .38);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37, 211, 102, .5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* === Modal estilo WhatsApp === */
.wa-modal { border: none; border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, .3); }
.wa-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; background: #075e54; color: #fff;
}
.wa-avatar {
  width: 42px; height: 42px; border-radius: 99px; flex: none;
  display: grid; place-items: center; background: #fff; overflow: hidden;
}
.wa-avatar img { width: 30px; height: 30px; object-fit: contain; }
.wa-headline { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.wa-headline strong { font-size: 16px; font-weight: 700; }
.wa-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #d6efe9; }
.wa-dot { width: 8px; height: 8px; border-radius: 99px; background: #34e07b; }
.wa-close {
  border: none; background: transparent; color: #d6efe9;
  font-size: 26px; line-height: 1; cursor: pointer; padding: 0 4px;
}
.wa-close:hover { color: #fff; }
.wa-body {
  padding: 22px 28px;
  background: #fff;
}
.wa-bubble {
  position: relative; max-width: 90%; margin-bottom: 18px;
  padding: 9px 12px 18px; border-radius: 8px 8px 8px 0;
  background: #f3f6f4; color: #303030; font-size: 14px; line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}
.wa-bubble::before {
  content: ""; position: absolute; left: -7px; top: 0;
  border: 7px solid transparent; border-top-color: #f3f6f4; border-right: 0;
}
#planLeadFields .wa-bubble {
  width: 100%;
  max-width: 100%;
}
.wa-time { position: absolute; right: 10px; bottom: 5px; font-size: 10px; color: #8c9a92; }
.wa-field { margin-bottom: 10px; }
.wa-field label { display: block; margin-bottom: 4px; font-size: 12px; font-weight: 700; color: #4a5b54; }
.wa-field .form-control {
  border: 1px solid #cfd9d3; border-radius: 10px; padding: 10px 12px; font-size: 14px;
  background: #fff;
}
.wa-field .form-control:focus { border-color: #25d366; box-shadow: 0 0 0 .2rem rgba(37, 211, 102, .2); }
.plan-summary {
  display: flex; justify-content: space-between; gap: 12px;
  margin-bottom: 14px; padding: 12px;
  border: 1px solid rgba(37, 211, 102, .22); border-radius: 10px;
  background: #eefcf3; color: #075e54; font-size: 14px;
}
.plan-summary strong { color: #064f47; }
.plan-summary span { color: #36756d; font-weight: 700; text-align: right; }
.form-feedback {
  margin-top: 12px; padding: 10px 12px; border-radius: 10px;
  font-size: 13px; font-weight: 700;
}
.form-feedback.is-error { background: #fff0ee; color: #b42318; }
.form-feedback.is-success { background: #eefcf3; color: #075e54; }
.checkout-result {
  padding: 18px; border: 1px solid rgba(10, 104, 103, .18); border-radius: 12px;
  background: var(--mint); color: #24504e;
}
.checkout-result strong {
  display: block; margin-bottom: 6px; color: var(--teal-900); font-size: 18px;
}
.checkout-result p {
  margin: 0 0 14px; color: #36756d; font-size: 14px; font-weight: 700;
}
.checkout-button {
  display: inline-flex; width: 100%; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 16px; border-radius: 10px;
  background: var(--teal-800); color: #fff; font-size: 15px; font-weight: 800;
  text-decoration: none;
}
.checkout-button:hover { background: var(--teal-900); color: #fff; }
.checkout-result small {
  display: block; margin-top: 12px; color: #4b5e72; font-size: 12px; line-height: 1.45;
}
.checkout-raw-link {
  display: block; margin-top: 4px; color: var(--teal-800); font-weight: 800;
  overflow-wrap: anywhere; word-break: break-word;
}
.checkout-raw-link:hover { color: var(--teal-900); }
.wa-footer { padding: 16px 28px 22px; background: #fff; }
.wa-send {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 18px; border: none; border-radius: 99px; cursor: pointer;
  background: #25d366; color: #fff; font-size: 16px; font-weight: 700;
  transition: background .15s ease;
}
.wa-send:hover { background: #1ebe5a; }
.wa-send svg { width: 22px; height: 22px; }
.plan-submit,
.plan-submit:hover,
.plan-submit:disabled {
  background: var(--teal-800);
  color: #fff;
}
.plan-submit:hover { background: var(--teal-900); }
.plan-submit:focus-visible { box-shadow: 0 0 0 .25rem rgba(15, 118, 110, .22); }

/* === Mobile: Como funciona (passos) === */
.steps-mobile { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.step-row {
  display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start;
  padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-soft);
}
.step-num {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 99px;
  background: var(--teal-700); color: #fff; font-weight: 800; font-size: 16px;
}
.step-text strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 16px; }
.step-text p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

/* === Mobile: resumo do dashboard === */
.dash-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.dash-metric {
  padding: 14px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 12px;
  background: rgba(255, 255, 255, .08);
}
.dash-label { display: block; margin-bottom: 4px; color: #b9d4cf; font-size: 12px; font-weight: 600; }
.dash-metric strong { color: #fff; font-size: 20px; font-weight: 800; }
.dash-logos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px;
}
.dash-logos span {
  min-height: 44px; display: grid; place-items: center; padding: 8px; border-radius: 8px;
  background: #fff; border: 1px solid rgba(255, 255, 255, .16);
}
.dash-logos img { width: 100%; max-height: 24px; object-fit: contain; }

/* === Responsivo === */
@media (max-width: 991.98px) {
  .hero h1 { font-size: 52px; }
  .section-head h2 { font-size: 38px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-numbers { grid-template-columns: repeat(3, 1fr); }
  .site-nav .navbar-actions { margin-top: 16px; display: flex; gap: 10px; }
}
@media (max-width: 575.98px) {
  .hero { background: #061f24 url("media/secao-one.png") center center / auto 42% no-repeat; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 14, 21, .82) 0%, rgba(3, 14, 21, .72) 60%, rgba(3, 14, 21, .88) 100%);
  }
  .hero-shell { min-height: auto; padding: 40px 0 72px; align-items: flex-start; }
  .hero-copy { max-width: 100%; padding: 0 4px; text-align: center; }
  .hero h1 { font-size: 36px; line-height: 1.08; }
  .hero-lead { font-size: 16px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .kicker { margin-left: auto; margin-right: auto; }
  .hero .d-flex.flex-wrap {
    flex-wrap: nowrap !important;
    justify-content: center;
    width: 100%;
  }
  .hero .btn-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
    font-size: 13px;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
  }
  .sales-points { justify-content: center; }
  .section { padding: 66px 0; }
  .section-head h2, .final-cta h2 { font-size: 30px; }
  .section-text { font-size: 16px; }
  .trust-grid, .proof-numbers { grid-template-columns: 1fr; }
  .platform-cloud { grid-template-columns: repeat(3, 1fr); }
  .integration.wide { grid-template-columns: 46px 1fr; }
  .integration.wide .pill { grid-column: 2; }
  .whatsapp-float {
    right: 28px;
    bottom: 88px;
    width: 56px;
    height: 56px;
  }
}
