/* =========================================
   ZetaByte — Design System
   Dark Profissional / Lab Técnico
   ========================================= */

/* ---- Tokens ---- */
:root {
  --bg:        #08101c;
  --bg-2:      #0d1628;
  --bg-3:      #15213b;
  --blue:      #2563eb;
  --blue-dim:  rgba(37,99,235,0.14);
  --orange:    #ffb347;
  --orange-dim:rgba(255,179,71,0.12);
  --ok:        #22c55e;
  --warn:      #eab308;
  --panel:     rgba(255,255,255,0.055);
  --border:    rgba(255,255,255,0.09);
  --border-hi: rgba(255,255,255,0.18);
  --text:      rgba(255,255,255,0.88);
  --text-dim:  rgba(255,255,255,0.62);
  --radius:    12px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --dur:       0.28s;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.08), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(255,179,71,0.05), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, #09111d 38%, var(--bg) 100%);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
img, svg { display: block; }

/* ---- Background ---- */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-glow-1 {
  position: absolute;
  top: -20%;
  left: -10%;
  width: clamp(400px, 55vw, 800px);
  height: clamp(400px, 55vw, 800px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 65%);
  filter: blur(60px);
}
.bg-glow-2 {
  position: absolute;
  bottom: 0%;
  right: -10%;
  width: clamp(300px, 45vw, 650px);
  height: clamp(300px, 45vw, 650px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 65%);
  filter: blur(60px);
}
.grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ---- Layout ---- */
.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  min-width: 0;
}

section { padding-block: clamp(4rem, 8vw, 7rem); }

/* ---- Typography ---- */
h1, h2, h3 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw + 0.8rem, 4rem); color: #fff; }
h2 { font-size: clamp(1.9rem, 3.5vw + 0.4rem, 3rem); color: #fff; }
h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h3 {
  font-size: clamp(0.95rem, 1.2vw + 0.3rem, 1.1rem);
  color: #fff;
  margin-bottom: 0.7rem;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.8;
  display: block;
  margin-bottom: 1rem;
}
.eyebrow-orange { color: var(--orange); opacity: 0.8; }
.section-lead {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-dim);
  max-width: 52ch;
  margin-top: 0.75rem;
}

:focus-visible {
  outline: 2px solid rgba(59,130,246,0.8);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 300;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus-visible { top: 1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.72em 1.5em;
  cursor: pointer;
  border: none;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
  text-decoration: none;
  position: relative;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}
.btn-primary:hover {
  background: #ea6f10;
  box-shadow: 0 6px 28px rgba(249,115,22,0.45);
}

.btn-secondary {
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--blue);
}
.btn-secondary:hover {
  background: rgba(59,130,246,0.18);
  border-color: var(--blue);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-hi);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: #fff;
}

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,12,24,0.7);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(8,12,24,0.92);
  box-shadow: 0 4px 28px rgba(0,0,0,0.4);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 28px;
  width: auto;
}
.logo-img-footer {
  height: 56px;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  margin-inline: auto;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8,12,24,0.97);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
}

/* ---- Scroll Reveal ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}
[data-animate]:nth-child(2) { transition-delay: 0.08s; }
[data-animate]:nth-child(3) { transition-delay: 0.16s; }
[data-animate]:nth-child(4) { transition-delay: 0.24s; }

/* ---- Section header ---- */
.section-head { margin-bottom: 3rem; }

/* ---- Glass card ---- */
.glass-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.glass-card:hover {
  border-color: var(--border-hi);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 6px var(--ok);
  flex-shrink: 0;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 strong { color: var(--blue); }
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lab-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.08);
}
.lab-card-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.lab-card-bar .dot-r { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.lab-card-bar .dot-y { width: 10px; height: 10px; border-radius: 50%; background: #ffbd2e; }
.lab-card-bar .dot-g { width: 10px; height: 10px; border-radius: 50%; background: #28c840; }
.lab-card-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.06em;
}
.lab-card-body {
  padding: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
}
.lab-card-body .t-prompt { color: var(--blue); }
.lab-card-body .t-ok    { color: var(--ok); }
.lab-card-body .t-warn  { color: var(--warn); }
.lab-card-body .t-tag   { color: var(--orange); }
.lab-cursor {
  display: inline-block;
  width: 7px;
  height: 0.8em;
  background: var(--blue);
  vertical-align: text-bottom;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  font-family: 'JetBrains Mono', monospace;
}
.hero-badge svg { width: 12px; height: 12px; opacity: 0.6; }

/* ---- Founder card (hero photo) ---- */
.founder-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.2);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.55),
    0 0 0 1px rgba(59,130,246,0.06),
    0 0 40px rgba(59,130,246,0.07);
  background: var(--bg-2);
}
.founder-img {
  display: block;
  width: 100%;
  height: auto;
}
.founder-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(8,12,24,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 12px;
}
.founder-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
  flex-shrink: 0;
  animation: founder-pulse 2s ease-in-out infinite;
}
@keyframes founder-pulse {
  0%,100% { box-shadow: 0 0 4px var(--ok); }
  50%      { box-shadow: 0 0 12px var(--ok); }
}
.founder-badge-name {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.3;
}
.founder-badge-role {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .founder-card { max-width: 100%; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-2); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.service-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.service-card.featured {
  background: linear-gradient(145deg, rgba(249,115,22,0.07), rgba(249,115,22,0.02));
  border-color: rgba(249,115,22,0.2);
}
.service-card.featured:hover { border-color: rgba(249,115,22,0.4); }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
}
.service-icon.orange {
  color: var(--orange);
  background: var(--orange-dim);
  border-color: rgba(249,115,22,0.2);
}
.service-icon svg { width: 20px; height: 20px; }

