/* ═══════════════════════════════════════════════════════════════════
   ISP LANDING — Estilos exclusivos da landing /isp (espelha o folder)
   ═══════════════════════════════════════════════════════════════════ */

/* ───── HERO ISP ───── */
.isp-hero {
  position: relative;
  padding: var(--s-20) 0 var(--s-16);
  background: var(--bg-folder);
  color: white;
  overflow: hidden;
}
.isp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 100% 20%, rgba(255,255,255,0.20), transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(44,26,109,0.6), transparent 70%);
  pointer-events: none;
}
.isp-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.isp-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-12);
  align-items: center;
}

.isp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
  align-self: flex-start;
}

.isp-hero-copy {
  display: flex; flex-direction: column;
  gap: var(--s-5);
  align-items: flex-start;
}
.isp-hero-title {
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: white;
  margin: 0;
}
.isp-hero-title-black {
  font-weight: 900;
  letter-spacing: -0.04em;
}
.isp-hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0;
}
.isp-hero-ctas {
  display: flex; gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-3);
}
.isp-hero .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.45);
  box-shadow: none;
}
.isp-hero .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.isp-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-top: var(--s-2);
}

/* Hero visual side: digital fingerprint + cards flutuantes */
.isp-hero-visual {
  position: relative;
  height: 420px;
}
.isp-hero-fingerprint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 460px; height: 460px;
  opacity: 0.85;
  animation: ispRingPulse 8s ease-in-out infinite;
}
.isp-hero-fingerprint svg { width: 100%; height: 100%; }
@keyframes ispRingPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  50%      { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

.isp-hero-card {
  position: absolute;
  background: white;
  color: var(--fg);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 44px rgba(15,10,30,0.22), 0 6px 14px rgba(15,10,30,0.10);
  min-width: 220px;
}
.isp-hero-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--purple-100);
  color: var(--purple-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.isp-hero-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
}
.isp-hero-card-meta {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.isp-hero-card-1 { top: 30px; left: -10px; animation: ispFloat 6s ease-in-out infinite; }
.isp-hero-card-2 { bottom: 80px; right: -10px; animation: ispFloat 7s ease-in-out -2s infinite; }
.isp-hero-card-3 { bottom: 0; left: 70px; animation: ispFloat 8s ease-in-out -4s infinite; }
@keyframes ispFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 1000px) {
  .isp-hero-inner { grid-template-columns: 1fr; gap: var(--s-10); }
  .isp-hero-visual { height: 360px; }
  .isp-hero-fingerprint { width: 320px; height: 320px; }
  .isp-hero-title { font-size: 42px; }
}
@media (max-width: 640px) {
  .isp-hero-title { font-size: 34px; }
  .isp-hero-card { min-width: 0; padding: 10px 14px; }
  .isp-hero-card-1 { left: 0; }
  .isp-hero-card-2 { right: 0; }
  .isp-hero-card-3 { left: 30px; }
}

/* ───── STATS ROW ───── */
.isp-stats {
  background: var(--bg-folder-deep);
  padding: var(--s-12) 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.isp-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-6);
  align-items: end;
}
.isp-stat {
  color: white;
  text-align: left;
  padding: 0 var(--s-2);
  border-left: 2px solid rgba(255,255,255,0.18);
  padding-left: var(--s-4);
}
.isp-stat:first-child { border-left: none; padding-left: 0; }
.isp-stat-value {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.isp-stat-unit {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0;
}
.isp-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .isp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-5); }
  .isp-stat { border-left: none; padding-left: 0; }
  .isp-stat-value { font-size: 32px; }
}

/* ───── LOGOS ISP ───── */
.isp-logos {
  padding: var(--s-12) 0 var(--s-10);
  background: var(--n-25);
  border-bottom: 1px solid var(--border);
}
.isp-logos-title {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-8);
}
.logo-text-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 var(--s-5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

