@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #0f172a;
  --dark: #0b0f2e;
  --paper: #ffffff;
  --soft: #f8fafc;
  --muted: #64748b;
  --line: #e2e8f0;
  --g: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #d946ef 100%);
  --g-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(217, 70, 239, 0.4) 100%);
  --g-accent: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 30px -8px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 25px 65px -15px rgba(139, 92, 246, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
}

/* ==========================================
   CABEÇALHO GLASSMORPHIC & NAVEGAÇÃO
   ========================================== */
header {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

header.scrolled {
  height: 72px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.brand {
  display: flex;
  align-items: center;
  width: 175px;
  height: 44px;
  overflow: hidden;
  flex: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover {
  transform: scale(1.03);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  align-items: center;
}

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

nav a {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  transition: all 0.25s ease;
  position: relative;
  padding: 6px 0;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--g);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:hover {
  color: #0f172a;
}

nav a:hover::after {
  width: 100%;
}

/* BUTTONS & SHIMMER EFFECT */
.btn, .outline, .lightbtn {
  border: 0;
  cursor: pointer;
  border-radius: 100px;
  padding: 15px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn {
  background: var(--g);
  color: white;
  box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4), 0 4px 10px -2px rgba(217, 70, 239, 0.2);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn:hover::before {
  left: 140%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 35px -5px rgba(139, 92, 246, 0.55), 0 8px 15px -3px rgba(217, 70, 239, 0.3);
}

.btn:active {
  transform: translateY(-1px) scale(0.99);
}

.outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.outline:hover {
  border-color: #8b5cf6;
  color: #7c3aed;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -5px rgba(139, 92, 246, 0.18);
  background: #ffffff;
}

.lightbtn {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.lightbtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
}

.small {
  padding: 10px 20px;
  font-size: 13px;
  white-space: nowrap;
}

.menu {
  display: none;
  background: transparent;
  border: 0;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
}

/* ==========================================
   HERO SECTION FUTURISTA & GLOWING MESH
   ========================================== */
.hero {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
              var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 50px;
  align-items: center;
  min-height: 600px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #8b5cf6;
  margin: 0 0 20px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d946ef;
  box-shadow: 0 0 10px #d946ef;
  display: inline-block;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  margin-bottom: 24px;
  font-weight: 800;
  color: #0f172a;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 22px;
  font-weight: 800;
}

em {
  font-style: normal;
  background: var(--g);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.leadtext {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
}

.actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 36px 0 48px;
  flex-wrap: wrap;
}

.actions a, .more {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border: 0;
  background: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.actions a:hover {
  color: #8b5cf6;
  transform: translateX(4px);
}

.socialproof {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(248, 250, 252, 0.8);
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid var(--line);
  width: fit-content;
  backdrop-filter: blur(10px);
}

.socialproof-avatars {
  display: flex;
}

.socialproof span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  display: grid;
  place-items: center;
  color: #fff;
  border: 2px solid #fff;
  font-size: 10px;
  font-weight: 800;
  margin-left: -12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.socialproof span:hover {
  transform: translateY(-3px) scale(1.1);
  z-index: 2;
}

.socialproof span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #d946ef, #8b5cf6);
}

.socialproof span:nth-child(2) {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.socialproof span:nth-child(3) {
  background: linear-gradient(135deg, #10b981, #059669);
}

.socialproof span:nth-child(4) {
  background: #0f172a;
}

.socialproof p {
  margin: 0;
  line-height: 1.35;
  font-weight: 500;
}

/* HERO CONSOLE ART & GLASS CARDS */
.hero-art {
  height: 560px;
  position: relative;
  isolation: isolate;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.blob.one {
  width: 450px;
  height: 450px;
  right: 10px;
  top: 20px;
  background: var(--g);
  opacity: 0.22;
}

.blob.two {
  width: 250px;
  height: 250px;
  right: -20px;
  top: -10px;
  background: #d946ef;
  opacity: 0.25;
}

.console {
  position: absolute;
  width: 82%;
  right: 40px;
  top: 45px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 30px 70px -15px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  padding: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.console:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px -15px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.console-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-bottom: 16px;
  font-size: 13px;
}

.console-top b {
  display: flex;
  align-items: center;
  gap: 10px;
}

.console mark {
  background: var(--g);
  border-radius: 10px;
  color: white;
  padding: 5px 9px;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.console small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
}

.console-top > span {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.console-content {
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}

.chat p {
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 16px 16px 16px 4px;
  background: #f1f5f9;
  max-width: 88%;
  color: #334155;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.chat .reply {
  background: var(--g);
  margin-left: auto;
  color: white;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.25);
}

.chat i {
  font-size: 14px;
  letter-spacing: 4px;
  color: #94a3b8;
  display: block;
  padding-left: 4px;
}

.metric {
  background: #0f172a;
  border-radius: 20px;
  color: white;
  padding: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric b {
  font-size: 28px;
  color: #34d399;
  margin-top: 4px;
  letter-spacing: -0.03em;
}

.metric small {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bars {
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 16px 0 6px;
}

.bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--g);
}

/* FLOATING BADGES */
.float {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.16);
  z-index: 10;
  font-size: 13px;
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease;
}

.float:hover {
  transform: scale(1.05) translateY(-3px);
}

.f1 {
  left: 0;
  top: 175px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8b5cf6;
}

.f1 span {
  display: grid;
  color: var(--ink);
}

.f1 small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.f1 b {
  font-size: 12px;
  font-weight: 700;
}

.f2 {
  right: 0;
  bottom: 30px;
  padding: 18px 22px;
  display: grid;
}

.f2 small, .f2 span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
}

.f2 b {
  font-size: 28px;
  line-height: 1.1;
  background: var(--g);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* MARQUEE TICKER */
.ticker {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
  background: rgba(248, 250, 252, 0.6);
  backdrop-filter: blur(10px);
}

.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: tickerRight 28s linear infinite;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #475569;
}

.ticker-track span {
  display: block;
  white-space: nowrap;
  padding: 18px 24px;
}

.ticker b {
  color: #d946ef;
  margin: 0 30px;
}

/* ==========================================
   SEÇÃO INTRO & CARDS DE ESTATÍSTICAS
   ========================================== */
.intro {
  padding: 130px 0 70px;
}

.intro-copy {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 0.75fr;
  gap: 36px;
  align-items: start;
}

.intro-copy h2 {
  margin: 0;
}

.intro-copy > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  gap: 20px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: #c084fc;
  box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
  background: linear-gradient(135deg, #ffffff, #faf5ff);
}

.stat-card b {
  font-size: 30px;
  letter-spacing: -0.04em;
  color: #0f172a;
  font-weight: 800;
}

.stat-card span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 500;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
  background: #f3e8ff;
  color: #9333ea;
  font-size: 18px;
  font-style: normal;
  box-shadow: 0 6px 15px rgba(147, 51, 234, 0.15);
}

/* ==========================================
   SEÇÃO MÉTODO (PASSOS DE IMPLANTAÇÃO)
   ========================================== */
.method {
  background: #0b0f2e;
  color: white;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.method::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.method .eyebrow {
  color: #c084fc;
}

.method h2 {
  max-width: 720px;
  color: #ffffff;
}

.method .heading > p:last-child {
  color: #94a3b8;
  max-width: 480px;
  margin-bottom: 60px;
  font-size: 17px;
}

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

.steps article {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  min-height: 260px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.steps article:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(217, 70, 239, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(217, 70, 239, 0.15);
}

.steps b {
  font-size: 14px;
  color: #c084fc;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.steps article > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--g);
  font-size: 22px;
  margin: 24px 0 20px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.steps h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #ffffff;
}

.steps p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

.method-bottom {
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 55px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #cbd5e1;
}

.method-bottom > i {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, transparent);
}

/* ==========================================
   SEÇÃO SOLUÇÕES SAAS (CARDS INTERATIVOS)
   ========================================== */
.solutions {
  padding: 130px 0;
  background: var(--paper);
}

.heading.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}

.heading.split > p {
  width: 320px;
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  background: #ffffff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #c084fc;
}

.card.accent {
  background: #0b0f2e;
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(11, 15, 46, 0.25);
}

.card.accent:hover {
  border-color: #d946ef;
  box-shadow: 0 25px 60px rgba(217, 70, 239, 0.25);
}

.card > p:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card > p:first-child i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #f3e8ff;
  display: grid;
  place-items: center;
  color: #9333ea;
  font-size: 22px;
  font-style: normal;
  box-shadow: 0 6px 16px rgba(147, 51, 234, 0.15);
}

.card.accent > p:first-child i {
  background: var(--g);
  color: white;
  box-shadow: 0 8px 20px rgba(217, 70, 239, 0.35);
}

.card small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card.accent small, .card.accent > p:not(:first-child) {
  color: #cbd5e1;
}

.card h3 {
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 28px 0 14px;
  font-weight: 800;
}

.card > p:not(:first-child) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.card ul, .pricing ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}

.card li, .pricing li {
  font-size: 12px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.card li::before, .pricing li::before {
  content: "✓";
  color: #10b981;
  margin-right: 10px;
  font-weight: 800;
  font-size: 13px;
  background: rgba(16, 185, 129, 0.12);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: none;
}

.card .more {
  margin-top: auto;
  text-align: left;
  padding: 0;
  color: #8b5cf6;
  font-size: 14px;
}

.card.accent .more {
  color: #f0abfc;
}

/* ==========================================
   SEÇÃO TECNOLOGIA & TERMINAL MOCKUP
   ========================================== */
.technology {
  padding: 130px 0;
  background: var(--soft);
}

.techgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.terminal {
  background: #0b0f2e;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 70px -10px rgba(11, 15, 46, 0.3);
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.dots {
  font-size: 12px;
  color: #d946ef;
  letter-spacing: 5px;
}

.dots b {
  margin-left: 40px;
  color: #94a3b8;
  letter-spacing: 0;
  font-size: 11px;
  font-family: monospace;
}

.flow {
  margin: 70px 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.flow i {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3b82f6, #d946ef);
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(217, 70, 239, 0.35);
}

.flow u {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #d946ef);
  text-decoration: none;
}

.tech-list {
  margin-top: 36px;
}

.tech-list p {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  margin: 0;
}

.tech-list p > b {
  font-size: 12px;
  color: #8b5cf6;
  font-weight: 800;
}

.tech-list span {
  display: grid;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.tech-list strong {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
  font-weight: 700;
}

/* ==========================================
   SEÇÃO PLANOS DE PREÇOS
   ========================================== */
.plans {
  padding: 130px 0;
  background: var(--paper);
}

.heading.center {
  text-align: center;
}

.heading.center .eyebrow {
  margin-bottom: 16px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 64px;
}

.pricing article {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #c084fc;
}

.pricing h3 {
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 800;
}

.pricing article > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
}

.pricing article > small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing article > b {
  font-size: 38px;
  letter-spacing: -0.05em;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}

.pricing article > span {
  font-size: 12px;
  color: var(--muted);
}

.pricing ul {
  flex: 1;
  margin-top: 28px;
}

.recommended {
  background: #0b0f2e !important;
  color: #ffffff !important;
  border-color: #8b5cf6 !important;
  box-shadow: 0 25px 65px -15px rgba(139, 92, 246, 0.35) !important;
}

.recommended > em {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--g);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 20px rgba(217, 70, 239, 0.4);
}

.recommended > p, .recommended > small, .recommended > span {
  color: #cbd5e1 !important;
}

.recommended b {
  color: #ffffff !important;
}

.note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 32px 0 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   SEÇÃO DEPOIMENTOS
   ========================================== */
.testimonials {
  padding: 120px 0;
  background: var(--soft);
}

.round {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--g);
  color: white;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quotes article {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.35s ease;
}

.quotes article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #c084fc;
}

.quotes i {
  font-size: 52px;
  line-height: 0.5;
  font-style: normal;
  color: #8b5cf6;
}

.quotes p {
  font-size: 15px;
  line-height: 1.65;
  margin: 20px 0 auto;
  color: #334155;
  font-weight: 500;
}

.quotes b {
  font-size: 14px;
  color: #0f172a;
  font-weight: 700;
}

.quotes small {
  font-size: 12px;
  color: var(--muted);
}

/* ==========================================
   FORMULÁRIO DE CONTATO INTELIGENTE
   ========================================== */
.intelligent-contact {
  position: relative;
  overflow: hidden;
  background: #0b0f2e;
  padding: 130px 0;
  color: #fff;
}

.contact-sky {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(217, 70, 239, 0.3));
  filter: blur(80px);
}

.contactgrid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.intelligent-copy h2 {
  max-width: 640px;
  margin: 14px 0 24px;
  color: #ffffff;
}

.intelligent-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.7;
}

.contact-points {
  margin-top: 40px;
  max-width: 520px;
}

.contact-points p {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-points p > i {
  font-style: normal;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--g);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35);
}

