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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #020817;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 75% 15%, rgba(20, 241, 217, 0.08), transparent 34%),
    radial-gradient(circle at 20% 70%, rgba(37, 99, 235, 0.12), transparent 35%),
    linear-gradient(180deg, #020817 0%, #030b1d 48%, #020817 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 70%, transparent);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 115px 0;
  position: relative;
  z-index: 2;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(2, 8, 23, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: .3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  transition: .25s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  transition: .3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #14f1d9);
  color: #fff;
  box-shadow: 0 0 24px rgba(20, 241, 217, 0.18);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 34px rgba(20, 241, 217, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.13);
  color: #fff;
  background: rgba(255,255,255,0.035);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.large {
  padding: 17px 32px;
  font-size: 16px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 86px;
}

.badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(20, 241, 217, 0.08);
  border: 1px solid rgba(20, 241, 217, 0.16);
  color: #14f1d9;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -2.4px;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-card {
  width: 100%;
  max-width: 520px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 0 60px rgba(20,241,217,0.06);
  position: relative;
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top right, rgba(20,241,217,.13), transparent 36%);
  pointer-events: none;
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.dashboard-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.chat-box {
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 18px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.user {
  background: rgba(255,255,255,0.05);
  color: #e5e7eb;
}

.ai {
  background: linear-gradient(135deg, rgba(29,78,216,0.18), rgba(20,241,217,0.10));
  border: 1px solid rgba(20,241,217,0.12);
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.metric-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.05);
  transition: .3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20,241,217,.18);
}

.metric-card h3 {
  font-size: 30px;
  margin-bottom: 8px;
}

.metric-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.4;
}

.section-title {
  text-align: center;
  margin-bottom: 68px;
}

.section-title.left {
  text-align: left;
  margin-bottom: 28px;
}

.section-title span,
.mini-title {
  color: #14f1d9;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.section-title h2,
.demo-box h2,
.final-box h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-top: 18px;
  line-height: 1.12;
  letter-spacing: -1.4px;
}

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

.info-card {
  padding: 34px;
  border-radius: 24px;
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.055);
  transition: .3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,241,217,0.2);
  background: rgba(255,255,255,0.046);
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #14f1d9;
  filter: drop-shadow(0 0 12px rgba(20, 241, 217, 0.22));
}

.icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-delay {
  color: #38bdf8;
}

.icon-messages {
  color: #14f1d9;
}

.icon-loss {
  color: #22d3ee;
}

.icon-team {
  color: #60a5fa;
}

.info-card h3 {
  margin-bottom: 16px;
  font-size: 21px;
}

.info-card p,
.section-text,
.demo-box p,
.final-box p,
.step-card p {
  color: #94a3b8;
  line-height: 1.7;
}

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

.section-text {
  font-size: 18px;
  max-width: 560px;
}

.benefits {
  display: grid;
  gap: 18px;
}

.benefit-item {
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 700;
}

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

.step-card {
  padding: 38px;
  border-radius: 24px;
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.055);
}

.step-card h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d4ed8, #14f1d9);
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(20,241,217,.16);
}

.demo-box,
.final-box {
  padding: 78px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(29,78,216,0.14), rgba(20,241,217,0.065));
  border: 1px solid rgba(20,241,217,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.demo-box::before,
.final-box::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(20,241,217,.08);
  filter: blur(90px);
  top: -150px;
  right: -120px;
}

.demo-box > *,
.final-box > * {
  position: relative;
  z-index: 1;
}

.demo-box p,
.final-box p {
  max-width: 760px;
  margin: 24px auto 40px;
  font-size: 18px;
}

.center {
  justify-content: center;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255,255,255,0.055);
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer h3 {
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.footer p,
.footer a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  pointer-events: none;
}

.glow-1 {
  width: 420px;
  height: 420px;
  background: #14f1d9;
  top: -120px;
  right: -120px;
  opacity: .10;
  animation: glowPulse 7s ease-in-out infinite;
}

