:root {
  --primary: #5B00FF;
  --primary-2: #6D00FF;
  --primary-3: #7C3CFF;
  --dark: #101827;
  --text: #111827;
  --muted: #667085;
  --soft: #F4F7FF;
  --soft-purple: #EEE7FF;
  --card: #FFFFFF;
  --line: #E5EAF5;
  --success: #12B76A;
  --shadow: 0 24px 70px rgba(42, 18, 120, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #F7F9FE;
}
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }
.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,234,245,.9);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--primary);
}
.brand img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 14px 22px rgba(91,0,255,.22));
}
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344054;
  font-weight: 800;
}
.menu a:hover { color: var(--primary); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  font-size: 23px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(91,0,255,.24);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-small {
  min-height: 44px;
  border-radius: 16px;
  padding: 0 18px;
}
.btn-ghost {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
  border: 1px solid #D9DDF0;
}
.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid #DCD5FF;
  box-shadow: none;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 15% 15%, rgba(91,0,255,.12), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F1F5FF 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 84px;
  background: linear-gradient(90deg, var(--primary), #7100FF);
}
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .72;
}
.hero-glow-one {
  width: 340px;
  height: 340px;
  right: -100px;
  top: 130px;
  background: rgba(91,0,255,.18);
}
.hero-glow-two {
  width: 250px;
  height: 250px;
  left: -80px;
  bottom: 20px;
  background: rgba(108,0,255,.14);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 42px;
  align-items: center;
}
.hero-copy {
  padding-top: 34px;
}
.badge, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  background: var(--soft-purple);
  border: 1px solid #DCD3FF;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.eyebrow {
  background: transparent;
  border: 0;
  padding: 0;
}
.eyebrow.light { color: #fff; opacity: .9; }
.dot {
  width: 9px;
  height: 9px;
  background: var(--success);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -.06em;
  margin: 22px 0 18px;
}
.hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}
.metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.75);
}
.metrics strong {
  display: block;
  color: var(--primary);
  font-size: 22px;
}
.metrics span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.app-preview {
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #E9ECF7;
}
.app-top {
  height: 76px;
  background: linear-gradient(90deg, var(--primary), #7300FF);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}
.app-top strong, .app-top span {
  display: block;
}
.app-top strong { font-size: 20px; }
.app-top span { opacity: .8; margin-top: 3px; font-weight: 700; }
.app-top button {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.16);
  color: #fff;
  border-radius: 18px;
  padding: 12px 18px;
  font-weight: 900;
}
.app-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 500px;
}
.fake-sidebar {
  border-right: 1px solid var(--line);
  background: #fff;
  padding: 22px 16px;
}
.fake-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 900;
  font-size: 21px;
  margin-bottom: 34px;
}
.fake-logo img { width: 38px; height: 38px; }
.fake-sidebar nav {
  display: grid;
  gap: 12px;
}
.fake-sidebar nav span {
  padding: 14px 12px;
  border-radius: 16px;
  color: #1D2939;
  font-weight: 900;
  font-size: 14px;
}
.fake-sidebar nav .active {
  background: #EEF0FF;
  color: var(--primary);
}
.fake-content {
  background: #F3F6FC;
  padding: 24px;
}
.fake-content h3 {
  font-size: 30px;
  letter-spacing: -.04em;
  margin: 0;
}
.fake-content p {
  margin: 6px 0 18px;
  color: var(--muted);
}
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  margin-bottom: 16px;
}
.tabs span {
  border: 1px solid #DDE4F1;
  border-radius: 18px;
  padding: 11px 16px;
  color: #344054;
  font-weight: 900;
}
.tabs .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 13px 25px rgba(91,0,255,.22);
}
.tabs b {
  margin-left: 7px;
  color: inherit;
}
.fake-chat-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 16px;
}
.conversation-list, .chat-empty {
  background: #fff;
  border: 1px solid #E5EAF5;
  border-radius: 22px;
}
.conversation-list {
  padding: 14px;
  display: grid;
  gap: 12px;
}
.conversation {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
}
.conversation:hover { background: #F6F7FB; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: #E8F1FF;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.conversation b, .conversation small, .conversation em {
  display: block;
}
.conversation b { font-size: 14px; }
.conversation small { color: var(--muted); margin: 4px 0 8px; }
.conversation em {
  width: fit-content;
  font-style: normal;
  background: #DDFBEA;
  color: #027A48;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}
.conversation em.human {
  background: #FFF2D6;
  color: #B54708;
}
.chat-empty {
  min-height: 290px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
}
.chat-empty div { font-size: 42px; margin-bottom: 12px; }
.chat-empty strong {
  color: #667085;
  font-size: 18px;
}
.chat-empty span {
  max-width: 360px;
  margin-top: 8px;
  line-height: 1.5;
}

.section {
  padding: 86px 0;
}
.compact { padding: 34px 0; }
.trust-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}
.trust-box strong { color: var(--primary); }
.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section h2, .cta h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.05em;
  margin: 14px 0;
}
.section-head p, .split p, .cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 34px rgba(17,24,39,.04);
}
.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #F0EBFF;
  border-radius: 18px;
  font-size: 25px;
}
.card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.purple {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.22), transparent 26%),
    linear-gradient(135deg, var(--primary), #7700FF);
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.purple p { color: rgba(255,255,255,.76); }
.flow-card {
  display: grid;
  gap: 14px;
}
.flow-step {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
.flow-step span {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 16px;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.flow-step strong {
  display: block;
  font-size: 18px;
}
.flow-step p {
  margin: 5px 0 0;
  font-size: 15px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(17,24,39,.04);
}
.price-card.featured {
  background: var(--dark);
  color: #fff;
  border-color: rgba(91,0,255,.35);
  transform: translateY(-10px);
}
.popular {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(91,0,255,.18);
  color: #D9CDFF;
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 900;
}
.price-card h3 {
  font-size: 25px;
  margin: 0 0 10px;
}
.price-card p {
  min-height: 64px;
  color: var(--muted);
  line-height: 1.6;
}
.price-card.featured p { color: rgba(255,255,255,.68); }
.price-card strong {
  display: block;
  font-size: 28px;
  margin: 22px 0;
  color: var(--primary);
}
.price-card.featured strong { color: #fff; }
.price-card ul {
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}
.price-card li {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid #EEF2F7;
}
.price-card.featured li {
  color: rgba(255,255,255,.74);
  border-color: rgba(255,255,255,.1);
}
.price-card li:before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  margin-right: 9px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.cta {
  padding: 82px 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(135deg, #111827, #2B0B63 55%, var(--primary));
  color: #fff;
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  align-items: center;
}
.cta p { color: rgba(255,255,255,.76); }
.contact-form {
  display: grid;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.contact-form input,
.contact-form select {
  height: 54px;
  border: 1px solid #DDE4F1;
  border-radius: 16px;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91,0,255,.12);
}
.contact-form small {
  color: var(--muted);
  text-align: center;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 44px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 180px 240px;
  gap: 30px;
  align-items: start;
}
.footer .brand { font-size: 24px; }
.footer strong {
  display: block;
  margin-bottom: 12px;
}
.footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}
.copy {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.float-whats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  color: #fff;
  font-size: 25px;
  box-shadow: 0 18px 40px rgba(91,0,255,.34);
  z-index: 80;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .app-preview { max-width: 900px; }
}

@media (max-width: 900px) {
  .menu-toggle { display: grid; place-items: center; }
  .menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .menu.open { display: flex; }
  .cards,
  .pricing,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured { transform: none; }
  .app-body { grid-template-columns: 1fr; }
  .fake-sidebar { display: none; }
  .fake-chat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .brand { font-size: 22px; }
  .brand img { width: 42px; height: 42px; }
  .hero { padding-top: 54px; }
  .hero:before { height: 70px; }
  .hero-actions .btn { width: 100%; }
  .metrics { grid-template-columns: 1fr; }
  .app-top { height: auto; padding: 18px; gap: 12px; align-items: flex-start; }
  .app-top button { display: none; }
  .fake-content { padding: 16px; }
  .fake-content h3 { font-size: 24px; }
  .section { padding: 64px 0; }
  .trust-box { display: grid; }
}


.results {
  background:
    radial-gradient(circle at 5% 10%, rgba(91,0,255,.08), transparent 26%),
    linear-gradient(180deg, #F7F9FE 0%, #FFFFFF 100%);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.result-card {
  position: relative;
  min-height: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(17,24,39,.04);
  overflow: hidden;
}

.result-card:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -45px;
  bottom: -45px;
  background: rgba(91,0,255,.08);
  border-radius: 50%;
}

.result-card span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #F0EBFF;
  color: var(--primary);
  font-weight: 900;
}

.result-card h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.banner-note {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(135deg, var(--primary), #7700FF);
  color: #fff;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(91,0,255,.22);
}

.banner-note strong {
  font-size: 24px;
  letter-spacing: -.03em;
}

.banner-note p {
  color: rgba(255,255,255,.78);
  margin: 8px 0 0;
  line-height: 1.6;
}

.banner-note .btn {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    min-height: auto;
  }

  .banner-note .btn {
    width: 100%;
  }
}






/* Plano completo - versão refinada */
.plan-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(91,0,255,.10), transparent 30%),
    linear-gradient(180deg, #F7F9FE 0%, #FFFFFF 100%);
}

.complete-plan-card {
  max-width: 1050px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #DDD6FE;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(91,0,255,.14);
}

.complete-plan-header {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(91,0,255,.12), transparent 32%),
    #fff;
}

.plan-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: #F0EBFF;
  color: var(--primary);
  border: 1px solid #DCD3FF;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.complete-plan-header h3 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.05em;
  color: var(--dark);
}