.contact-points span {
  display: grid;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}

.contact-points b {
  color: #fff;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
}

.intelligent-form {
  position: relative;
  background: #ffffff;
  color: var(--ink);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
}

.form-title {
  display: grid;
  margin-bottom: 24px;
}

.form-title b {
  font-size: 19px;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #0f172a;
}

.form-title span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.intelligent-form label {
  display: grid;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.intelligent-form input, .intelligent-form select {
  margin-top: 6px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 13px;
  outline: none;
  color: var(--ink);
  background: #ffffff;
  transition: all 0.25s ease;
}

.intelligent-form input:focus, .intelligent-form select:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.goals {
  border: 0;
  margin: 8px 0 12px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.goals legend {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.goals label {
  margin: 0;
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  text-transform: none;
  letter-spacing: normal;
}

.goals input, .consent input {
  margin: 0;
  accent-color: #8b5cf6;
  width: 16px;
  height: 16px;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 10px !important;
  line-height: 1.4;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.consent span {
  font-weight: 500;
  font-size: 11px;
  color: var(--muted);
}

.privacy {
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 16px;
}

.privacy a {
  color: #8b5cf6;
  text-decoration: underline;
}

.intelligent-form .btn {
  width: 100%;
  margin-top: 4px;
}

/* ==========================================
   RODAPÉ & AÇÕES FLUTUANTES
   ========================================== */
footer {
  background: #0f172a;
  color: #ffffff;
  padding-top: 40px;
}

.foot {
  display: flex;
  justify-content: space-between;
  padding: 60px 0 48px;
}

.foot > div:first-child p {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 18px;
}

.foot > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
}

.foot b {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.foot a:hover {
  color: #d946ef;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0 36px;
  font-size: 12px;
  color: #64748b;
}

.legal span {
  float: right;
}

.float-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-actions #theme {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  flex: none;
}

.float-actions #theme:hover {
  transform: scale(1.1);
}

@keyframes pulse-chat {
  0% {
    box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.75), 0 10px 25px rgba(109, 40, 217, 0.45);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(109, 40, 217, 0), 0 10px 25px rgba(109, 40, 217, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(109, 40, 217, 0), 0 10px 25px rgba(109, 40, 217, 0.45);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.75), 0 10px 25px rgba(16, 185, 129, 0.45);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(16, 185, 129, 0), 0 10px 25px rgba(16, 185, 129, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0), 0 10px 25px rgba(16, 185, 129, 0.45);
  }
}

.float-actions .btn-chat-launch {
  background: linear-gradient(135deg, #6d28d9 0%, #0284c7 100%) !important;
  color: #ffffff !important;
  padding: 0 20px !important;
  height: 44px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  animation: pulse-chat 2s infinite !important;
  transition: all 0.3s ease !important;
  flex: none !important;
}

.float-actions .btn-chat-launch:hover {
  transform: translateY(-3px) scale(1.04) !important;
  animation: none !important;
  box-shadow: 0 15px 35px rgba(109, 40, 217, 0.7) !important;
}

.float-actions a {
  background: #10b981 !important;
  color: #ffffff !important;
  padding: 0 20px !important;
  height: 44px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  animation: pulse-whatsapp 2s infinite !important;
  transition: all 0.3s ease !important;
  flex: none !important;
  text-decoration: none !important;
}

.float-actions a:hover {
  transform: translateY(-3px) scale(1.04) !important;
  animation: none !important;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.7) !important;
  background: #059669 !important;
}

.dark .float-actions #theme {
  background: #ffffff;
  color: #0f172a;
}