.service-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { font-size: 1rem; color: #fff; margin-bottom: 0.5rem; }
.service-pain {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.service-card ul { margin-bottom: 1.5rem; flex: 1; }
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-block: 0.3rem;
  border-bottom: 1px solid var(--border);
}
.service-card ul li::before {
  content: '—';
  color: var(--blue);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.service-card.featured ul li::before { color: var(--orange); }
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
  margin-top: auto;
}
.card-cta:hover { gap: 0.65rem; color: #fff; }
.card-cta svg { width: 14px; height: 14px; }
.service-card.featured .card-cta { color: var(--orange); }
.service-card.featured .card-cta:hover { color: #fff; }

@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card.span-2 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card.span-2 { grid-column: auto; }
}

/* ============================================================
   PROOF (Depoimentos)
   ============================================================ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.proof-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--dur) var(--ease);
}
.proof-card:hover { border-color: var(--border-hi); }
.proof-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.25);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.proof-info { flex: 1; }
.proof-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
}
.proof-stars {
  font-size: 0.72rem;
  color: var(--warn);
  letter-spacing: 0.05em;
}
.proof-service {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.proof-text {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.proof-text strong { color: var(--text); font-weight: 500; }

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

/* ============================================================
   ABOUT STRIP (Quem está por trás)
   ============================================================ */
.about-strip {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--border);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.about-photo-wrap {
  width: clamp(180px, 28%, 280px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.18);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.45),
    0 0 32px rgba(59,130,246,0.06);
  flex-shrink: 0;
}
.about-photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  margin: 0;
}
.about-copy > p {
  color: var(--text-dim);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  max-width: 52ch;
  line-height: 1.7;
  margin: 0;
}
.about-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0.5rem 0 0;
}
.about-trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.about-trust li [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--ok);
  flex-shrink: 0;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0.5rem;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.about-cta:hover { gap: 0.7rem; color: #fff; }
.about-cta [data-lucide] { width: 15px; height: 15px; }

@media (max-width: 768px) {
  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .about-photo-wrap {
    width: clamp(160px, 50%, 240px);
    margin-inline: auto;
  }
  .about-trust li { justify-content: center; }
  .about-cta { justify-content: center; }
}

/* ============================================================
   RENOVA
   ============================================================ */
.renova { background: var(--bg-2); }
.renova-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.terminal-window {
  background: var(--bg);
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28c840; }
.terminal-title {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-left: auto;
  margin-right: auto;
}
.terminal-body {
  padding: 1.25rem;
  min-height: 240px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
}
.terminal-body p { margin: 0; }
.terminal-body .t-prompt { color: var(--blue); }
.terminal-body .t-ok     { color: var(--ok); }
.terminal-body .t-warn   { color: var(--warn); }
.terminal-body .t-tag    { color: var(--orange); }
.cursor {
  display: inline-block;
  animation: blink 1.1s step-end infinite;
  color: var(--blue);
}

.renova-copy p {
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.renova-pain {
  padding: 0.85rem 1rem;
  background: var(--orange-dim);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  color: rgba(255,255,255,0.75) !important;
  margin-bottom: 1.25rem !important;
  font-size: 0.9rem !important;
}
.renova-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.highlight svg { color: var(--blue); width: 18px; height: 18px; flex-shrink: 0; }
.highlight strong { display: block; font-size: 0.88rem; color: #fff; }
.highlight small { font-size: 0.78rem; color: var(--text-dim); }

@media (max-width: 900px) {
  .renova-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   AO VIVO
   ============================================================ */
.live-inner { text-align: center; }
.live-inner .section-head { margin-inline: auto; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%,100%{ box-shadow: 0 0 4px #ef4444; }
  50%     { box-shadow: 0 0 12px #ef4444; }
}
.social-grid {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 130px;
  aspect-ratio: 1;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.social-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.social-icon-wrap {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--blue-dim);
  border-radius: 10px;
  color: var(--blue);
}
.social-icon-wrap svg { width: 20px; height: 20px; }
.social-card span { font-size: 0.88rem; font-weight: 600; color: #fff; }
.social-card small { font-size: 0.72rem; color: var(--text-dim); }
.social-card-soon {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}
.social-card-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

.lab-shot {
  margin: 2rem auto 0;
  max-width: 720px;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--border);
}
.lab-shot-visual {
  height: 280px;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lab-shot-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.5rem;
}
.lab-shot-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
}
.lab-shot-overlay strong { color: var(--text); font-size: 0.95rem; }
.lab-shot-overlay p { font-size: 0.82rem; color: var(--text-dim); max-width: 44ch; }
.lab-shot figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
}

/* ============================================================
   CURSOS
   ============================================================ */
.courses { background: var(--bg-2); }
.courses-inner {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border-hi);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.courses-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.lock-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--orange-dim);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 12px;
  color: var(--orange);
  margin: 0 auto 1.5rem;
}
.lock-icon svg { width: 22px; height: 22px; }
.courses-inner h2 { margin-bottom: 1rem; }
.courses-inner > p {
  color: var(--text-dim);
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.access-form { max-width: 480px; margin-inline: auto; }
.access-form label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.form-row {
  display: flex;
  gap: 0.6rem;
}
.form-row input {
  flex: 1;
  min-width: 0;
  padding: 0.72em 1em;
  background: var(--bg);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--dur) var(--ease);
}
.form-row input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.form-row input::placeholder { color: var(--text-dim); }
@media (max-width: 500px) {
  .form-row { flex-direction: column; }
}

/* ============================================================
   ONDE ATENDEMOS
   ============================================================ */
.coverage { padding: clamp(4rem, 8vw, 7rem) 0; }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.coverage-city,
.coverage-cta { min-height: 100%; }
.coverage-city {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.coverage-city > div { min-width: 0; }
.coverage-city [data-lucide] {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 0.12rem;
  width: 18px;
  height: 18px;
}
.coverage-city strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}
.coverage-city small {
  display: block;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.55;
}
.coverage-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.9rem;
  background: linear-gradient(180deg, rgba(37,99,235,0.08), rgba(37,99,235,0.02));
  border: 1px dashed rgba(37,99,235,0.35);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  text-align: left;
}
.coverage-cta p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0;
  max-width: 24ch;
}
.coverage-cta .btn { align-self: flex-start; }

