/* ============================================================
   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);
}

/* ══ PERCEPÇÃO — Hero ══ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  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.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 229, 176, 0.03) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(0, 229, 176, 0.03);
  border: 1px solid rgba(0, 229, 176, 0.06);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

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

.hero-status span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green);
}

.hero-status strong {
  color: var(--text-0);
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

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

.hero-title .thin {
  font-weight: 300;
  color: var(--text-2);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-search {
  display: flex;
  gap: 0.75rem;
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.hero-search .input {
  height: 52px;
  font-size: 1rem;
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.domain-suffix {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 1rem;
  background: rgba(0, 229, 176, 0.03);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--green);
  white-space: nowrap;
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-note-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

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

.hero-proof {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 780px;
}

.proof-stat strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
}

.proof-stat strong span {
  color: var(--green);
}

.proof-stat p {
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.4;
}

/* ══ VALOR — Serviços ══ */
.services {
  background: var(--bg);
  padding: clamp(100px, 10vw, 160px) clamp(20px, 5vw, 64px);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 229, 176, 0.01) 0%, transparent 35%);
  pointer-events: none;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-decoration: none;
  display: block;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  opacity: 0;
  transition: opacity 0.28s;
}

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

.service-card:hover::after {
  opacity: 1;
}

.sc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.sc-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.sc-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

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

.sc-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-2);
}

.sc-feature svg {
  color: var(--green);
  flex-shrink: 0;
}

.sc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
}

/* ══ VALOR — Por que 3steps ══ */
.why {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(100px, 10vw, 160px) clamp(20px, 5vw, 64px);
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--r-lg);
  transition: background 0.2s;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.025);
}

.why-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.why-item-text p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.terminal {
  background: #060e0c;
  border: 1px solid var(--border-green);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 229, 176, 0.04);
}

.terminal-bar {
  background: #0b1512;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

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

.t-dot-r {
  background: #FF4D6D;
}

.t-dot-y {
  background: #F5A623;
}

.t-dot-g {
  background: var(--green);
}

.terminal-title {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-3);
  margin-left: 0.5rem;
}

.terminal-body {
  padding: 1.5rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.9;
}

.t-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.t-prompt {
  color: var(--green);
  flex-shrink: 0;
}

.t-cmd {
  color: var(--text-1);
}

.t-out {
  color: var(--text-3);
  padding-left: 1.5rem;
}

.t-ok {
  color: var(--green);
  padding-left: 1.5rem;
}

.t-info {
  color: var(--info);
  padding-left: 1.5rem;
}

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--green);
  animation: pulse 1s step-end infinite;
  vertical-align: middle;
}

/* ══ VALOR — Depoimentos ══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testi-star {
  color: var(--green);
  font-size: 0.875rem;
}

.testi-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-0);
}

.testi-role {
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* ══ AÇÃO — CTA final ══ */
.cta-section {
  text-align: center;
  padding: clamp(120px, 12vw, 180px) clamp(20px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.cta-sub {
  font-size: 1.0625rem;
  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.5rem;
}

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

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

@media (max-width: 960px) {

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-search {
    flex-direction: column;
  }

  .hero-search .btn-xl {
    width: 100%;
    justify-content: center;
  }
}