.glow-2 {
  width: 340px;
  height: 340px;
  background: #2563eb;
  bottom: -120px;
  left: -120px;
  opacity: .10;
  animation: glowPulse 9s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay {
  transition-delay: .12s;
}

@keyframes glowPulse {
  0% { transform: scale(1); opacity: .08; }
  50% { transform: scale(1.08); opacity: .14; }
  100% { transform: scale(1); opacity: .08; }
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@media(max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .solution-grid,
  .cards-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 170px;
    text-align: center;
  }

  .hero p,
  .section-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .dashboard-card {
    margin: 0 auto;
  }

  .section-title.left {
    text-align: center;
  }

  .cards-grid {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media(max-width: 768px) {
  .nav {
    padding: 10px 18px;
  }

  .logo img {
    height: 34px;
  }

  .nav-buttons .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero {
    padding-top: 140px;
  }

  .section {
    padding: 88px 0;
  }

  .hero h1 {
    letter-spacing: -1.2px;
  }

  .large {
    width: 100%;
    max-width: 340px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .demo-box,
  .final-box {
    padding: 48px 26px;
  }

  .footer-content,
  .footer-links {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    gap: 12px;
  }
}

@media(max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .nav {
    gap: 10px;
  }

  .nav-buttons {
    display: flex;
    gap: 8px;
  }

  .nav-buttons .btn {
    padding: 9px 11px;
    font-size: 12px;
  }

  .nav-buttons .btn-secondary {
    display: inline-flex;
  }

  .logo img {
    height: 36px;
  }

  .hero {
    padding-top: 122px;
  }

  .hero p {
    font-size: 18px;
  }

  .dashboard-card {
    padding: 22px;
  }

  .info-card,
  .step-card {
    padding: 28px;
  }
}


/* ===== Premium depth layers ===== */

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.8) 0 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
}

.depth-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(70px);
  opacity: .12;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(20,241,217,.34), transparent 62%);
  top: 18%;
  right: -180px;
}

.orb-2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(29,78,216,.35), transparent 64%);
  top: 48%;
  left: -190px;
}

.orb-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(20,241,217,.18), transparent 68%);
  bottom: 8%;
  right: 15%;
}

.section::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,241,217,.10), transparent);
  pointer-events: none;
}

/* ===== Premium hover polish ===== */

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #1d4ed8, #14f1d9);
  transition: width .28s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  will-change: transform;
}

.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(20,241,217,.08);
}

/* ===== Platform / social proof section ===== */

.platform-section {
  padding-top: 95px;
}

.platform-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.proof-stats div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
}

.proof-stats strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -.5px;
}

.proof-stats span {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.45;
}

.platform-mockup {
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(20,241,217,.13), transparent 34%),
    rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 28px 90px rgba(0,0,0,.25), 0 0 70px rgba(20,241,217,.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mockup-header {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.mockup-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-panel {
  min-height: 130px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(5,13,31,.62);
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}

.mockup-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(20,241,217,.05);
  filter: blur(32px);
}

.mockup-panel.wide {
  grid-column: span 2;
}

.panel-label {
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 18px;
  font-weight: 700;
}

.mockup-panel strong {
  font-size: 26px;
  letter-spacing: -.8px;
}

.mini-bars {
  display: grid;
  gap: 10px;
}

.mini-bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29,78,216,.95), rgba(20,241,217,.9));
  box-shadow: 0 0 18px rgba(20,241,217,.12);
}

.flow-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 110px;
}

.flow-node {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.flow-node.active {
  color: #14f1d9;
  border-color: rgba(20,241,217,.18);
}

.flow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(29,78,216,.2), rgba(20,241,217,.75));
}

/* ===== Final CTA distinct ===== */

.final-cta-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
  padding: 72px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 25%, rgba(20,241,217,.16), transparent 32%),
    linear-gradient(135deg, rgba(29,78,216,.16), rgba(255,255,255,.025));
  border: 1px solid rgba(20,241,217,.13);
  box-shadow: 0 28px 100px rgba(0,0,0,.25);
  overflow: hidden;
  position: relative;
}

.final-cta-split::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, #1d4ed8, #14f1d9, transparent);
}

.final-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  margin: 18px 0 20px;
  letter-spacing: -1.6px;
}

.final-copy p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 34px;
}

.final-mini-dashboard {
  padding: 32px;
  border-radius: 26px;
  background: rgba(2,8,23,.52);
  border: 1px solid rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #14f1d9;
  box-shadow: 0 0 0 0 rgba(20,241,217,.45);
  margin-bottom: 26px;
  animation: pulseDot 2s infinite;
}

.final-mini-dashboard h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.final-mini-dashboard p {
  color: #94a3b8;
  line-height: 1.7;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(20,241,217,.38); }
  70% { box-shadow: 0 0 0 16px rgba(20,241,217,0); }
  100% { box-shadow: 0 0 0 0 rgba(20,241,217,0); }
}

/* ===== Footer upgrade ===== */

.footer {
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, 86vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(20,241,217,.38), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  align-items: flex-start;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 390px;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h4 {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  transition: color .25s ease;
}

.footer-column a:hover {
  color: #14f1d9;
}

@media(max-width: 1024px) {
  .platform-grid,
  .final-cta-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    gap: 42px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-column {
    justify-items: center;
  }
}

@media(max-width: 768px) {
  .proof-stats,
  .mockup-grid {
    grid-template-columns: 1fr;
  }

  .mockup-panel.wide {
    grid-column: span 1;
  }

  .flow-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-line {
    width: 1px;
    min-height: 22px;
    margin: 0 auto;
  }

  .final-cta-split {
    padding: 46px 26px;
  }
}


/* ===== V15 Operação Inteligente refinement ===== */

/* Remove o padrão pontilhado repetitivo e deixa apenas profundidade suave */
.noise-layer {
  opacity: .018;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.55) 0 1px, transparent 1.4px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 58%, transparent);
}