@media (max-width: 980px) {
  .coverage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .coverage-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(4rem, 8vw, 7rem) 0; }
.faq-list {
  width: min(860px, 100%);
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 10px 32px rgba(0,0,0,0.22);
}
.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.45;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--blue);
  display: grid;
  place-items: center;
  width: 1.5rem;
  min-width: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: -0.05rem;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.3rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-answer p {
  margin: 0;
  max-width: 70ch;
}
.faq-answer a { color: var(--blue); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.footer-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem 3rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 18rem;
}
.footer-brand .logo { margin-bottom: 0; }
.footer-tagline { font-size: 0.8rem; color: var(--text-dim); max-width: 24ch; }
.footer-note {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.56);
  line-height: 1.65;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1.5rem 2rem;
  min-width: 0;
}
.footer-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.footer-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #69a0ff;
  opacity: 0.9;
}
.footer-nav {
  display: grid;
  gap: 0.65rem 1rem;
}
.footer-nav-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.footer-nav a { font-size: 0.85rem; color: var(--text-dim); transition: color var(--dur) var(--ease); }
.footer-nav a:hover { color: #fff; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 17rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color var(--dur) var(--ease);
}
.contact-link:hover { color: #fff; }
.contact-link svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 0.12em; }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-dim);
}
.footer-bottom .t-ok { color: var(--ok); }

@media (max-width: 900px) {
  .footer-wrap { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---- Utilities ---- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   COMPLEMENTARY — classes added for new HTML structure
   ============================================================ */

/* ---- Text accent (gradient span) ---- */
.accent {
  background: linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Hero background ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: clamp(350px, 50vw, 700px);
  height: clamp(350px, 50vw, 700px);
  background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 65%);
  top: -15%;
  left: -10%;
}
.hero-orb-2 {
  width: clamp(250px, 40vw, 550px);
  height: clamp(250px, 40vw, 550px);
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%);
  bottom: 0%;
  right: -5%;
}

