* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --bg: #0a0a0b;
  --bg2: #111114;
  --bg3: #18181c;
  --card: #1a1a1f;
  --border: #2a2a32;
  --border2: #333340;
  --text: #f0f0f4;
  --muted: #8a8a99;
  --accent: #00e5a0;
  --accent2: #00b87a;
  --accent-dim: rgba(0, 229, 160, 0.1);
  --accent-dim2: rgba(0, 229, 160, 0.06);
  --red: #ff4d4d;
  --yellow: #f5c542;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15
}

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

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

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text)
}

.logo span {
  color: var(--accent)
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center
}

.nav-links a {
  font-size: .9rem;
  color: var(--muted);
  transition: color .2s
}

.nav-links a:hover {
  color: var(--text)
}

.nav-cta {
  background: var(--accent);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .85rem;
  padding: .55rem 1.25rem;
  border-radius: 6px;
  transition: background .2s, transform .1s;
}

.nav-cta:hover {
  background: var(--accent2);
  transform: scale(1.03)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.nav-menuhamburguer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100vh;
  background-color: var(--card);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  padding-top: 60px;
  z-index: 998;
}

.nav-menuhamburguer li {
  list-style: none;
  margin: 15px 0;
  padding: 0 1.5rem;
  font-size: 1rem;
  transition: color 0.2s;
}

.nav-menuhamburguer li a {
  color: var(--muted);
  transition: color 0.2s;
}

.nav-menuhamburguer li a:hover {
  color: var(--text);
}

.nav-menuhamburguer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menuhamburguer.active {
  display: flex;
  right: 0;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .18;
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  /*display:grid;
  grid-template-columns:1fr 1fr;*/
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 160, 0.3);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 500;
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '●';
  font-size: .5rem;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

h1.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.25rem;
}

h1.hero-title span {
  background: linear-gradient(135deg, var(--accent), #00c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem
}

.btn-primary {
  background: var(--accent);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  transform: scale(1.03)
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border2);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap
}

.stat {
  border-left: 2px solid var(--accent);
  padding-left: 1rem
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text)
}

.stat-label {
  font-size: .8rem;
  color: var(--muted)
}

/* DASHBOARD MOCKUP */
.hero-visual {
  position: relative
}

.dashboard {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 229, 160, 0.08);
}

.db-header {
  background: var(--bg3);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid var(--border);
}

.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.db-dot.r {
  background: #ff5f57
}

.db-dot.y {
  background: #febc2e
}

.db-dot.g {
  background: #28c840
}

.db-title {
  font-size: .75rem;
  color: var(--muted);
  margin-left: .5rem
}

.db-body {
  padding: 1.25rem
}

.db-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem
}

.metric-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem;
}

.metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text)
}

.metric-val.green {
  color: var(--accent)
}

.metric-val.red {
  color: var(--red)
}

.metric-lbl {
  font-size: .7rem;
  color: var(--muted);
  margin-top: .25rem
}

.metric-chg {
  font-size: .7rem;
  color: var(--accent);
  margin-top: .2rem
}

.db-chart {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: .75rem
}

.chart-title {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .75rem
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px
}

.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--border2);
  transition: background .3s
}

.bar.active {
  background: var(--accent)
}

.db-flow {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap
}

.flow-node {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .4rem .75rem;
  font-size: .7rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.flow-node .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent)
}

.flow-arrow {
  color: var(--border2);
  font-size: .9rem
}

.floating-tag {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--accent);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .75rem;
  padding: .4rem .8rem;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 229, 160, 0.4);
}

/* SECTION BASE */
section {
  padding: 6rem 2rem
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%
}

.section-tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 160, 0.25);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 500;
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7
}

/* PROBLEMAS */
#problemas {
  background: var(--bg2)
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color .2s;
}

.problem-card:hover {
  border-color: var(--border2)
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 77, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.problem-title {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .35rem
}

.problem-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6
}


/* SOLUÇÕES */
.solutions-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.solution-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.solution-item:hover {
  border-color: rgba(0, 229, 160, 0.3);
  box-shadow: 0 0 30px rgba(0, 229, 160, 0.05)
}

.sol-col {
  padding: 1.5rem 1.75rem;
  border-right: 1px solid var(--border)
}

.sol-col:last-child {
  border-right: none
}

.sol-tag {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: .5rem
}

.sol-tag.problema {
  color: var(--red)
}

.sol-tag.solucao {
  color: var(--accent)
}

.sol-tag.beneficio {
  color: var(--yellow)
}

.sol-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5
}

/* COMO FUNCIONA */
#como-funciona {
  background: var(--bg2)
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), var(--accent), var(--border2), transparent);
}