.complete-plan-header p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 18px;
  margin: 0;
}

.price-box {
  display: grid;
  align-content: center;
  min-height: 210px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111827, #2B0B63 58%, var(--primary));
  color: #fff;
  box-shadow: 0 18px 42px rgba(91,0,255,.22);
}

.price-box small {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.65);
  font-weight: 900;
}

.price-box strong {
  display: block;
  margin: 10px 0;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
}

.price-box span {
  color: rgba(255,255,255,.76);
  line-height: 1.5;
  font-weight: 700;
}

.complete-plan-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0 34px 34px;
}

.feature-column {
  border: 1px solid #EEF2F7;
  border-radius: 26px;
  padding: 24px;
  background: #FBFCFF;
}

.feature-column h4 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--dark);
}

.feature-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-column li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid #EEF2F7;
  color: #475467;
  font-size: 16px;
  font-weight: 700;
}

.feature-column li:last-child {
  border-bottom: 0;
}

.feature-column li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #F0EBFF;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.complete-plan-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 34px;
  border-top: 1px solid #EEF2F7;
  background: #FAFBFF;
}

.complete-plan-footer p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.complete-plan-footer .btn {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .complete-plan-header,
  .complete-plan-body {
    grid-template-columns: 1fr;
  }

  .complete-plan-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .complete-plan-footer .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .complete-plan-header,
  .complete-plan-body,
  .complete-plan-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .price-box strong {
    font-size: 32px;
  }
}