/* ---- Hero copy column ---- */
.hero-copy { position: relative; z-index: 1; }

/* ---- Hero lead text (alias for hero-subtitle) ---- */
.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 46ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ---- Hero CTA wrapper ---- */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ---- Hero stat separator ---- */
.hero-stat-sep {
  width: 1px;
  background: var(--border-hi);
  align-self: stretch;
}

/* ---- Circuit SVG illustration ---- */
.circuit-art {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.1);
  overflow: visible;
}

/* ---- Button variants ---- */
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hi);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}
.service-card.featured .btn-outline {
  border-color: rgba(249,115,22,0.4);
  color: var(--orange);
}
.service-card.featured .btn-outline:hover {
  background: var(--orange-dim);
  border-color: var(--orange);
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.55em 1.1em;
}

/* ---- Service badge (featured label) ---- */
.service-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 1rem;
}

/* ---- Service list ---- */
.service-list {
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-block: 0.32rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.service-list li::before {
  content: '—';
  color: var(--blue);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.08rem;
}
.service-card.featured .service-list li::before { color: var(--orange); }

/* ---- Proof card header ---- */
.proof-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.proof-header strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}
.proof-tag {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 0.1rem;
}
.proof-card > p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.proof-card > p::before {
  content: open-quote;
  color: var(--blue);
  font-size: 1.1em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 0.05em;
}
.proof-card > p::after {
  content: close-quote;
  color: var(--blue);
  font-size: 1.1em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-left: 0.05em;
}

/* ---- Renova visual (terminal column) ---- */
.renova-visual { display: flex; flex-direction: column; gap: 1.25rem; }

/* ---- Renova before/after badges ---- */
.renova-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.renova-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
}
.renova-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.renova-badge-before {
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.3);
  color: var(--warn);
}
.renova-badge-after {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--ok);
}
.renova-arrow {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dim);
  font-size: 1rem;
}