.platform-section {
  background:
    radial-gradient(circle at 78% 30%, rgba(20,241,217,.075), transparent 32%),
    radial-gradient(circle at 20% 55%, rgba(29,78,216,.085), transparent 34%);
}

.platform-section .section-title h2 {
  font-size: clamp(32px, 3.45vw, 42px);
  line-height: 1.08;
  letter-spacing: -1.3px;
}

.platform-section .section-text {
  font-size: 17px;
  max-width: 540px;
}

.proof-stats {
  gap: 16px;
  margin-top: 38px;
}

.proof-stats div {
  padding: 26px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.026));
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 18px 44px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
}

.proof-stats div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, #1d4ed8, #14f1d9);
  opacity: .7;
}

.proof-stats small {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #14f1d9;
  font-size: 18px;
  filter: drop-shadow(0 0 8px rgba(0,255,220,.14));
}

.proof-stats strong {
  font-size: 26px;
  line-height: 1.08;
}

.proof-stats span {
  display: block;
  margin-top: 8px;
  color: #9aa7bb;
  font-size: 14px;
}

.platform-mockup {
  padding: 22px 24px 24px;
  background:
    radial-gradient(circle at 85% 8%, rgba(20,241,217,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.026));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mockup-header {
  margin-bottom: 18px;
}

.mockup-panel {
  background: rgba(5,13,31,.54);
  border: 1px solid rgba(255,255,255,.075);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mockup-panel.wide:first-child {
  min-height: 128px;
  padding-top: 26px;
}

.mockup-panel p {
  color: #94a3b8;
  margin-top: 8px;
  font-size: 13px;
}

.mini-bars span {
  transform-origin: left;
  animation: growBar 4.8s ease-in-out infinite;
}

.mini-bars span:nth-child(2) {
  animation-delay: .35s;
}

.mini-bars span:nth-child(3) {
  animation-delay: .7s;
}

.flow-line {
  position: relative;
  overflow: hidden;
}

.flow-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(20,241,217,.95), transparent);
  animation: flowMove 2.8s ease-in-out infinite;
}

.flow-node.active {
  box-shadow: 0 0 24px rgba(20,241,217,.08);
}

@keyframes growBar {
  0% { transform: scaleX(.72); opacity: .72; }
  45% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(.72); opacity: .72; }
}

@keyframes flowMove {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(260%); }
}

@media(max-width: 768px) {
  .platform-section .section-title h2 {
    font-size: 34px;
  }
}


/* ===== V16 refinamento operacional ===== */

/* Glow extremamente sutil atrás da headline */
.platform-section .section-title {
  position: relative;
}

.platform-section .section-title::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -120px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,241,217,.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

/* Mini cards mais luxuosos e altos */
.proof-stats div {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 24px 26px;
}

.proof-stats strong {
  margin-top: 2px;
  font-size: 28px;
}

.proof-stats span {
  margin-top: 12px;
  line-height: 1.55;
}

/* Dashboard mais vivo */
.platform-mockup {
  position: relative;
  overflow: hidden;
}

.platform-mockup::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(20,241,217,.06);
  filter: blur(70px);
  animation: ambientGlow 8s ease-in-out infinite;
}

.mockup-grid {
  margin-top: -4px;
}

/* Painel superior mais forte */
.mockup-panel.wide:first-child {
  min-height: 146px;
  padding-top: 22px;
  padding-bottom: 18px;
}

.mini-bars {
  margin-top: 6px;
}

.mini-bars span {
  height: 11px;
  box-shadow:
    0 0 18px rgba(20,241,217,.10),
    0 0 34px rgba(20,241,217,.05);
}

/* Números com fade sutil */
.mockup-panel strong {
  animation: statFade 4.5s ease-in-out infinite;
}

/* Fluxo mais premium */
.flow-line::after {
  width: 52%;
  opacity: .95;
  filter: blur(.4px);
}

/* Glow respirando */
@keyframes ambientGlow {
  0% {
    transform: translateY(0px) scale(1);
    opacity: .55;
  }

  50% {
    transform: translateY(14px) scale(1.08);
    opacity: .95;
  }

  100% {
    transform: translateY(0px) scale(1);
    opacity: .55;
  }
}

/* Fade das métricas */
@keyframes statFade {
  0% {
    opacity: .72;
    transform: translateY(2px);
  }

  50% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: .72;
    transform: translateY(2px);
  }
}

@media(max-width: 768px) {
  .proof-stats div {
    min-height: 142px;
  }
}


/* ===== V17 KPIs horizontais premium ===== */