/* MODAL MODERNIZADO */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.open {
  display: grid;
}

.modal > div {
  background: #ffffff;
  color: var(--ink);
  max-width: 640px;
  width: 100%;
  border-radius: 28px;
  padding: 44px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  animation: modalEnter 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close {
  position: absolute;
  right: 20px;
  top: 18px;
  border: 0;
  background: #f1f5f9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.close:hover {
  background: #e2e8f0;
  transform: rotate(90deg);
}

/* DARK MODE OVERRIDES */
.dark {
  --paper: #090d16;
  --soft: #0f172a;
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: #1e293b;
}

.dark body {
  background: var(--paper);
  color: var(--ink);
}

.dark header {
  background: rgba(9, 13, 22, 0.85);
  border-bottom-color: rgba(30, 41, 59, 0.8);
}

.dark nav a {
  color: #cbd5e1;
}

.dark nav a:hover {
  color: #ffffff;
}

.dark .card, .dark .quotes article, .dark .pricing article:not(.recommended), .dark .modal > div, .dark .stat-card {
  background: #0f172a;
  color: var(--ink);
  border-color: #1e293b;
}

.dark .intelligent-form {
  background: #0f172a;
  color: #ffffff;
}

.dark .intelligent-form input, .dark .intelligent-form select {
  background: #1e293b;
  border-color: #334155;
  color: #ffffff;
}

.dark .socialproof {
  background: rgba(15, 23, 42, 0.8);
  border-color: #1e293b;
}

.dark .console, .dark .float {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.dark .chat p {
  background: #1e293b;
  color: #f1f5f9;
}

.dark .form-title b, .dark .pricing article > b, .dark .quotes b, .dark .stat-card b {
  color: #ffffff;
}

/* RESPONSIVIDADE */
@media (max-width: 960px) {
  header {
    height: 72px;
    padding: 0 24px;
  }
  .menu {
    display: block;
    margin-left: auto;
  }
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .navopen nav {
    display: flex;
  }
  header > .small {
    display: none;
  }
  .hero-grid, .techgrid, .contactgrid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-art {
    height: 460px;
  }
  .console {
    right: 5%;
    width: 90%;
  }
  .intro-copy {
    grid-template-columns: 1fr;
  }
  .numbers, .cards, .steps, .quotes, .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 32px, 1200px);
  }
  h1 {
    font-size: 40px;
  }
  .hero-art {
    height: 380px;
  }
  .console {
    top: 20px;
    width: 96%;
    right: 2%;
  }
  .numbers, .cards, .steps, .quotes, .pricing {
    grid-template-columns: 1fr;
  }
  .intelligent-form {
    padding: 24px;
  }
  .goals {
    grid-template-columns: 1fr;
  }
  .float-actions {
    bottom: 16px !important;
    right: 16px !important;
    gap: 8px !important;
  }
  .float-actions .btn-text,
  .float-actions a span {
    display: none !important;
  }
  .float-actions .btn-chat-launch,
  .float-actions a {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    font-size: 18px !important;
  }
}