.complete-plan-intro {
  padding: 34px 34px 8px;
  text-align: center;
}

.complete-plan-intro h3 {
  margin: 16px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -.05em;
  color: var(--dark);
}

.complete-plan-intro p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 18px;
}

.complete-plan-body {
  padding-top: 18px;
}

@media (max-width: 620px) {
  .complete-plan-intro {
    padding: 26px 22px 4px;
  }
}


.complete-plan-card .complete-plan-body {
  padding-top: 34px;
}


/* V13 ajuste: centralizar botão no rodapé do plano */
.complete-plan-footer {
  justify-content: center !important;
  text-align: center;
}


/* V17 - preview mais profissional com animação */
.active-conversation {
  background: #F7F4FF;
  border: 1px solid #E5D9FF;
}
.live-badge {
  background: #DDFBEA !important;
  color: #027A48 !important;
  position: relative;
}
.live-badge::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #12B76A;
  display: inline-block;
  margin-left: 6px;
  animation: pulseLive 1.4s infinite;
}
.bot-badge {
  background: #EFE7FF !important;
  color: var(--primary) !important;
}
.live-chat-preview {
  background: #fff;
  border: 1px solid #E5EAF5;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  min-height: 290px;
}
.live-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #EEF2F7;
}
.live-chat-header strong {
  display: block;
  color: #111827;
  font-size: 17px;
}
.live-chat-header span {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}
.status-pill {
  background: #ECFDF3;
  color: #027A48 !important;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.live-messages {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.msg {
  border-radius: 16px;
  padding: 12px 14px;
}
.msg small {
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.msg p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.msg-cliente {
  background: #F8FAFC;
  border: 1px solid #E5EAF5;
}
.msg-bot {
  background: #F4EEFF;
  border: 1px solid #E4D6FF;
}
.msg-human {
  background: #ECFDF3;
  border: 1px solid #CDEFD9;
}
.typing-box {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #F4EEFF, #FBF8FF);
  border: 1px solid #E4D6FF;
  border-radius: 16px;
  padding: 12px 14px;
}
.typing-label {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}
.typing-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.typing-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  animation: bounceDots 1.1s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: .15s; }
.typing-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes bounceDots {
  0%, 80%, 100% { transform: translateY(0); opacity: .45; }
  40% { transform: translateY(-5px); opacity: 1; }
}
@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(18,183,106,.45); }
  70% { box-shadow: 0 0 0 8px rgba(18,183,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,183,106,0); }
}