/* ---- Renova highlight item ---- */
.renova-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.renova-highlight svg {
  color: var(--blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.renova-highlight strong { display: block; font-size: 0.88rem; color: #fff; }
.renova-highlight small { font-size: 0.78rem; color: var(--text-dim); }

/* ---- Renova copy text ---- */
.renova-copy h2 { margin-bottom: 1.25rem; }
.renova-copy > p {
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Footer bottom inner ---- */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-inner p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* ---- Footer social links ---- */
.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,179,71,0.22);
  background: rgba(255,179,71,0.08);
}

/* ---- Nav highlight link ---- */
.nav-links .nav-highlight {
  color: var(--blue) !important;
  font-weight: 700;
}
.nav-links .nav-highlight:hover { color: #fff !important; }

/* ---- Live section text align ---- */
.live-inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.live-inner .section-lead { margin-inline: auto; }
.live-inner h2 { margin-bottom: 0.75rem; }

/* ---- Courses section ---- */
.courses-inner .eyebrow { display: block; margin-bottom: 1rem; }
.courses-inner h2 { margin-bottom: 1rem; }
.courses-inner > p {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================================
   ESPECIALIDADES — spec grid (10 service link cards)
   ============================================================ */
.specs {
  padding: 5rem 0;
  background: var(--bg);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
a.spec-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.4rem 1.5rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
a.spec-card:hover {
  border-color: rgba(37,99,235,0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.12);
}
.spec-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(37,99,235,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.spec-icon [data-lucide] {
  width: 20px;
  height: 20px;
}
a.spec-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
a.spec-card p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 640px) {
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-brand { max-width: 100%; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-list { min-width: 0; max-width: 100%; }
    gap: 0.75rem;
  }
  a.spec-card {
  .footer-links { grid-template-columns: 1fr; }
    padding: 1rem 1.1rem 1.2rem;
  }
  a.spec-card h3 { font-size: 0.85rem; }
  a.spec-card p { display: none; }
}
@media (max-width: 400px) {
  .spec-grid { grid-template-columns: 1fr; }
  a.spec-card p { display: block; }
}

/* ============================================================
   VISUAL REFINEMENT — 2026-04-12
   ============================================================ */

/* ---- Token additions ---- */
:root {
  --bg-card: #141c35;
}

/* ---- Typography — heavier weight + tighter tracking ---- */
h1 { font-weight: 800; letter-spacing: -0.025em; }
h2 { font-weight: 800; letter-spacing: -0.02em; }

/* ---- Hero orbs — richer atmosphere ---- */
.hero-orb-1 {
  background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, transparent 65%);
}
.hero-orb-2 {
  background: radial-gradient(circle, rgba(249,115,22,0.11) 0%, transparent 65%);
}

/* ---- Button primary — warm gradient + shimmer sweep on hover ---- */
.btn-primary {
  background: linear-gradient(135deg, #ffb800, #f97316);
  overflow: hidden;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffc520, #f88020);
  box-shadow: 0 8px 32px rgba(249,115,22,0.5);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after { left: 160%; }

/* ---- Circuit SVG — gentle float loop ---- */
@keyframes circuit-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
.circuit-art { animation: circuit-float 7s ease-in-out infinite; }

/* ---- Hamburger → X on open ---- */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Service card: stacking context + featured accent bar ---- */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card:hover {
  box-shadow: 0 18px 52px rgba(0,0,0,0.45);
}
.service-card.featured:hover {
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 18px 52px rgba(249,115,22,0.18);
}

/* ---- Service icon pulse on card hover ---- */
.service-icon {
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.service-card:hover .service-icon {
  transform: scale(1.08);
}

/* ---- Proof card — lift, glow, decorative quote mark ---- */
.proof-card {
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.proof-card::after {
  content: '\201C';
  position: absolute;
  top: -0.1rem;
  right: 1rem;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(37,99,235,0.07);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.proof-card:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.38);
}

/* ---- Coverage city hover ---- */
.coverage-city {
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.coverage-city:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-2px);
}

/* ---- Renova highlight hover ---- */
.renova-highlight {
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.renova-highlight:hover {
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

/* ---- Spec card glow ring ---- */
a.spec-card:hover {
  box-shadow: 0 8px 28px rgba(37,99,235,0.15), 0 0 0 1px rgba(37,99,235,0.3);
}

/* ---- Terminal window — cinematic scanlines ---- */
.terminal-window {
  position: relative;
  overflow: hidden;
}
.terminal-window::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 3px,
    rgba(0,0,0,0.045) 4px
  );
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

/* ---- FAQ — smooth entry animation ---- */
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-item[open] .faq-answer {
  animation: faq-in 0.22s var(--ease) forwards;
}
.faq-item:not([open]) .faq-question:hover { color: #fff; }

/* ---- Glass card deeper hover ---- */
.glass-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.38);
}

/* ---- Social icon wrap hover ---- */
.social-icon-wrap {
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.social-icon-wrap:hover {
  transform: scale(1.1);
  background: rgba(37,99,235,0.22) !important;
}

/* ---- Navbar blue tint on scroll state ---- */
.navbar.scrolled {
  border-bottom-color: rgba(37,99,235,0.2);
}

/* =============================================
   SERVICE EYEBROW
   ============================================= */
.service-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: block;
}
.service-card.featured .service-eyebrow { color: var(--orange); }

/* =============================================
   COMO FUNCIONA
   ============================================= */
.how-it-works {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head--center { text-align: center; }
.section-head--center .section-lead { max-width: 520px; margin-inline: auto; }

.step-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3.5rem;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(37,99,235,0.15);
  margin-bottom: -0.6rem;
  user-select: none;
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-dim);
  border: 1px solid rgba(37,99,235,0.25);
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
.step-icon [data-lucide] { width: 22px; height: 22px; }
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 220px;
  margin-inline: auto;
}
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,0.5), rgba(37,99,235,0.1));
  margin-top: 2rem;
  align-self: center;
}
@media (max-width: 720px) {
  .step-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  .step-connector {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, rgba(37,99,235,0.5), rgba(37,99,235,0.1));
    align-self: center;
    margin-top: 0;
  }
  .step { padding: 0; }
}

/* =============================================
   SPEC PILLS (replaces spec-grid/spec-card)
   ============================================= */
.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.spec-pill:hover {
  border-color: rgba(37,99,235,0.6);
  color: #fff;
  background: rgba(37,99,235,0.1);
  transform: translateY(-2px);
}
.spec-pill [data-lucide] { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }

/* =============================================
   PROOF GRID — 2-col max (was 3)
   ============================================= */
.proof-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(37,99,235,0.04));
  border-top: 1px solid rgba(37,99,235,0.2);
  border-bottom: 1px solid rgba(37,99,235,0.2);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.cta-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.cta-final-inner h2 {
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.cta-final-inner p {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 500px;
}
.btn-lg {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

/* =============================================
   VISUAL REFINEMENT
   ============================================= */
.section-head {
  margin-bottom: clamp(2.6rem, 4vw, 3.75rem);
}

.section-lead {
  color: rgba(255,255,255,0.68);
}

.eyebrow {
  letter-spacing: 0.16em;
  color: #69a0ff;
}

.hero-copy {
  max-width: 38rem;
}

.hero h1 {
  margin-bottom: 1.4rem;
}

.hero .accent,
.section-head .accent,
.about-copy .accent,
.cta-final .accent {
  color: var(--orange);
}

.hero-lead {
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  color: rgba(255,255,255,0.72);
  max-width: 48ch;
}

.hero-cta {
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-stats {
  gap: 1rem 1.5rem;
  width: fit-content;
  max-width: 100%;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow: 0 20px 44px rgba(0,0,0,0.22);
}

.hero-stat strong {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.hero-stat span {
  color: rgba(255,255,255,0.66);
}

.founder-card {
  max-width: 440px;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 6%;
  left: 50%;
  width: 86%;
  height: 78%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.24) 0%, rgba(37,99,235,0.1) 42%, rgba(255,179,71,0.09) 64%, transparent 80%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 1;
}

.founder-card::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 1rem;
  height: 2.4rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.16) 48%, transparent 76%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 1;
}

.founder-img {
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 28px 42px rgba(0,0,0,0.48))
    drop-shadow(0 0 26px rgba(255,179,71,0.06));
}