.proof-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 38px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.026);
  border: 1px solid rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.proof-stats div {
  min-height: unset;
  flex: 1;
  padding: 0 22px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-areas:
    "icon value"
    "icon label";
  column-gap: 12px;
  align-items: center;
  position: relative;
}

.proof-stats div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.13), transparent);
}

.proof-stats div::before {
  display: none;
}

.proof-stats small {
  grid-area: icon;
  width: 28px;
  height: 28px;
  margin: 0;
  font-size: 17px;
  color: #14f1d9;
  filter: drop-shadow(0 0 8px rgba(0,255,220,.12));
}

.proof-stats strong {
  grid-area: value;
  margin: 0;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.7px;
  white-space: nowrap;
}

.proof-stats span {
  grid-area: label;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.25;
  color: #94a3b8;
  white-space: nowrap;
}

.platform-section .section-text {
  margin-bottom: 0;
}

@media(max-width: 768px) {
  .proof-stats {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
  }

  .proof-stats div {
    padding: 0;
  }

  .proof-stats div:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
  }

  .proof-stats span,
  .proof-stats strong {
    white-space: normal;
  }
}


/* ===== V18 refinamento KPIs ===== */

.proof-stats {
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

.proof-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, rgba(29,78,216,.85), rgba(20,241,217,.95), transparent);
  opacity: .72;
}

.proof-stats div:not(:last-child)::after {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255,255,255,.18),
    transparent
  );
}

.proof-stats strong {
  font-size: 24px;
}

.proof-stats span {
  margin-top: 5px;
}

/* Ajuste do card Instantâneo */
.mockup-panel strong {
  font-size: 24px;
}

.mockup-panel:nth-child(3) strong {
  font-size: 22px;
  letter-spacing: -0.6px;
}

/* Dashboard mais vivo */
.flow-line {
  overflow: hidden;
}

.flow-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(29,78,216,.25),
    rgba(20,241,217,.55),
    rgba(29,78,216,.25)
  );
  opacity: .45;
}

.flow-line::after {
  width: 56%;
  opacity: .98;
  filter: blur(.25px);
  animation: flowMove 2.2s linear infinite;
}

.platform-mockup {
  box-shadow:
    0 28px 90px rgba(0,0,0,.28),
    0 0 70px rgba(20,241,217,.04),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* Barras mais orgânicas */
.mini-bars span {
  animation: growBar 4.2s ease-in-out infinite;
}

.mini-bars span:nth-child(2) {
  animation-delay: .25s;
}

.mini-bars span:nth-child(3) {
  animation-delay: .5s;
}

@media(max-width: 768px) {
  .proof-stats {
    padding: 24px 22px;
  }
}


/* ===== V19 Footer premium refinement ===== */

.footer {
  padding: 62px 0;
  background:
    radial-gradient(circle at 10% 100%, rgba(20,241,217,.055), transparent 28%),
    linear-gradient(180deg, rgba(2,8,23,0), rgba(2,8,23,.28));
  overflow: hidden;
}

.footer::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(20,241,217,.07);
  filter: blur(80px);
  pointer-events: none;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 22px;
  background: transparent;
  filter: drop-shadow(0 0 14px rgba(20,241,217,.06));
}

.footer-brand p {
  max-width: 420px;
  font-size: 16px;
  color: #a3afc2;
}

.footer-column {
  gap: 14px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: -.2px;
}

.footer-column a {
  position: relative;
  width: fit-content;
  color: #94a3b8;
  transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #1d4ed8, #14f1d9);
  box-shadow: 0 0 10px rgba(20,241,217,.28);
  transition: width .28s ease;
}

.footer-column a:hover {
  color: #14f1d9;
  transform: translateX(2px);
  text-shadow: 0 0 14px rgba(20,241,217,.18);
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-contact a {
  color: #a3afc2;
}

@media(max-width: 1024px) {
  .footer-column a {
    width: auto;
  }
}


/* ===== V20 CTA premium animation ===== */

.final-cta-split {
  animation: ctaFadeUp 1.1s cubic-bezier(.22,1,.36,1);
}

.final-cta-split::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(20,241,217,.08);
  filter: blur(90px);
  animation: ctaGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.final-copy {
  position: relative;
  z-index: 2;
}

.final-copy h2,
.final-copy p,
.final-copy .hero-buttons {
  animation: contentFadeUp .9s cubic-bezier(.22,1,.36,1);
}

.final-copy p {
  animation-delay: .12s;
}

.final-copy .hero-buttons {
  animation-delay: .24s;
}

.final-copy h2,
.final-copy p,
.final-copy .hero-buttons {
  animation-fill-mode: both;
}

.final-mini-dashboard {
  position: relative;
  animation: dashboardFloat 6s ease-in-out infinite;
}

.final-mini-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(20,241,217,.10),
    transparent 40%
  );
  opacity: .7;
  pointer-events: none;
}

