/* Campos Seg — Brand tokens */
:root {
  --bg: #0a0e0d;
  --bg-2: #0f1413;
  --panel: #131a18;
  --panel-2: #1a2321;
  --line: #1f2b28;
  --line-2: #2a3a36;
  --ink: #f3f6f4;
  --ink-dim: #a8b3b0;
  --ink-mute: #6a7773;
  --teal: #3FD9B5;
  --teal-2: #2bb696;
  --teal-glow: rgba(63, 217, 181, 0.18);
  --teal-deep: #0d3d33;
  --danger: #ff5c5c;
  --warn: #ffb347;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.font-display {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-wrap: balance;
}
.font-mono {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

/* Layout */
.container {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
}
@media (max-width: 720px) {
  .container { width: min(1280px, 100% - 32px); }
}

/* Section spacing */
section { position: relative; }
.section-pad { padding: 120px 0; }
@media (max-width: 720px) { .section-pad { padding: 72px 0; } }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--teal-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--teal);
  color: #062019;
}
.btn-primary:hover { background: #5fe7c5; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-dark {
  background: #0c1110;
  color: var(--ink);
  border-color: var(--line-2);
}

/* Cards */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
}

/* Section heading */
.h-display {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
}

/* Subtle grid background */
.grid-bg {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Concentric rings (echo of logo backdrop) */
.rings {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  border: 1px solid rgba(63,217,181,0.10);
  pointer-events: none;
}
.rings::before, .rings::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(63,217,181,0.08);
}
.rings::after { inset: 160px; border-color: rgba(63,217,181,0.06); }

/* Organic blob (the green "comma" used in the brand) */
.blob {
  position: absolute;
  width: 680px; height: 680px;
  background: radial-gradient(circle at 30% 30%, var(--teal) 0%, var(--teal-2) 35%, transparent 70%);
  filter: blur(0px);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.85;
  pointer-events: none;
}

/* Photo placeholder — silhouette / abstract */
.photo-placeholder {
  position: relative;
  background: linear-gradient(135deg, #0c1413 0%, #0a3028 100%);
  overflow: hidden;
  border-radius: 16px;
}

/* Real photo with teal duotone treatment (matches IG aesthetic) */
.photo-duotone {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0a1413;
}
.photo-duotone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
  mix-blend-mode: luminosity;
}
.photo-duotone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(63,217,181,0.55) 0%, rgba(13,61,51,0.85) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.photo-duotone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,16,14,0.85) 100%);
  z-index: 2;
}
.photo-duotone > .photo-tag,
.photo-duotone > .photo-overlay { z-index: 3; position: absolute; }

/* Less-aggressive duotone variant for hero (lets face read more) */
.photo-duotone.subtle img {
  filter: grayscale(0.6) contrast(1.05) brightness(0.78);
  mix-blend-mode: normal;
}
.photo-duotone.subtle::before {
  background: linear-gradient(180deg, rgba(63,217,181,0.28) 0%, rgba(6,16,14,0.55) 100%);
  mix-blend-mode: multiply;
}
.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
    rgba(63,217,181,0.04) 0px,
    rgba(63,217,181,0.04) 1px,
    transparent 1px,
    transparent 8px);
}
.photo-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(63,217,181,0.3);
  z-index: 2;
}

/* Sticky-ish nav */
header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  background: rgba(10, 14, 13, 0.7);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
header.nav.scrolled {
  background: rgba(10, 14, 13, 0.92);
  border-bottom-color: var(--line);
}

/* Star row */
.stars {
  display: inline-flex; gap: 2px;
  color: var(--teal);
}
.stars svg { width: 14px; height: 14px; }

/* Section divider line */
.h-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-2), transparent);
}

/* Service tile hover */
.svc-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.svc-tile:hover { border-color: var(--teal); }
.svc-tile .svc-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}

/* Form */
.input, .select, .textarea {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  color: var(--ink);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #1a2321;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-mute); }
.label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-dim);
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--teal); color: var(--ink); }
.chip.active {
  background: var(--teal);
  color: #062019;
  border-color: var(--teal);
  font-weight: 600;
}

/* Marquee strip */
.marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #080c0b;
}
.marquee-track {
  display: flex;
  gap: 56px;
  padding: 22px 0;
  animation: marquee 45s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 56px;
  text-transform: uppercase;
}
.marquee-item .dotsep {
  width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
}

/* Live monitor panel */
.monitor {
  background: linear-gradient(180deg, #0d1413 0%, #0a100f 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.monitor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(63,217,181,0.08), transparent 50%);
  pointer-events: none;
}

.kpi {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.kpi-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.kpi-value {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.kpi-trend {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--teal);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: #062019;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(63,217,181,0.35);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* Hide scrollbar nicely on horizontal scrollers */
.x-scroll::-webkit-scrollbar { height: 6px; }
.x-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