.founder-badge {
  z-index: 2;
  left: 50%;
  right: auto;
  bottom: 0.85rem;
  width: max-content;
  max-width: calc(100% - 2rem);
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(8,16,28,0.9), rgba(12,22,38,0.82));
  border-color: rgba(255,179,71,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.founder-badge-dot {
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255,179,71,0.55);
}

.btn {
  border-radius: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff9725);
  box-shadow: 0 10px 30px rgba(255,179,71,0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffbe57, #ff9b28);
  box-shadow: 0 14px 34px rgba(255,179,71,0.35);
}

.btn-ghost,
.btn-outline {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.1);
}

.btn-outline:hover,
.btn-ghost:hover {
  color: #fff;
}

.how-it-works {
  background: linear-gradient(180deg, rgba(12,18,34,0.9), rgba(12,18,34,0.65));
}

.step {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.85rem 1.25rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,0), rgba(37,99,235,0.55), rgba(255,179,71,0.35), rgba(255,179,71,0));
}

.step-num {
  color: rgba(255,255,255,0.08);
}

.step-icon {
  background: linear-gradient(135deg, rgba(37,99,235,0.16), rgba(255,179,71,0.08));
  border: 1px solid rgba(255,255,255,0.08);
}

.step p {
  color: rgba(255,255,255,0.68);
  max-width: 26ch;
}

.step-connector {
  background: linear-gradient(90deg, rgba(37,99,235,0.36), rgba(255,179,71,0.24));
  opacity: 0.85;
}

.services {
  background: linear-gradient(180deg, rgba(13,22,40,0.92), rgba(10,16,29,0.98));
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.062), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,0), rgba(37,99,235,0.6), rgba(255,179,71,0));
}

.service-card.featured {
  background: linear-gradient(160deg, rgba(255,179,71,0.12), rgba(255,255,255,0.04));
  border-color: rgba(255,179,71,0.24);
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
}

.service-card.featured::before {
  background: linear-gradient(90deg, rgba(255,179,71,0), rgba(255,179,71,0.8), rgba(37,99,235,0));
}

.service-eyebrow {
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
}

.service-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-pain {
  color: rgba(255,255,255,0.7);
}

.service-list li {
  border-bottom-color: rgba(255,255,255,0.06);
}

.service-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.proof {
  background: linear-gradient(180deg, rgba(255,179,71,0.03), rgba(255,255,255,0));
}

.proof-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.proof-card::after {
  color: rgba(255,179,71,0.08);
  right: 0.8rem;
}

.proof-card:hover {
  border-color: rgba(255,179,71,0.28);
  box-shadow: 0 16px 40px rgba(0,0,0,0.32);
}

.proof-avatar {
  background: linear-gradient(135deg, rgba(37,99,235,0.16), rgba(255,179,71,0.1));
  border-color: rgba(255,179,71,0.16);
  color: #fff;
}

.proof-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,179,71,0.09);
  border: 1px solid rgba(255,179,71,0.16);
  color: rgba(255,255,255,0.68);
  margin-top: 0.35rem;
}

.proof-card > p {
  color: rgba(255,255,255,0.7);
}

.proof-card > p::before,
.proof-card > p::after {
  color: rgba(255,179,71,0.85);
}

.about-strip {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}

.about-strip-inner {
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  overflow: visible;
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin-left: clamp(-0.5rem, -1vw, -1.25rem);
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 14% 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, rgba(255,179,71,0.09) 48%, transparent 76%);
  filter: blur(28px);
  pointer-events: none;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 1.25rem;
  height: 1.8rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.14) 52%, transparent 78%);
  filter: blur(10px);
  pointer-events: none;
}