.final-mini-dashboard:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 50px rgba(20,241,217,.06),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.final-copy .btn-primary {
  animation: subtleButtonPulse 4.5s ease-in-out infinite;
  box-shadow:
    0 12px 34px rgba(20,241,217,.12),
    0 0 0 rgba(20,241,217,0);
}

.final-copy .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 44px rgba(20,241,217,.18),
    0 0 28px rgba(20,241,217,.10);
}

@keyframes ctaFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaGlowPulse {
  0% {
    opacity: .42;
    transform: scale(1);
  }

  50% {
    opacity: .88;
    transform: scale(1.08);
  }

  100% {
    opacity: .42;
    transform: scale(1);
  }
}

@keyframes dashboardFloat {
  0% {
    transform: translateY(0px);
  }

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

  100% {
    transform: translateY(0px);
  }
}

@keyframes subtleButtonPulse {
  0% {
    box-shadow:
      0 12px 34px rgba(20,241,217,.10),
      0 0 0 rgba(20,241,217,0);
  }

  50% {
    box-shadow:
      0 16px 40px rgba(20,241,217,.18),
      0 0 26px rgba(20,241,217,.08);
  }

  100% {
    box-shadow:
      0 12px 34px rgba(20,241,217,.10),
      0 0 0 rgba(20,241,217,0);
  }
}


/* ===== V22 Mobile Premium Optimization + Favicons ===== */

/* Header refinado para desktop/tablet */
.mobile-menu-toggle,
.mobile-drawer {
  display: none;
}

.header {
  box-shadow: 0 1px 0 rgba(255,255,255,.035);
}

.nav {
  min-height: 62px;
}

/* Melhor leitura mobile no hero */
@media(max-width: 1024px) {
  .hero-grid {
    gap: 56px;
  }

  .hero h1 {
    font-size: clamp(38px, 8vw, 52px);
    line-height: 1.04;
  }

  .hero p {
    font-size: 18px;
    max-width: 620px;
  }
}

