/* ============================================================
   3STEPS — SHARED STYLES
   Design System aplicado
   ============================================================ */



:root {
  --green: #27e094;
  --green-dark: #22c480;
  --green-dim: rgba(0, 229, 176, 0.05);
  --green-glow: rgba(0, 229, 176, 0.06);
  --bg: #0A0F0D;
  --bg-card: #111813;
  --bg-card2: #141a17;
  --border: rgba(255, 255, 255, 0.07);
  --border-green: rgba(0, 229, 176, 0.14);
  --text-0: #FFFFFF;
  --text-1: #E2EDE9;
  --text-2: #9DB3AC;
  --text-3: #5A7068;
  --warn: #F5A623;
  --error: #FF4D6D;
  --info: #58A6FF;

  --font: 'Sora', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 32px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: var(--border) solid 1px;
}

.nav-logo-img {
  height: 20px;
  width: auto;
  display: block;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-0);
  text-decoration: none;
  letter-spacing: -0.04em;
}

.nav-logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-0);
}

.nav-links a.active {
  color: var(--green);
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1.125rem;
  height: 36px;
}

.btn-md {
  font-size: 0.9375rem;
  padding: 0.7rem 1.5rem;
  height: 44px;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.875rem 2rem;
  height: 52px;
}

.btn-xl {
  font-size: 1.0625rem;
  padding: 1rem 2.5rem;
  height: 58px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  color: #071210;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0, 229, 176, 0.08);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 229, 176, 0.09);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text-0);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--border-green);
}

.btn-outline:hover {
  background: var(--green-dim);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  letter-spacing: 0.01em;
}

.badge-green {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid var(--border-green);
}

.badge-neutral {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-2);
  border: 1px solid var(--border);
}

.badge-warn {
  background: rgba(245, 166, 35, 0.1);
  color: var(--warn);
  border: 1px solid rgba(245, 166, 35, 0.28);
}

/* ── SECTION ── */
section {
  padding: clamp(100px, 10vw, 160px) clamp(20px, 5vw, 64px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 540px;
}

/* ── CARD ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all 0.28s var(--ease);
}

.card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0, 229, 176, 0.05);
}

/* ── ICON BOX ── */
.icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--r-lg);
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg {
  color: var(--green);
}

/* ── CHECKLIST ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}

.check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── INPUT ── */
.input {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text-0);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0 1rem;
  height: 48px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}

.input::placeholder {
  color: var(--text-3);
}

.input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 229, 176, 0.04);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem clamp(20px, 5vw, 64px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.04em;
}

.footer-logo span {
  color: var(--green);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links a:hover {
  color: var(--text-1);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-3);
  font-family: var(--mono);
}

/* ── DIVIDER ── */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100vh);
  }
}

.anim-1 {
  animation: fadeUp 0.7s var(--ease) 0.05s both;
}

.anim-2 {
  animation: fadeUp 0.7s var(--ease) 0.18s both;
}

.anim-3 {
  animation: fadeUp 0.7s var(--ease) 0.31s both;
}

.anim-4 {
  animation: fadeUp 0.7s var(--ease) 0.44s both;
}

.anim-5 {
  animation: fadeUp 0.7s var(--ease) 0.57s both;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-hide {
    display: none;
  }
}

/* ── EM BREVE ── */
.em-breve-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-3, #5A7068);
  vertical-align: middle;
  margin-left: 0.5rem;
}

.nav-links li.nav-soon a {
  color: var(--text-3, #5A7068);
  pointer-events: none;
  cursor: default;
}

.service-card-soon {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.service-card-soon .sc-link {
  display: none;
}

.service-card-soon .sc-link-soon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-3, #5A7068);
}

/* ══ P — PERCEPÇÃO
   Estratégia: dados técnicos ao vivo como prova antes do copy.
   Visitante vê "ONLINE 99.9%" antes de ler qualquer argumento. ══ */
.hero {
  padding: 140px clamp(20px, 5vw, 64px) 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 229, 176, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.045em;
  line-height: 1.07;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--green);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-micro {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-3);
}

.hero-micro span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-micro svg {
  color: var(--green);
}

/* painel de métricas ao vivo */
.metrics-panel {
  background: #060e0c;
  border: 1px solid var(--border-green);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 229, 176, 0.05);
}

.metrics-top {
  background: #0b1512;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.m-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.metrics-top-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--green);
  margin-left: 0.5rem;
}

.metrics-top-time {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-3);
}

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

.metric-box {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.metric-box:nth-child(even) {
  border-right: none;
}

.metric-box:nth-last-child(-n+2) {
  border-bottom: none;
}

.metric-val {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-3);
}

.metric-sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
  margin-top: 0.2rem;
  opacity: 0.65;
}

.uptime-bar-section {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.uptime-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 0.625rem;
  font-family: var(--mono);
}

.uptime-bar-label span:last-child {
  color: var(--green);
}

.uptime-bar {
  display: flex;
  gap: 3px;
}

.uptime-seg {
  height: 20px;
  flex: 1;
  border-radius: 2px;
  background: var(--green);
  opacity: 0.8;
}

.uptime-seg.partial {
  background: var(--warn);
  opacity: 0.7;
}

/* specs */
.specs-section {
  padding: clamp(100px, 10vw, 160px) clamp(20px, 5vw, 64px);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

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

.spec-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.spec-card:hover {
  border-color: var(--border-green);
}

.spec-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
  font-family: var(--mono);
}

.spec-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 0.25rem;
}

.spec-desc {
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* como funciona */
.how-section {
  padding: clamp(100px, 10vw, 160px) clamp(20px, 5vw, 64px);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.25;
  pointer-events: none;
}

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

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-green);
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* planos */
.plans-section {
  padding: clamp(100px, 10vw, 160px) clamp(20px, 5vw, 64px);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.plan-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: all 0.28s var(--ease);
}

.plan-card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 229, 176, 0.04);
}

.plan-card.featured {
  border-color: var(--border-green);
  box-shadow: 0 0 0 1px rgba(0, 229, 176, 0.05), 0 20px 60px rgba(0, 229, 176, 0.05);
  background: var(--bg-card2);
}

.plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: #071210;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.plan-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 0.375rem;
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}

.plan-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-price sup {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
  color: var(--text-2);
}

.plan-price-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 1.75rem;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-2);
}

.plan-feature svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-feature.muted {
  color: var(--text-3);
}

.plan-feature.muted svg {
  color: var(--text-3);
  opacity: 0.35;
}

/* cta */
.cta-section {
  text-align: center;
  padding: clamp(120px, 12vw, 180px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(0, 229, 176, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.cta-sub {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cta-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-note svg {
  color: var(--green);
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .plans-grid,
  .steps-grid,
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }
}