.about-photo-wrap img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  filter:
    drop-shadow(0 22px 34px rgba(0,0,0,0.38))
    drop-shadow(0 0 22px rgba(255,179,71,0.04));
}

.about-copy {
  width: 100%;
  min-width: 0;
  max-width: 38rem;
  justify-self: start;
}

.about-copy > p {
  color: rgba(255,255,255,0.7);
  max-width: 36rem;
}

.about-trust {
  width: 100%;
  max-width: 36rem;
}

.about-trust li {
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.about-trust li [data-lucide] {
  color: var(--orange);
}

.about-cta {
  color: var(--orange);
}

.specs {
  background: linear-gradient(180deg, rgba(37,99,235,0.035), rgba(255,255,255,0));
}

.spec-pills {
  gap: 0.85rem;
}

.spec-pill {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border-color: rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.spec-pill:hover {
  border-color: rgba(255,179,71,0.3);
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(255,179,71,0.08));
}

.spec-pill [data-lucide] {
  color: rgba(255,255,255,0.86);
}

.coverage-city,
.coverage-cta,
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.faq-item[open] {
  border-color: rgba(255,179,71,0.16);
}

.faq-answer p {
  color: rgba(255,255,255,0.68);
}

.cta-final {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(37,99,235,0.18), transparent 52%),
    linear-gradient(135deg, rgba(13,22,40,0.95), rgba(10,16,29,0.98));
  border-top: 1px solid rgba(255,179,71,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37,99,235,0), rgba(37,99,235,0.08), rgba(255,179,71,0.06), rgba(255,179,71,0));
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

.cta-final-inner p {
  color: rgba(255,255,255,0.72);
}

.footer {
  background: linear-gradient(180deg, rgba(12,18,34,0.68), rgba(8,12,24,0.96));
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrap {
  gap: 2rem 3rem;
}

.footer-nav a,
.contact-link,
.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.footer-nav a:hover,
.contact-link:hover,
.footer-social a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  border-top-color: rgba(255,255,255,0.08);
}

/* ================================================================
   MOBILE-FIRST OVERHAUL — Breakpoints completos
   ================================================================ */

/* ---- Prevent horizontal overflow globally ---- */
html, body {
  overflow-x: hidden;
}
.container {
  overflow-x: hidden;
}

/* ================================================================
   ≤ 900px — Tablet / Large mobile
   ================================================================ */