/* Mobile premium real */
@media(max-width: 860px) {
  body.menu-open {
    overflow: hidden;
  }

  .header {
    background: rgba(2, 8, 23, .74) !important;
  }

  .nav {
    min-height: 58px;
    padding: 8px 18px;
  }

  .logo img {
    height: 34px;
    max-width: 190px;
  }

  .nav-links {
    display: none;
  }

  .desktop-instagram {
    display: none;
  }

  .nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .nav-buttons .btn-primary {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 12px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    cursor: pointer;
    transition: .28s ease;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    transition: .28s ease;
  }

  .mobile-menu-toggle:hover {
    border-color: rgba(20,241,217,.22);
    box-shadow: 0 0 22px rgba(20,241,217,.08);
  }

  body.menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-drawer {
    position: fixed;
    top: 66px;
    left: 18px;
    right: 18px;
    z-index: 999;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 80% 0%, rgba(20,241,217,.10), transparent 38%),
      rgba(2, 8, 23, .92);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 24px 80px rgba(0,0,0,.42), 0 0 50px rgba(20,241,217,.04);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transition: opacity .28s ease, transform .28s ease;
  }

  body.menu-open .mobile-drawer {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-drawer a {
    text-decoration: none;
    color: #dbeafe;
    font-weight: 700;
    padding: 13px 14px;
    border-radius: 14px;
    transition: .25s ease;
  }

  .mobile-drawer > a:hover {
    color: #14f1d9;
    background: rgba(255,255,255,.045);
  }

  .mobile-drawer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.07);
  }

  .mobile-drawer-actions .btn {
    width: 100%;
    padding: 13px 12px;
    font-size: 14px;
  }

  .hero {
    padding-top: 126px;
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero-content {
    max-width: 620px;
    margin: 0 auto;
  }

  .badge {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.8vw, 48px);
    line-height: 1.05;
    letter-spacing: -1.7px;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.62;
    margin-bottom: 30px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .large {
    padding: 15px 22px;
    max-width: 340px;
  }

  .dashboard-card {
    max-width: 520px;
    padding: 24px;
    border-radius: 24px;
    animation-duration: 8s;
  }

  .chat-box {
    padding: 16px;
    font-size: 14px;
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .section-title h2,
  .demo-box h2,
  .final-box h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .cards-grid,
  .steps-grid {
    gap: 16px;
  }

  .info-card,
  .step-card {
    padding: 28px;
  }

  .platform-grid {
    gap: 38px;
  }

  .platform-section .section-title h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .proof-stats {
    margin-top: 28px;
  }

  .platform-mockup {
    padding: 18px;
    border-radius: 24px;
  }

  .mockup-panel {
    min-height: auto;
    padding: 18px;
  }

  .final-cta-split {
    padding: 42px 24px;
    border-radius: 28px;
  }

  .final-copy h2 {
    font-size: clamp(31px, 8.5vw, 42px);
  }

  .final-copy p {
    font-size: 16px;
  }

  .final-mini-dashboard {
    padding: 26px;
  }
}

@media(max-width: 520px) {
  .container {
    padding: 0 18px;
  }

  .nav {
    padding: 8px 14px;
  }

  .logo img {
    height: 31px;
    max-width: 170px;
  }

  .nav-buttons .btn-primary {
    padding: 9px 13px;
    font-size: 12px;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .mobile-drawer {
    top: 62px;
    left: 12px;
    right: 12px;
  }

  .mobile-drawer-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(34px, 11.5vw, 42px);
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .dashboard-card {
    padding: 20px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .steps-grid,
  .solution-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .proof-stats {
    border-radius: 22px;
  }

  .proof-stats div {
    grid-template-columns: 26px 1fr;
  }

  .proof-stats strong {
    font-size: 21px;
  }

  .proof-stats span {
    white-space: normal;
  }

  .flow-node {
    text-align: center;
  }

  .demo-box,
  .final-box,
  .final-cta-split {
    padding: 38px 22px;
  }

  .footer {
    padding: 52px 0;
  }

  .footer-brand img {
    height: 32px;
  }
}

/* Redução de movimento para acessibilidade/performance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* ===== V23 Mobile Header Fix ===== */

@media(max-width: 860px) {

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
  }

  .logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo img {
    width: auto;
    max-width: 170px;
    height: 30px;
    object-fit: contain;
  }

  .nav-buttons {
    flex-shrink: 0;
    gap: 8px;
  }

  .desktop-instagram {
    display: none !important;
  }

  .nav-buttons .btn-primary {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 12px;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .mobile-drawer {
    top: 68px;
  }
}

@media(max-width: 520px) {

  .nav {
    padding: 8px 12px;
  }

  .logo img {
    max-width: 150px;
    height: 28px;
  }

  .nav-buttons {
    gap: 6px;
  }

  .nav-buttons .btn-primary {
    padding: 9px 12px;
    font-size: 11px;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }
}


/* ===== V24 Instagram Mobile Fix ===== */

@media(max-width: 860px) {

  /* Volta Instagram no mobile em formato compacto */
  .desktop-instagram {
    display: inline-flex !important;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    font-size: 0;
    position: relative;
    overflow: hidden;
  }

  /* Ícone visual minimalista */
  .desktop-instagram::before {
    content: "◎";
    font-size: 16px;
    font-weight: 700;
    color: white;
  }

  .nav-buttons {
    gap: 6px;
  }

  .nav-buttons .btn-primary {
    padding: 9px 12px;
    font-size: 11px;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }
}

@media(max-width: 520px) {

  .logo img {
    max-width: 138px;
    height: 26px;
  }

  .desktop-instagram {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .desktop-instagram::before {
    font-size: 14px;
  }

  .nav-buttons {
    gap: 5px;
  }
}


/* ===== V25 Mobile icon-only buttons ===== */

@media(max-width: 860px) {

  .nav-buttons {
    gap: 7px;
  }

  .nav-buttons .btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0 !important;
    border-radius: 14px;
    font-size: 0 !important;
    position: relative;
    overflow: hidden;
  }

  .nav-buttons .btn-primary::before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: currentColor;
    color: #ffffff;
    -webkit-mask:
      radial-gradient(circle at 50% 50%, transparent 0 5px, #000 5.4px 8px, transparent 8.4px) center/18px 18px no-repeat,
      linear-gradient(#000 0 0) 12px 12px/5px 5px no-repeat;
    mask:
      radial-gradient(circle at 50% 50%, transparent 0 5px, #000 5.4px 8px, transparent 8.4px) center/18px 18px no-repeat,
      linear-gradient(#000 0 0) 12px 12px/5px 5px no-repeat;
  }

  .desktop-instagram {
    display: inline-flex !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    padding: 0 !important;
  }

  .desktop-instagram::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    display: block;
    position: relative;
    box-sizing: border-box;
  }

  .desktop-instagram::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .desktop-instagram {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }
}

@media(max-width: 520px) {

  .logo img {
    max-width: 145px;
    height: 27px;
  }

  .nav-buttons .btn,
  .desktop-instagram,
  .mobile-menu-toggle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
    border-radius: 13px;
  }

  .nav-buttons {
    gap: 6px;
  }
}

@media(min-width: 861px) {
  .nav-buttons .btn {
    font-size: inherit;
  }
}


/* ===== V26 Use Baseon Branding + Premium refinement ===== */

.logo {
  gap: 8px;
}

.logo .brand-use {
  order: -1;
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 800;
  color: #14f1d9;
  opacity: .72;
  line-height: 1;
  transform: translateY(1px);
  text-shadow: 0 0 12px rgba(20,241,217,.12);
}

.nav-links {
  gap: 22px;
}

.nav-links a {
  white-space: nowrap;
}

.proof-stats {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.proof-stats::before {
  opacity: .78 !important;
  width: 168px !important;
  background: linear-gradient(90deg, rgba(29,78,216,.9), rgba(20,241,217,.95), transparent) !important;
  box-shadow: 0 0 14px rgba(20,241,217,.10);
}

.proof-stats div:not(:last-child)::after {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.20), transparent) !important;
}

.mockup-panel:nth-child(3) strong {
  font-size: 20px !important;
  letter-spacing: -0.4px !important;
  opacity: .92;
}

.final-copy p,
.section-text {
  color: #a3afc2;
}

.footer {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

.footer-brand img {
  background: transparent !important;
}

.footer-name {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
  color: #ffffff;
  margin: -8px 0 14px;
}

.footer-brand p {
  max-width: 440px;
}

.footer-column a {
  position: relative;
  transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #1d4ed8, #14f1d9);
  box-shadow: 0 0 10px rgba(20,241,217,.28);
  transition: width .28s ease;
}

.footer-column a:hover {
  color: #14f1d9 !important;
  transform: translateX(2px);
  text-shadow: 0 0 14px rgba(20,241,217,.16);
}

.footer-column a:hover::after {
  width: 100%;
}

@media(max-width: 860px) {
  .logo {
    gap: 5px;
  }

  .logo .brand-use {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
}

@media(max-width: 520px) {
  .logo .brand-use {
    display: none;
  }
}


/* ===== V27 New Use Baseon Logo ===== */

.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.footer-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo .brand-use {
  display: none !important;
}

/* Mobile */
@media(max-width: 860px) {
  .logo img {
    height: 34px;
  }
}

@media(max-width: 520px) {
  .logo img {
    height: 30px;
  }
}


/* ===== V28 Logo USE BASEON Final ===== */

.logo .brand-use {
  display: none !important;
}

.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.footer-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: transparent !important;
}

.nav-links a {
  white-space: nowrap;
}

@media(max-width: 860px) {
  .logo img {
    height: 32px;
    max-width: 178px;
  }
}

@media(max-width: 520px) {
  .logo img {
    height: 28px;
    max-width: 150px;
  }
}

/* garantir botões mobile icon-only sem espremer */
@media(max-width: 860px) {
  .nav-buttons .btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0 !important;
    font-size: 0 !important;
    border-radius: 14px;
  }

  .desktop-instagram {
    display: inline-flex !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}


/* ===== V29 Logo proportional scaling fix ===== */

/* HEADER */
.logo img{
    height: 58px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
}

/* FOOTER */
.footer-brand img{
    height: 72px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
}

/* Melhor alinhamento visual */
.logo{
    display:flex;
    align-items:center;
}

.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

/* Tablet */
@media(max-width: 1024px){
    .logo img{
        height: 50px !important;
    }

    .footer-brand img{
        height: 62px !important;
    }
}

/* Mobile */
@media(max-width: 860px){
    .logo img{
        height: 40px !important;
    }

    .footer-brand img{
        height: 54px !important;
    }
}

/* Mobile pequeno */
@media(max-width: 520px){
    .logo img{
        height: 34px !important;
    }

    .footer-brand img{
        height: 48px !important;
    }
}


/* ===== V30 Logo proportional premium refinement ===== */

/* Header: logo maior, mas sem pesar a navbar */
.nav {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  padding-left: 18px !important;
}

.logo img {
  height: 46px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

/* Reforço visual do USE quando vier dentro/ao lado da marca */
.logo .brand-use {
  font-weight: 900 !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  opacity: .86 !important;
}

/* Footer: logo com presença proporcional */
.footer-brand img {
  width: 205px !important;
  height: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  margin-bottom: 24px !important;
}

.footer-grid {
  column-gap: 100px !important;
}

/* Tablet */
@media(max-width: 1024px) {
  .nav {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .logo img {
    height: 40px !important;
  }

  .footer-brand img {
    width: 190px !important;
  }

  .footer-grid {
    column-gap: 80px !important;
  }
}

/* Mobile */
@media(max-width: 860px) {
  .nav {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 14px !important;
  }

  .logo img {
    height: 34px !important;
  }

  .footer-brand img {
    width: 180px !important;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile pequeno */
@media(max-width: 520px) {
  .logo img {
    height: 32px !important;
  }

  .footer-brand img {
    width: 170px !important;
  }
}


/* ===== V31 Footer logo premium presence ===== */

.footer-grid {
  grid-template-columns: 40% 25% 25% !important;
  column-gap: 90px !important;
  align-items: flex-start !important;
}

.footer-brand {
  position: relative;
  max-width: 520px;
}

.footer-brand::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -48px;
  width: 360px;
  height: 220px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(20,241,217,.075), transparent 62%),
    radial-gradient(circle at 25% 60%, rgba(29,78,216,.085), transparent 58%);
  filter: blur(58px);
  pointer-events: none;
  z-index: -1;
}

.footer-brand img {
  width: 300px !important;
  height: auto !important;
  max-width: 320px !important;
  min-width: 260px !important;
  object-fit: contain !important;
  margin-bottom: 24px !important;
  filter: drop-shadow(0 0 18px rgba(20,241,217,.08));
}

.footer-brand p {
  font-size: 18px !important;
  line-height: 1.7 !important;
  max-width: 470px !important;
  color: #aab6c8 !important;
}

/* Tablet */
@media(max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 40px !important;
  }

  .footer-brand {
    margin: 0 auto;
    text-align: center;
  }

  .footer-brand img {
    width: 280px !important;
    max-width: 300px !important;
    min-width: 0 !important;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand::before {
    left: 50%;
    transform: translateX(-50%);
    top: -44px;
  }
}

/* Mobile */
@media(max-width: 640px) {
  .footer-brand img {
    width: 240px !important;
    max-width: 86vw !important;
  }

  .footer-brand p {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }
}


/* ===== V32 Header logo final — Use Baseon ===== */

.logo img {
  height: 50px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 10px rgba(20,241,217,.06));
}

.header {
  background: rgba(2, 8, 23, 0.78) !important;
  border-bottom-color: rgba(20,241,217,.08) !important;
}

.nav {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  padding-left: 18px !important;
}

/* Mantém coerência cromática com o novo logo */
.btn-primary {
  background: linear-gradient(135deg, #1168f3, #17d8c9) !important;
  box-shadow: 0 0 28px rgba(20,241,217,.18) !important;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(20,241,217,.30) !important;
}

.badge,
.section-title span,
.mini-title {
  color: #18ead6 !important;
}

.footer-brand img {
  width: 315px !important;
  max-width: 340px !important;
  min-width: 280px !important;
  height: auto !important;
  filter: drop-shadow(0 0 18px rgba(20,241,217,.10));
}

/* Tablet */
@media(max-width: 1024px) {
  .logo img {
    height: 44px !important;
  }

  .footer-brand img {
    width: 285px !important;
    min-width: 0 !important;
  }
}

/* Mobile */
@media(max-width: 860px) {
  .logo img {
    height: 36px !important;
    max-width: 190px !important;
  }

  .nav {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .footer-brand img {
    width: 250px !important;
    max-width: 86vw !important;
  }
}

/* Mobile pequeno */
@media(max-width: 520px) {
  .logo img {
    height: 31px !important;
    max-width: 155px !important;
  }

  .footer-brand img {
    width: 230px !important;
  }
}


/* ===== V33 Header logo refinement ===== */

.logo {
  gap: 0 !important;
  margin-right: -10px !important;
}

.logo img {
  height: 45px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  margin-right: -14px !important;
}

/* Tablet */
@media(max-width: 1024px){
  .logo img{
    height: 40px !important;
    margin-right: -10px !important;
  }
}

/* Mobile */
@media(max-width: 860px){
  .logo img{
    height: 34px !important;
    margin-right: -8px !important;
  }
}

/* Mobile pequeno */
@media(max-width: 520px){
  .logo img{
    height: 31px !important;
    margin-right: -6px !important;
  }
}


/* ===== V34 Header proportional final adjustment ===== */

.nav {
  align-items: center !important;
  gap: 30px !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  margin-right: 24px !important;
  flex-shrink: 0 !important;
}

.logo img {
  height: 43px !important;
  width: auto !important;
  max-width: 275px !important;
  object-fit: contain !important;
  object-position: center !important;
  margin-right: 0 !important;
  transform: translateY(0);
}

.nav-links {
  margin-left: 0 !important;
  gap: 24px !important;
  align-items: center !important;
}

.nav-links a {
  white-space: nowrap !important;
  line-height: 1 !important;
}

/* Mantém botões da direita intactos */
.nav-buttons .btn {
  flex-shrink: 0 !important;
}

/* Tablet */
@media(max-width: 1024px) {
  .logo {
    margin-right: 18px !important;
  }

  .logo img {
    height: 40px !important;
    max-width: 255px !important;
  }

  .nav {
    gap: 24px !important;
  }
}

/* Mobile */
@media(max-width: 860px) {
  .logo {
    margin-right: 0 !important;
  }

  .logo img {
    height: 34px !important;
    max-width: 170px !important;
  }

  .nav {
    gap: 10px !important;
  }
}

/* Mobile pequeno */
@media(max-width: 520px) {
  .logo img {
    height: 31px !important;
    max-width: 145px !important;
  }
}