/* V18 - corrigir preview cortado no hero */
.hero-grid > * {
  min-width: 0;
}
.app-preview {
  width: 100%;
  max-width: 100%;
}
.app-body > * {
  min-width: 0;
}
.fake-content {
  min-width: 0;
  padding: 20px;
}
.fake-chat-grid {
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  align-items: stretch;
}
.fake-chat-grid > * {
  min-width: 0;
}
.live-chat-preview {
  min-width: 0;
  overflow: hidden;
}
.live-chat-header {
  flex-wrap: wrap;
}
.live-chat-header strong {
  font-size: 16px;
  line-height: 1.15;
}
.live-chat-header span {
  line-height: 1.35;
}
.status-pill {
  flex-shrink: 0;
}
.msg p,
.conversation small,
.chat-empty span {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.typing-box {
  gap: 10px;
}
@media (min-width: 1180px) {
  .hero-grid {
    grid-template-columns: .84fr 1.16fr;
    gap: 34px;
  }
  .app-body {
    grid-template-columns: 170px 1fr;
  }
  .fake-sidebar {
    padding: 20px 14px;
  }
  .fake-logo {
    font-size: 18px;
    margin-bottom: 26px;
  }
  .fake-sidebar nav span {
    font-size: 13px;
    padding: 12px 10px;
  }
  .fake-content h3 {
    font-size: 26px;
  }
  .tabs {
    gap: 8px;
    padding: 10px;
  }
  .tabs span {
    padding: 10px 14px;
    font-size: 13px;
  }
  .conversation-list {
    padding: 12px;
    gap: 10px;
  }
  .conversation {
    padding: 9px;
    gap: 10px;
  }
  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 15px;
    flex-shrink: 0;
  }
  .conversation b { font-size: 13px; }
  .conversation small { font-size: 12px; margin: 3px 0 7px; }
  .conversation em { font-size: 10px; padding: 4px 8px; }
  .live-chat-preview {
    padding: 16px;
  }
  .live-messages {
    gap: 10px;
    margin-top: 12px;
  }
  .msg {
    padding: 10px 12px;
  }
  .msg p {
    font-size: 13px;
    line-height: 1.4;
  }
  .typing-box {
    padding: 10px 12px;
  }
}