@media (max-width: 900px) {
  /* Section padding — reduz progressivamente */
  section { padding-block: clamp(3rem, 7vw, 5rem); }

  /* Hero */
  .hero { padding-block: clamp(3rem, 7vw, 5rem); }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-copy { order: 2; }
  .hero-visual {
    order: 1;
    justify-content: center;
  }
  /* Restringe a imagem — máx 320px centrada */
  .founder-card {
    max-width: 280px;
    margin-inline: auto;
  }
  .hero-lead { max-width: 100%; margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }

  /* Services */
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ================================================================
   ≤ 768px — Mobile grande
   ================================================================ */
@media (max-width: 768px) {
  h1 { font-size: clamp(1.85rem, 6.5vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  /* Oculta <br> em títulos — text-wrap:balance faz quebra natural */
  h1 br, h2 br { display: none; }

  /* Container padding lateral */
  .container { width: min(100%, 100% - 2rem); }

  /* Hero */
  .hero { padding-block: 3rem 2rem; }
  .hero-inner { gap: 2rem; }
  .founder-card { max-width: 240px; }
  .founder-badge {
    left: 50%;
    right: auto;
    bottom: 0.3rem;
    max-width: calc(100% - 1rem);
    transform: translateX(-50%);
    padding: 0.6rem 0.85rem;
    gap: 0.55rem;
  }
  .founder-badge-name { font-size: 0.8rem; }
  .founder-badge-role { font-size: 0.58rem; }

  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    font-size: 0.9rem;
  }
  .hero-stats {
    gap: 1.25rem;
    padding-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: min(100%, 25rem);
    margin-inline: auto;
  }
  .hero-stat strong { font-size: 1.4rem; }
  .hero-stat span { font-size: 0.75rem; }
  .hero-stat-sep { display: none; }

  /* Como Funciona */
  .how-it-works { padding: 3rem 0; }
  .step h3 { font-size: 0.95rem; }
  .step p { font-size: 0.82rem; }
  .step-num { font-size: 2.8rem; }
  .step-connector { height: 24px; }
  .step { padding: 1.5rem 1rem 1.25rem; }

  /* Services */
  .services { padding-block: 3rem; }
  .service-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.5rem; }
  .service-card.featured::before { display: block; }
  .service-eyebrow { font-size: 0.6rem; margin-bottom: 0.6rem; }

  /* Proof */
  .proof { padding-block: 3rem; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }

  /* About strip */
  .about-strip { padding-block: 3rem; }
  .about-strip-inner { gap: 2rem; }
  .about-strip-inner { padding: 1.5rem 1.25rem; }
  .about-photo-wrap {
    width: clamp(160px, 48%, 230px);
    margin-left: 0;
  }
  .about-copy > p { font-size: 0.88rem; }
  .about-trust li { font-size: 0.83rem; }

  /* Specs */
  .specs { padding: 3rem 0; }
  .spec-pills { gap: 0.5rem; margin-top: 2rem; }
  .spec-pill {
    font-size: 0.78rem;
    padding: 0.5rem 0.85rem;
    gap: 0.4rem;
  }
  .spec-pill [data-lucide] { width: 13px; height: 13px; }

  /* Coverage */
  .coverage { padding: 3rem 0; }
  .coverage-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .coverage-city { padding: 1rem; }
  .coverage-city strong { font-size: 0.88rem; }
  .coverage-city small { font-size: 0.78rem; }

  /* FAQ */
  .faq { padding: 3rem 0; }
  .faq-question { font-size: 0.88rem; padding: 1rem 1rem; }
  .faq-answer { padding: 0 1rem 1rem; font-size: 0.85rem; }

  /* CTA Final */
  .cta-final { padding: 3.5rem 0; }
  .cta-final-inner { padding: 1.5rem 1.25rem; }
  .cta-final-inner h2 { font-size: clamp(1.7rem, 6vw, 2.5rem); }
  .cta-final-inner p { font-size: 0.92rem; }
  .btn-lg { font-size: 0.92rem; padding: 0.8rem 1.75rem; width: 100%; max-width: 340px; justify-content: center; }

  /* Footer */
  .footer-tagline { max-width: 100%; }
  .footer-links { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-title { font-size: 0.64rem; }
  .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
  }
  .footer-social a [data-lucide],
  .footer-social a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Section head */
  .section-head { margin-bottom: 2rem; }
  .section-lead { font-size: 0.9rem; }
  .eyebrow { font-size: 0.65rem; }
}

/* ================================================================
   ≤ 480px — Mobile pequeno / narrow
   ================================================================ */
@media (max-width: 480px) {
  h1 { font-size: clamp(1.65rem, 7.5vw, 1.9rem); }
  h2 { font-size: clamp(1.35rem, 6.5vw, 1.7rem); }
  h3 { font-size: 0.9rem; }

  .container { width: min(100%, 100% - 1.5rem); }

  /* Hero */
  .hero { padding-block: 2.5rem 2rem; }
  .founder-card { max-width: 220px; }
  .hero-stats { width: 100%; }

  /* Como Funciona */
  .step { padding: 0; }
  .step-num { font-size: 2.2rem; margin-bottom: -0.4rem; }
  .step-icon { width: 44px; height: 44px; }

  /* Services */
  .service-card { padding: 1.25rem; }
  .service-list li { font-size: 0.8rem; }

  /* Proof */
  .proof-card { padding: 1.25rem; }
  .proof-card > p { font-size: 0.83rem; }

  /* About */
  .about-photo-wrap { width: 145px; }
  .about-strip-inner {
    padding: 1.25rem 1rem;
    border-radius: 22px;
  }
  .about-trust li { padding: 0.6rem 0.75rem; }

  /* Specs pills — quebra menor em cada pill */
  .spec-pill {
    font-size: 0.72rem;
    padding: 0.45rem 0.7rem;
    max-width: calc(100vw - 3rem);
  }

  /* Coverage */
  .coverage-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { font-size: 0.85rem; padding: 0.9rem; }

  /* Footer */
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
  .footer-nav a { font-size: 0.78rem; }
  .contact-list { padding: 1rem; }
  .footer-social { gap: 0.5rem 1rem; }
  .footer-bottom-inner p { font-size: 0.64rem; }

  /* Buttons — full width empilhados */
  .hero-cta .btn,
  .btn-lg { max-width: 100%; }

  /* CTA Final */
  .cta-final { padding: 2.5rem 0; }
  .cta-final-inner {
    padding: 1.25rem 1rem;
    border-radius: 22px;
  }
}

/* ================================================================
   ≤ 360px — Telas muito pequenas
   ================================================================ */
@media (max-width: 360px) {
  .hero { padding-block: 2rem 1.75rem; }
  .founder-card { max-width: 185px; }
  .hero h1 { font-size: 1.5rem; }
  .service-card { padding: 1rem; }
  .spec-pill { font-size: 0.68rem; padding: 0.4rem 0.6rem; gap: 0.3rem; }
  .coverage-city { padding: 0.85rem; }
}