.step {
  text-align: center;
  padding: 0 1rem
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: border-color .2s, color .2s, background .2s;
}

.step:hover .step-num {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim)
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .5rem
}

.step-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6
}

/* BENEFÍCIOS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}

.benefit-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateY(-3px)
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-title {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .35rem
}

.benefit-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6
}

/* AUTORIDADE */
#autoridade {
  background: var(--bg2)
}

.numbers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  margin-top: 3rem;
}

.number-block {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px
}

.number-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent)
}

.number-label {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .4rem
}

.integrations {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.integration-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .6rem 1.2rem;
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s, color .2s;
}

.integration-pill:hover {
  border-color: rgba(0, 229, 160, 0.4);
  color: var(--text)
}

.int-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent)
}

/* CASES */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem
}

.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}

.case-card:hover {
  border-color: rgba(0, 229, 160, 0.3)
}

.case-header {
  padding: 1.25rem 1.5rem;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.case-niche {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .7rem;
  border-radius: 100px;
}

.case-body {
  padding: 1.5rem
}

.case-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem
}

.case-block {
  flex: 1
}

.case-block-tag {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: .35rem
}

.case-block-tag.antes {
  color: var(--red)
}

.case-block-tag.depois {
  color: var(--accent)
}

.case-block-text {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5
}

.case-result {
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .85rem;
  color: var(--accent);
  font-weight: 500;
}

/* DEPOIMENTOS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.stars {
  color: var(--yellow);
  font-size: .9rem;
  margin-bottom: .75rem
}

.testimonial-text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .75rem;
  color: var(--accent);
}

.author-name {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .85rem;
  color: var(--text)
}

.author-role {
  font-size: .75rem;
  color: var(--muted)
}

/* DIFERENCIAIS */
#diferenciais {
  background: var(--bg2)
}

.diffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem
}

.diff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.diff-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateY(-2px)
}

.diff-icon {
  font-size: 1.6rem;
  margin-bottom: .75rem
}

.diff-title {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .3rem
}

.diff-desc {
  font-size: .82rem;
  color: var(--muted)
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  gap: 1rem;
}

.faq-q:hover {
  color: var(--accent)
}

.faq-arrow {
  color: var(--muted);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--accent)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.25rem
}

.faq-a p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65
}

/* CTA FINAL */
#cta-final {
  background: var(--bg2);
  text-align: center;
}

.cta-box {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 229, 160, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem
}

.cta-title span {
  color: var(--accent)
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.cta-disclaimer {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 1rem;
  opacity: .7
}

/* RODAPÉ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .75rem;
  max-width: 260px;
  line-height: 1.6
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1rem
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 1rem
}

.footer-col a {
  display: block;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .6rem;
  transition: color .2s
}

.footer-col a:hover {
  color: var(--accent)
}

.footer-bottom {
  max-width: 1140px;
  margin: 2rem auto 0;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--muted)
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem
}

.footer-bottom-links a {
  font-size: .8rem;
  color: var(--muted);
  transition: color .2s
}

.footer-bottom-links a:hover {
  color: var(--accent)
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform .2s;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1)
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

/* RESPONSIVE */
@media(max-width:900px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem
  }

  .hero-visual {
    order: 1
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem
  }

  .steps::before {
    display: none
  }

  .numbers-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .solution-item {
    grid-template-columns: 1fr
  }

  .sol-col {
    border-right: none;
    border-bottom: 1px solid var(--border)
  }

  .sol-col:last-child {
    border-bottom: none
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }
}

@media(max-width:600px) {
  .steps {
    grid-template-columns: 1fr
  }

  .numbers-row {
    grid-template-columns: 1fr 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .hero-stats {
    gap: 1.5rem
  }

  .case-row {
    flex-direction: column;
    gap: .75rem
  }
}

/* Container Principal do Chat */
.chat-container {
  width: 100%;
  max-width: 400px;
  height: 500px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 4px;
}

/* Cabeçalho do Chat */
.chat-header {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.status-info h4 {
  color: #f8fafc;
  font-size: 15px;
  margin-bottom: 2px;
}

.status-info span {
  color: #22c55e;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-info span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
}

/* Área de Mensagens */
.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

/* Esconder a scrollbar para estética */
.chat-messages::-webkit-scrollbar {
  width: 0px;
}

/* Estilização das Bolhas de Mensagem */
.message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Mensagem do Usuário/Cliente */
.message.user {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* Mensagem do Sistema/Atendente */
.message.bot {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Indicador de Digitação (Typing Indicator) */
.typing-indicator {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 16px;
  border-bottom-right-radius: 4px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #a855f7;
  border-radius: 50%;
  animation: wave 1.2s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Animações Keyframes */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wave {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }
}