/* V19 - hero mais largo e métricas substituídas */
.hero .container {
  width: min(1320px, calc(100% - 32px));
}
.hero-grid {
  grid-template-columns: .72fr 1.28fr !important;
  gap: 26px !important;
  align-items: stretch;
}
.hero-copy {
  padding-top: 22px;
}
.hero h1 {
  font-size: clamp(40px, 4.6vw, 64px);
}
.hero p {
  font-size: 18px;
  max-width: 560px;
}
.metrics {
  max-width: 560px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.metrics div {
  padding: 14px 16px;
  border-radius: 16px;
}
.metrics strong {
  font-size: 18px;
  line-height: 1.1;
}
.metrics span {
  font-size: 12px;
  line-height: 1.25;
}
.app-preview {
  align-self: stretch;
}
.app-body {
  min-height: 560px;
  grid-template-columns: 165px 1fr;
}
.fake-content {
  padding: 18px;
}
.fake-chat-grid {
  grid-template-columns: minmax(210px, 235px) minmax(0, 1fr);
}
@media (max-width: 1180px) {
  .hero .container {
    width: min(1200px, calc(100% - 24px));
  }
}


/* V20 - Correção forte de responsividade mobile */
@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .hero .container {
    width: min(100% - 28px, 720px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero {
    padding: 44px 0 58px !important;
  }

  .hero:before {
    height: 0 !important;
    display: none !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    align-items: start !important;
  }

  .hero-copy {
    padding-top: 0 !important;
    text-align: left !important;
  }

  .badge {
    font-size: 11px !important;
    line-height: 1.25 !important;
    padding: 8px 12px !important;
    max-width: 100% !important;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 56px) !important;
    line-height: .96 !important;
    letter-spacing: -.06em !important;
    margin: 20px 0 16px !important;
    max-width: 100% !important;
  }

  .hero p {
    font-size: 17px !important;
    line-height: 1.65 !important;
    max-width: 100% !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .metrics {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  .metrics div {
    padding: 16px !important;
  }

  .metrics strong {
    font-size: 20px !important;
  }

  .app-preview {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  .app-top {
    height: auto !important;
    min-height: 88px !important;
    padding: 18px !important;
    border-radius: 0 !important;
  }

  .app-top strong {
    font-size: 22px !important;
    line-height: 1.15 !important;
  }

  .app-top button {
    display: none !important;
  }

  .app-body {
    display: block !important;
    min-height: auto !important;
  }

  .fake-sidebar {
    display: none !important;
  }

  .fake-content {
    padding: 20px !important;
  }

  .fake-content h3 {
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  .fake-content p {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .tabs span {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 10px !important;
    font-size: 15px !important;
  }

  .fake-chat-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .conversation-list {
    padding: 12px !important;
  }

  .conversation {
    padding: 12px !important;
  }

  .live-chat-preview {
    min-height: auto !important;
    padding: 16px !important;
  }

  .live-chat-header {
    align-items: flex-start !important;
  }

  .live-messages {
    gap: 10px !important;
  }

  .msg p {
    font-size: 13px !important;
  }

  .typing-box {
    margin-top: 12px !important;
  }

  .section {
    padding: 58px 0 !important;
  }

  .cards,
  .results-grid,
  .complete-plan-body,
  .pricing,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .complete-plan-card {
    border-radius: 26px !important;
  }

  .complete-plan-body,
  .complete-plan-footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .cta-box {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .contact-form {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .container,
  .hero .container {
    width: calc(100% - 24px) !important;
  }

  .brand {
    font-size: 24px !important;
  }

  .brand img {
    width: 44px !important;
    height: 44px !important;
  }

  .hero h1 {
    font-size: clamp(36px, 13vw, 48px) !important;
  }

  .tabs {
    grid-template-columns: 1fr !important;
  }

  .float-whats {
    right: 18px !important;
    bottom: 18px !important;
  }
}