/* Movimento e ícones: linguagem visual própria da Empresas UP */
.card::before{content:"";position:absolute;width:150px;height:150px;border-radius:50%;background:radial-gradient(circle,#b256d466,transparent 67%);right:-70px;top:-70px;opacity:0;transition:.45s;pointer-events:none}.card:hover::before{opacity:1;transform:scale(1.3)}.card>p:first-child i{transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .3s}.card:hover>p:first-child i{transform:rotate(-12deg) scale(1.12);box-shadow:0 10px 20px #8a45bb33}.step{transition:background .35s,transform .35s}.step:hover{background:rgba(255,255,255,.055);transform:translateY(-6px)}.step:hover>i{animation:iconPulse 1.2s ease-in-out infinite}@keyframes iconPulse{50%{transform:scale(1.12) rotate(7deg);box-shadow:0 0 0 10px #aa54ce23}}

.intelligent-contact{position:relative;overflow:hidden;background:var(--dark);padding:125px 0;color:#fff}.contact-sky{position:absolute;inset:auto 0 0;height:35%;background:linear-gradient(135deg,#1c5ded,#5422bb);opacity:.9}.intelligent-contact::before{content:"";position:absolute;width:720px;height:720px;border:1px solid #fff2;border-radius:50%;left:-390px;top:-215px}.intelligent-contact .contactgrid{position:relative;z-index:1;align-items:start}.intelligent-copy h2{max-width:620px;margin:13px 0 22px}.intelligent-copy>p:not(.eyebrow){max-width:530px;color:#c5c9e1;font-size:16px}.contact-points{margin-top:37px;max-width:510px}.contact-points p{display:flex;gap:15px;margin:0;padding:14px 0;border-top:1px solid #ffffff25}.contact-points p>i{font-style:normal;width:31px;height:31px;flex:none;border-radius:10px;display:grid;place-items:center;background:linear-gradient(135deg,#272875,#a61cc9);font-size:10px;font-weight:800}.contact-points span{display:grid;color:#bfc4df;font-size:12px;line-height:1.45}.contact-points b{color:#fff;margin-bottom:2px;font-size:13px}.contact-orbit{position:absolute;width:240px;height:240px;right:20px;bottom:-58px;border:1px solid #fff2;border-radius:50%;opacity:.8}.contact-orbit::before,.contact-orbit::after{content:"";position:absolute;inset:32px;border:1px solid #a861dd90;border-radius:50%}.contact-orbit::after{inset:76px;background:linear-gradient(135deg,#34277f,#a61cc9);border:0;box-shadow:0 0 0 14px #b650cb16}.contact-orbit i{font-size:9px;font-style:normal;position:absolute;z-index:1;padding:6px 9px;border:1px solid #ffffff42;border-radius:20px;background:#1b1f51}.contact-orbit i:nth-child(1){left:78px;top:-13px}.contact-orbit i:nth-child(2){right:-25px;top:101px}.contact-orbit i:nth-child(3){left:0;bottom:18px}.contact-orbit span{position:absolute;width:9px;height:9px;right:40px;top:37px;background:#a8ffcf;border-radius:50%;z-index:2;animation:orbitSignal 3s linear infinite}@keyframes orbitSignal{to{transform:rotate(360deg);transform-origin:-75px 83px}}
.intelligent-form{position:relative;background:#fff;color:var(--ink);border-radius:25px;padding:30px 30px 27px;box-shadow:0 30px 55px #02051d52}.form-title{display:grid;margin-bottom:22px}.form-title b{font-size:17px;letter-spacing:-.03em}.form-title span{font-size:10px;color:#767c9c;margin-top:2px}.intelligent-form label{font-size:10px;margin-bottom:12px}.intelligent-form>div:not(.form-title){gap:11px}.intelligent-form input,.intelligent-form select{padding:10px;border-radius:7px}.goals{border:0;margin:4px 0 7px;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:6px 13px}.goals legend{font-size:10px;font-weight:800;color:#475071;margin-bottom:8px}.goals legend em{font-size:10px;background:none;color:#a61cc9}.goals label{margin:0;font-weight:500;font-size:10px;display:flex;align-items:center;gap:6px;color:#4e5577}.goals input,.consent input{margin:0;accent-color:#7d2baa;width:13px;height:13px;box-shadow:none}.goal-error{display:none;color:#d84b62!important;font-size:10px!important;margin:-3px 0 9px!important}.intelligent-form.goals-missing .goal-error{display:block}.intelligent-form.goals-missing .goals{outline:1px solid #e77b8b;outline-offset:5px;border-radius:3px}.consent{display:flex!important;align-items:flex-start;gap:8px;margin:13px 0 7px!important;line-height:1.35}.consent span{font-weight:500;font-size:9px}.privacy{font-size:9px;color:#747c9b;margin:0 0 14px}.privacy a{color:#5a2ca0;text-decoration:underline}.intelligent-form .btn{margin-top:1px}
.dark .intelligent-form{background:#202448;color:#fff}.dark .form-title span,.dark .goals label,.dark .goals legend{color:#d0d2e4}.dark .privacy{color:#b8bdd6}.dark .intelligent-form input,.dark .intelligent-form select{background:#171a38;color:#fff}
@media(max-width:900px){.intelligent-contact{padding:85px 0}.contact-orbit{right:0;bottom:-95px;transform:scale(.8);transform-origin:bottom right}.intelligent-form{margin-top:0}.contact-points{max-width:560px}}
@media(max-width:560px){.intelligent-contact{padding:75px 0}.contact-points p{padding:12px 0}.contact-orbit{display:none}.intelligent-form{padding:22px 18px}.goals{grid-template-columns:1fr}.intelligent-form>div:not(.form-title){grid-template-columns:1fr}}

.card{position:relative;overflow:hidden}.card>*{position:relative;z-index:1}

/* Animações autorais: fluxo, dados e escala */
.hero-art{isolation:isolate}.ai-network{position:absolute;inset:-30px -24px 0 0;background:url("assets/ai-network.svg") center/contain no-repeat;opacity:.72;z-index:-1;animation:networkFloat 9s ease-in-out infinite}.hero-art .blob{animation:blobDrift 8s ease-in-out infinite}.hero-art .blob.two{animation-delay:-4s}.console{animation:consoleFloat 5.5s ease-in-out infinite;overflow:hidden}.console::after{content:"";position:absolute;inset:-140% 38% -140% -45%;transform:rotate(20deg);background:linear-gradient(90deg,transparent,#ffffff70,transparent);animation:consoleSweep 6s ease-in-out infinite;pointer-events:none}.console-top>span::first-letter{animation:liveBlink 1.1s ease-in-out infinite}.chat p{opacity:0;animation:messageEnter .55s ease-out forwards}.chat p:nth-child(1){animation-delay:.35s}.chat p:nth-child(2){animation-delay:1.3s}.chat p:nth-child(3){animation-delay:2.25s}.chat i{animation:typingDots 1.5s ease-in-out infinite}.metric b{animation:metricGlow 2.2s ease-in-out infinite}.bars i{transform-origin:bottom;animation:barLive 1.8s ease-in-out infinite}.bars i:nth-child(2n){animation-delay:.3s}.bars i:nth-child(3n){animation-delay:.6s}.f1{animation:notificationSlide 5.5s ease-in-out infinite}.f2{padding-left:47px;animation:efficiencyPulse 3s ease-in-out infinite}.efficiency-icon{position:absolute;left:15px;top:20px;width:23px;height:23px;border-radius:8px;background:#f0e9ff;color:#732cb3;display:grid;place-items:center;font-size:15px;font-style:normal;animation:iconTick 2s steps(8) infinite}
.ticker{overflow:hidden;text-align:left;padding:0}.ticker-track{display:flex;width:max-content;will-change:transform;animation:tickerRight 28s linear infinite}.ticker-track span{display:block;white-space:nowrap;padding:17px 20px 17px 0}.ticker b{margin:0 29px}
.terminal{position:relative;overflow:hidden}.terminal::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 50%,#a61cc927,transparent 42%);animation:terminalAura 4s ease-in-out infinite;pointer-events:none}.flow{z-index:1}.flow i{animation:nodePulse 4.5s ease-in-out infinite}.flow i:nth-of-type(2){animation-delay:.8s}.flow i:nth-of-type(3){animation-delay:1.6s}.flow i:nth-of-type(4){animation-delay:2.4s}.flow u{background-size:180% 100%;animation:dataStream 2.6s linear infinite}.flow::after{content:"";position:absolute;width:10px;height:10px;border-radius:50%;background:#a8ffcf;box-shadow:0 0 15px #a8ffcf;left:17%;top:50%;transform:translateY(-50%);animation:flowPulse 4.5s linear infinite}.code{position:relative;z-index:1}.code i{animation:codeShimmer 2.8s ease-in-out infinite}.code i:nth-child(2){animation-delay:.4s}.code i:nth-child(3){animation-delay:.8s}.code i:nth-child(4){animation-delay:1.2s}
.steps article{overflow:hidden}.steps article::after{content:"";position:absolute;width:140px;height:140px;border-radius:50%;right:-90px;bottom:-90px;background:radial-gradient(circle,#a61cc94d,transparent 68%);opacity:0;transition:.4s}.steps article:hover::after{opacity:1;transform:scale(1.5)}.steps article.shown{animation:stepReveal .65s both}.steps article:nth-child(2).shown{animation-delay:.12s}.steps article:nth-child(3).shown{animation-delay:.24s}.steps article:nth-child(4).shown{animation-delay:.36s}.steps article>i{position:relative;z-index:1;transition:.3s}.steps article:hover>i{animation:stepIconPulse 1.2s ease-in-out infinite}.steps article>i span{display:block;position:relative;width:19px;height:19px}.diag-icon span{border:2px solid #fff;border-radius:50%;width:13px!important;height:13px!important}.diag-icon span::after{content:"";position:absolute;width:8px;height:2px;border-radius:2px;background:#fff;right:-6px;bottom:-3px;transform:rotate(45deg)}.solution-step-icon span{width:13px!important;height:13px!important;border:2px solid #fff;transform:rotate(45deg);margin:3px}.solution-step-icon span::after{content:"";position:absolute;width:3px;height:3px;border-radius:50%;background:#fff;left:3px;top:3px}.build-step-icon span::before,.build-step-icon span::after{content:"";position:absolute;width:8px;height:15px;border:2px solid #fff}.build-step-icon span::before{left:0;border-right:0;border-radius:5px 0 0 5px}.build-step-icon span::after{right:0;border-left:0;border-radius:0 5px 5px 0}.scale-step-icon span::before{content:"";position:absolute;width:14px;height:14px;border-top:2px solid #fff;border-right:2px solid #fff;right:1px;top:2px}.scale-step-icon span::after{content:"";position:absolute;width:2px;height:18px;background:#fff;transform:rotate(45deg);left:7px;top:1px}
.stat-card{position:relative;overflow:hidden;transition:background .3s}.stat-card:hover{background:#f2effd}.stat-card::after{content:"";position:absolute;right:-25px;bottom:-25px;width:70px;height:70px;border-radius:50%;background:#a61cc920;transform:scale(0);transition:.35s}.stat-card:hover::after{transform:scale(1)}.stat-icon{position:relative;z-index:1;width:25px;height:25px;border-radius:8px;display:grid;place-items:center;flex:none;background:#eeeafd;color:#68279c;font-size:14px;font-style:normal;animation:statIconFloat 3.5s ease-in-out infinite}.stat-card:nth-child(2) .stat-icon{animation-delay:.5s}.stat-card:nth-child(3) .stat-icon{animation-delay:1s}.stat-card:nth-child(4) .stat-icon{animation-delay:1.5s}.stat-network{color:#a61cc9}.stat-ai{font-size:20px}.stat-rocket{background:var(--g);color:#fff}.stat-vps{color:#241b6e}
@keyframes networkFloat{50%{transform:translate3d(-5px,8px,0) rotate(2deg);opacity:.92}}@keyframes blobDrift{50%{transform:translate3d(-16px,13px,0) scale(1.04)}}@keyframes consoleFloat{50%{transform:translateY(-10px)}}@keyframes consoleSweep{0%,55%,100%{transform:translateX(-135%) rotate(20deg)}75%{transform:translateX(310%) rotate(20deg)}}@keyframes liveBlink{50%{opacity:.2}}@keyframes messageEnter{from{opacity:0;transform:translateY(8px) scale(.96)}to{opacity:1;transform:none}}@keyframes typingDots{50%{opacity:.25;letter-spacing:6px}}@keyframes metricGlow{50%{filter:brightness(1.25);text-shadow:0 0 15px #a8ffcf}}@keyframes barLive{50%{transform:scaleY(.55)}}@keyframes notificationSlide{0%,10%,75%,100%{transform:translateX(0)}20%,65%{transform:translateX(9px)}}@keyframes efficiencyPulse{50%{box-shadow:0 20px 38px #2c235d38;transform:translateY(-5px)}}@keyframes iconTick{to{transform:rotate(360deg)}}@keyframes tickerRight{from{transform:translateX(-50%)}to{transform:translateX(0)}}@keyframes terminalAura{50%{transform:scale(1.22);opacity:.55}}@keyframes nodePulse{0%,100%{box-shadow:none;transform:scale(1)}50%{box-shadow:0 0 0 10px #a61cc929,0 0 24px #a61cc980;transform:scale(1.08)}}@keyframes dataStream{to{background-position:180% 0}}@keyframes flowPulse{0%{left:17%;opacity:0}8%,90%{opacity:1}100%{left:84%;opacity:0}}@keyframes codeShimmer{50%{opacity:.45;transform:translateX(18px)}}@keyframes stepReveal{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}@keyframes stepIconPulse{50%{transform:rotate(9deg) scale(1.12);box-shadow:0 0 0 11px #a61cc923}}@keyframes statIconFloat{50%{transform:translateY(-4px) rotate(8deg);box-shadow:0 8px 17px #3a257330}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important}}@media(max-width:560px){.ticker-track{animation-duration:20s}.stat-icon{width:23px;height:23px}.f2{padding-left:44px}.ai-network{opacity:.45}.flow::after{display:none}}

.float-actions a{display:flex;align-items:center;gap:7px}.float-actions a svg{width:18px;height:18px;flex:none;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}@media(max-width:560px){.float-actions a svg{width:22px;height:22px}}

/* ==========================================================================
   PÁGINA DE POLÍTICA DE PRIVACIDADE (FORMATADORA & ESTILOS DEDICADOS)
   ========================================================================== */
.privacy-page {
  background: var(--paper);
  color: var(--ink);
}
.privacy-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.privacy-back {
  padding: 10px 18px;
  font-size: 12px;
  border-radius: 50px;
  text-decoration: none;
}
.privacy-hero {
  padding: 50px 0 30px;
  background: radial-gradient(circle at 85% 20%, #f0edff 0%, transparent 35%), var(--paper);
  border-bottom: 1px solid var(--line);
}
.privacy-hero h1 {
  font-size: clamp(26px, 3.2vw, 42px) !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--ink);
}
.privacy-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 16px;
}
.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 20px;
  font-weight: 500;
}

.privacy-content {
  padding: 45px 0 90px;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.privacy-nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--soft);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.privacy-nav b {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.privacy-nav a {
  color: var(--muted);
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 0 4px 10px;
  border-left: 2px solid transparent;
  display: block;
}
.privacy-nav a:hover {
  color: #a61cc9;
  border-left-color: #a61cc9;
  transform: translateX(4px);
}

.privacy-article {
  max-width: 800px;
}
.privacy-notice {
  background: #f0edff;
  border: 1px solid #d4cbf7;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 40px;
  color: #433878;
  font-size: 13px;
  line-height: 1.6;
}
.privacy-notice span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #a61cc9;
  color: white;
  display: grid;
  place-items: center;
  font-weight: bold;
  flex: none;
  font-size: 12px;
  margin-top: 2px;
}
.privacy-notice p {
  margin: 0;
}
.privacy-article section {
  margin-bottom: 45px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.privacy-article section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.privacy-article .section-kicker {
  font-size: 12px;
  font-weight: 800;
  color: #a61cc9;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.privacy-article h2 {
  font-size: clamp(20px, 2.2vw, 26px) !important;
  line-height: 1.25 !important;
  margin-bottom: 16px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--ink);
}
.privacy-article p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}
.privacy-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--g);
  color: white !important;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 20px rgba(166, 28, 201, 0.2);
}
.privacy-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(166, 28, 201, 0.35);
}

/* Suporte ao Dark Mode na Política de Privacidade */
.dark .privacy-page {
  background: var(--paper);
  color: var(--ink);
}
.dark .privacy-header {
  background: rgba(17, 20, 49, 0.92);
}
.dark .privacy-hero {
  background: radial-gradient(circle at 85% 20%, #1e194a 0%, transparent 35%), var(--paper);
}
.dark .privacy-hero h1,
.dark .privacy-article h2 {
  color: #ffffff;
}
.dark .privacy-nav {
  background: #171a38;
  border-color: #33375c;
}
.dark .privacy-nav b {
  color: #ffffff;
}
.dark .privacy-notice {
  background: #1d1b40;
  border-color: #3b3574;
  color: #d0cbff;
}

/* Responsividade */
@media (max-width: 900px) {
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .privacy-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .privacy-nav b {
    width: 100%;
    margin-bottom: 4px;
  }
  .privacy-nav a {
    padding: 2px 0;
    border-left: 0;
  }
}

/* ==========================================
   SEÇÃO DEMONSTRAÇÃO INTERATIVA DA PLATAFORMA
   ========================================== */
.platform-demo {
  padding: 120px 0;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  font-family: inherit;
}

.tab-btn:hover {
  border-color: #8b5cf6;
  color: #7c3aed;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--g);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.demo-display {
  background: #0f172a;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  position: relative;
  min-height: 480px;
}

.tab-content {
  display: none;
  animation: tabFadeIn 0.4s ease-out forwards;
}

.tab-content.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mockup-header {
  height: 48px;
  background: #1e293b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  font-size: 12px;
  color: #94a3b8;
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.mockup-header .dot.red { background: #ef4444; }
.mockup-header .dot.yellow { background: #f59e0b; }
.mockup-header .dot.green { background: #10b981; }

.mockup-title {
  background: rgba(15, 23, 42, 0.6);
  padding: 4px 16px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 11px;
  color: #cbd5e1;
}

.mockup-badge {
  margin-left: auto;
  font-size: 11px;
  color: #10b981;
  font-weight: 700;
}

.mockup-body {
  padding: 24px;
  color: #ffffff;
}

/* KANBAN MOCKUP */
.kanban-mockup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-height: 420px;
}

.kanban-column {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 4px;
}

.col-head .badge {
  background: rgba(139, 92, 246, 0.2);
  color: #c084fc;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.kanban-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.kanban-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.4);
}

.kanban-card.highlight {
  border-color: #8b5cf6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
}

.kanban-card.win {
  border-color: #10b981;
}

.card-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  width: fit-content;
  text-transform: uppercase;
}

.tag-blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.tag-purple { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.tag-green { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.tag-orange { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.tag-emerald { background: rgba(16, 185, 129, 0.3); color: #10b981; }

.kanban-card b {
  font-size: 14px;
  color: #ffffff;
}

.kanban-card p {
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 11px;
}

.card-footer span {
  font-weight: 800;
  color: #34d399;
}

.card-footer small {
  color: #64748b;
}

/* INBOX MOCKUP */
.inbox-mockup {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  min-height: 420px;
}

.inbox-sidebar {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 18px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inbox-item {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.inbox-item.active {
  background: var(--g);
}

.inbox-item b {
  font-size: 13px;
  color: #ffffff;
}

.inbox-item small {
  font-size: 11px;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-chat {
  background: #1e293b;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  margin-bottom: 16px;
  font-size: 13px;
}

.chat-header b {
  color: #ffffff;
  font-size: 15px;
}

.chat-header span {
  color: #94a3b8;
  font-size: 12px;
}

.ai-badge {
  margin-left: auto;
  background: rgba(217, 70, 239, 0.15);
  color: #f0abfc;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(217, 70, 239, 0.3);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg {
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 80%;
  font-size: 13px;
  line-height: 1.5;
}

.msg.client {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.msg.ai {
  background: var(--g);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

/* DASHBOARD MOCKUP */
.dashboard-mockup {
  padding: 20px;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dash-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-card small {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-card b {
  font-size: 32px;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.dash-card .up {
  font-size: 12px;
  color: #34d399;
  font-weight: 700;
}

/* AUTOMAÇÕES MOCKUP */
.auto-mockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auto-row {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.auto-icon {
  font-size: 26px;
  font-style: normal;
  width: 48px;
  height: 48px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.auto-row div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.auto-row b {
  font-size: 15px;
  color: #ffffff;
}

.auto-row small {
  font-size: 12px;
  color: #94a3b8;
}

.switch-on {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   HERO AI CARD DE DESTAQUE & FLOATING CHAT WIDGET (ESTILO BLIP AI)
   ========================================================================== */
.hero-ai-card-wrap {
  margin-top: 50px;
}

.hero-ai-card {
  position: relative;
  background: linear-gradient(135deg, #0b0f2e 0%, #1e1b4b 55%, #0f172a 100%) !important;
  border: 1px solid rgba(168, 85, 247, 0.45) !important;
  border-radius: 32px !important;
  padding: 44px 48px !important;
  text-align: center !important;
  box-shadow: 0 30px 80px -15px rgba(139, 92, 246, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
  overflow: hidden !important;
}

.hero-ai-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-ai-badge {
  display: inline-block !important;
  background: rgba(168, 85, 247, 0.15) !important;
  color: #a78bfa !important;
  border: 1px solid rgba(168, 85, 247, 0.35) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  padding: 6px 20px !important;
  border-radius: 50px !important;
  margin-bottom: 18px !important;
}

.hero-ai-card-title {
  font-size: clamp(22px, 2.5vw, 32px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
  margin: 0 auto 28px !important;
  max-width: 780px !important;
  letter-spacing: -0.02em !important;
  min-height: 80px !important;
}

.typewriter-cursor {
  display: inline-block !important;
  margin-left: 4px !important;
  color: #a78bfa !important;
  font-weight: 300 !important;
  animation: cursorBlink 0.8s infinite !important;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-ai-card-input-box {
  position: relative;
  display: flex !important;
  align-items: center !important;
  background: #ffffff !important;
  border-radius: 50px !important;
  height: 64px !important;
  max-width: 680px !important;
  margin: 0 auto 20px !important;
  padding: 8px 10px 8px 28px !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-ai-card-input-box:focus-within {
  box-shadow: 0 22px 60px rgba(168, 85, 247, 0.5) !important;
  transform: translateY(-2px) !important;
}

.hero-ai-card-input-box input {
  flex: 1 !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  padding: 10px 0 !important;
  margin: 0 !important;
}

.hero-ai-card-input-box input::placeholder {
  color: #64748b !important;
}

.hero-ai-card-input-box button {
  width: 48px !important;
  height: 48px !important;
  flex: none !important;
  border: none !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  display: grid !important;
  place-items: center !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4) !important;
}

.hero-ai-card-input-box button:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6) !important;
}

.hero-ai-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px !important;
}

.ai-tag-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #e2e8f0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.ai-tag-btn:hover {
  background: #8b5cf6 !important;
  border-color: #8b5cf6 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35) !important;
}


/* WIDGET FLUTUANTE DE CHAT (BLIP CHATBOT) */
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 380px;
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #0b0f2e;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  animation: widgetSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-widget.open {
  display: flex;
}

@keyframes widgetSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-widget-header {
  background: linear-gradient(135deg, #1e1b4b, #0b0f2e);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-widget-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.chat-widget-brand b {
  font-size: 14px;
  color: #ffffff;
  display: block;
}

.chat-widget-brand small {
  font-size: 11px;
  color: #a7f3d0;
}

.chat-widget-close {
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: all 0.2s ease;
}

.chat-widget-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chat-widget-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #090d16;
}

.chat-msg {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
  animation: msgEnter 0.25s ease-out;
}

@keyframes msgEnter {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot-msg {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  border-bottom-left-radius: 4px;
}

.chat-msg.user-msg {
  align-self: flex-end;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.chat-typing-dots {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 18px;
  display: flex;
  gap: 4px;
}

.chat-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  animation: typingBlink 1.4s infinite ease-in-out both;
}

.chat-typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.chat-typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBlink {
  0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

.chat-widget-footer {
  padding: 12px;
  background: #0b0f2e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 8px;
}

.chat-widget-footer input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  outline: none;
}

.chat-widget-footer input:focus {
  border-color: #8b5cf6;
}

.chat-widget-footer button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #8b5cf6;
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.chat-widget-footer button:hover {
  background: #7c3aed;
}

@media (max-width: 600px) {
  .chat-widget {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 80px;
  }
}




