/* =========================================================
   VibeS — Landing Page
   Padrão visual: DRM Educação / Plataforma DRM 360
   Tipografia: Montserrat
   Cores DRM: #002345 (azul institucional) | #A004D4 (roxo)
   Acento DRM 360: #00CCFF
   Gradiente VibeS: laranja → magenta → roxo → azul → ciano → verde
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --drm-azul: #002345;
  --drm-azul-2: #03386b;
  --drm-roxo: #a004d4;
  --drm-roxo-2: #6e0fbf;
  --drm-ciano: #00ccff;
  --drm-cinza-100: #f5f6fa;
  --drm-cinza-200: #e6e8ef;
  --drm-cinza-400: #9aa0b4;
  --drm-cinza-600: #5b6478;
  --drm-cinza-800: #2a3147;
  --branco: #ffffff;
  --preto: #0a0a12;
  /* --primary: var(--drm-roxo); */
  /* --whiteColor: var(--branco); */

  /* gradiente assinatura VibeS */
  --vibes-gradient: linear-gradient(
    90deg,
    #ff7a1a 0%,
    #ff2d87 22%,
    #a004d4 45%,
    #5236e8 65%,
    #00ccff 82%,
    #2bd66a 100%
  );
  --vibes-gradient-soft: linear-gradient(
    135deg,
    rgba(255, 122, 26, 0.1) 0%,
    rgba(160, 4, 212, 0.1) 50%,
    rgba(0, 204, 255, 0.1) 100%
  );

  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(0, 35, 69, 0.08);
  --shadow-md: 0 12px 32px rgba(0, 35, 69, 0.12);
  --shadow-lg: 0 24px 60px rgba(0, 35, 69, 0.18);
  --transition: 240ms cubic-bezier(0.4, 0.2, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-weight: 400;
  color: var(--drm-azul);
  background: var(--branco);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.logo-drm,
.logo-vibes {
  width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Tipografia helpers ---------- */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--drm-azul);
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--vibes-gradient-soft);
  border: 1px solid rgba(160, 4, 212, 0.18);
  color: var(--drm-roxo);
  margin-bottom: 18px;
}
.gradient-text {
  background: var(--vibes-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0, 35, 69, 0.06);
  transition:
    padding var(--transition),
    box-shadow var(--transition);
  padding: 0 15px;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-lockup img.logo-drm {
  height: 30px;
}
.brand-lockup .divider {
  width: 1px;
  height: 26px;
  background: var(--drm-cinza-200);
}
.brand-lockup img.logo-vibes {
  height: 30px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--drm-cinza-800);
}
.primary-nav a:hover {
  color: var(--drm-roxo);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
  /* white-space: nowrap; */
}
.btn-primary {
  color: #fff;
  background: var(--vibes-gradient);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow: 0 10px 24px rgba(160, 4, 212, 0.28);
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(160, 4, 212, 0.36);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--drm-azul);
  color: var(--drm-azul);
}
.btn-outline:hover {
  background: var(--drm-azul);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost-light {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--drm-azul);
}

.menu-toggle {
  display: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 160px 0 0;
  background:
    radial-gradient(
      1100px 600px at 15% 0%,
      rgba(160, 4, 212, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 100% 30%,
      rgba(0, 204, 255, 0.15) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #050a1f 0%, #0b1740 60%, #002345 100%);
  color: #fff;
  overflow: hidden;
}
/* Wave */
.wave {
  display: block;
  width: 100%;
  margin-top: 60px;
}
.wave img {
  width: 100%;
  object-fit: cover;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vibes-gradient);
  box-shadow: 0 0 12px rgba(255, 45, 135, 0.8);
}
.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}
.hero h1 .accent {
  display: inline-block;
  background: var(--vibes-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vibes-gradient);
  opacity: 0.1;
  pointer-events: none;
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
  position: relative;
}
.hero-card-header .title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.hero-card-header .badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--drm-cinza-800);
  position: relative;
  z-index: 0;
}
.hero-card-header .badge::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 999px;
  background: var(--vibes-gradient);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
}
.mini-kpi {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.mini-kpi .label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.mini-kpi .valueInfo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.mini-kpi .trend {
  font-size: 0.72rem;
  color: #2bd66a;
  margin-top: 4px;
  font-weight: 600;
}
.mini-kpi.alt .trend {
  color: #ff7a1a;
}
.mini-kpi.alt2 .valueInfo {
  background: var(--vibes-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.chart-mock {
  height: 140px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  padding: 16px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100%;
}
.chart-bars span {
  flex: 1;
  background: var(--vibes-gradient);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
  animation: barRise 1.6s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}
.chart-bars span:nth-child(1) {
  animation-delay: 0.1s;
  height: 35%;
}
.chart-bars span:nth-child(2) {
  animation-delay: 0.18s;
  height: 55%;
}
.chart-bars span:nth-child(3) {
  animation-delay: 0.26s;
  height: 42%;
}
.chart-bars span:nth-child(4) {
  animation-delay: 0.34s;
  height: 70%;
}
.chart-bars span:nth-child(5) {
  animation-delay: 0.42s;
  height: 60%;
}
.chart-bars span:nth-child(6) {
  animation-delay: 0.5s;
  height: 82%;
}
.chart-bars span:nth-child(7) {
  animation-delay: 0.58s;
  height: 90%;
}
.chart-bars span:nth-child(8) {
  animation-delay: 0.66s;
  height: 75%;
}

@keyframes barRise {
  to {
    transform: scaleY(1);
  }
}

.chat-mock {
  margin-top: 18px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 14px;
  position: relative;
}
.chat-bubble {
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 86%;
  line-height: 1.5;
  margin-bottom: 8px;
}
.chat-bubble.user {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.chat-bubble.ai {
  background: var(--vibes-gradient);
  color: #fff;
  border-bottom-left-radius: 4px;
  box-shadow: 0 8px 20px rgba(160, 4, 212, 0.25);
}
.chat-input {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-input .send {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--vibes-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
}

/* selo flutuante junto ao card */
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--drm-azul);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 700;
  animation: floatY 4s ease-in-out infinite;
}
.float-badge.fb-1 {
  top: -16px;
  left: -24px;
}
.float-badge.fb-2 {
  bottom: -16px;
  right: -16px;
  animation-delay: 1.2s;
}
.float-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vibes-gradient);
  box-shadow: 0 0 0 0 rgba(160, 4, 212, 0.6);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(160, 4, 212, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(160, 4, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(160, 4, 212, 0);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ---------- SEÇÕES BASE ---------- */
.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 18px;
}
.section-head p {
  font-size: 1.08rem;
  color: var(--drm-cinza-600);
  line-height: 1.7;
}

/* ---------- VALOR / INTRO ---------- */
.valueInfo {
  position: relative;
}
.value {
  background: var(--drm-cinza-100);
  position: relative;
  margin-top: -10px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--drm-cinza-200);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.value-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--drm-cinza-800);
  z-index: 0;
}
.value-card .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 14px;
  background: var(--vibes-gradient);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.value-card p {
  color: var(--drm-cinza-600);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ---------- COMO FUNCIONA ---------- */
.how {
  background: #fff;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--vibes-gradient);
  opacity: 0.18;
  z-index: 0;
}
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--drm-cinza-200);
  z-index: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--drm-cinza-800);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(160, 4, 212, 0.12);
  position: relative;
  z-index: 0;
}
.step .step-num::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50%;
  background: var(--vibes-gradient);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.step h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.92rem;
  color: var(--drm-cinza-600);
  line-height: 1.6;
}

/* ---------- DESTAQUE / DASHBOARD MOCK ---------- */
.spotlight {
  background:
    radial-gradient(
      700px 400px at 0% 0%,
      rgba(160, 4, 212, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 100% 100%,
      rgba(0, 204, 255, 0.1) 0%,
      transparent 60%
    ),
    #fff;
  position: relative;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.spotlight h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 22px;
}
.spotlight p.lead {
  font-size: 1.05rem;
  color: var(--drm-cinza-600);
  line-height: 1.7;
  margin-bottom: 26px;
}
.bullet-list {
  list-style: none;
  margin-bottom: 32px;
}
.bullet-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--drm-cinza-200);
}
.bullet-list li:last-child {
  border-bottom: 0;
}
.bullet-list .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--drm-cinza-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 2px;
  position: relative;
  z-index: 0;
}
.bullet-list .check::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 50%;
  background: var(--vibes-gradient);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.bullet-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--drm-azul);
}
.bullet-list p {
  font-size: 0.92rem;
  color: var(--drm-cinza-600);
  line-height: 1.55;
}

.dashboard-mock {
  background: linear-gradient(160deg, #050a1f 0%, #0d1a48 100%);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  color: #fff;
  overflow: hidden;
}
.dashboard-mock::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--vibes-gradient);
  opacity: 0.18;
  filter: blur(60px);
  border-radius: 50%;
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.dashboard-header .title {
  font-size: 0.95rem;
  font-weight: 700;
}
.dashboard-header .filters {
  display: flex;
  gap: 6px;
}
.dashboard-header .pill {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.dashboard-header .pill.active {
  background: var(--vibes-gradient);
  border-color: transparent;
  font-weight: 700;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
}
.kpi-row .kpi {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
}
.kpi .kpi-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.kpi .kpi-val {
  font-size: 1.3rem;
  font-weight: 800;
}
.kpi .kpi-trend {
  font-size: 0.72rem;
  color: #2bd66a;
  margin-top: 4px;
}

.donut-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.donut-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
}
.donut-card .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.donut {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(
    #ff2d87 0 30%,
    #a004d4 30% 60%,
    #00ccff 60% 80%,
    #2bd66a 80% 100%
  );
  position: relative;
  margin: 0 auto;
}
.donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  background: #0d1a48;
  border-radius: 50%;
}
.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}
.donut-legend span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}
.donut-legend .l1::before {
  background: #ff2d87;
}
.donut-legend .l2::before {
  background: #a004d4;
}
.donut-legend .l3::before {
  background: #00ccff;
}
.donut-legend .l4::before {
  background: #2bd66a;
}

.line-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sparkline {
  width: 100%;
  height: 80px;
}

/* ---------- USE CASES ---------- */
.cases {
  background: var(--drm-cinza-100);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border-top: 4px solid transparent;
  border-image: var(--vibes-gradient) 1;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.case-card .case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--drm-roxo);
  margin-bottom: 14px;
}
.case-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.case-card p {
  font-size: 0.95rem;
  color: var(--drm-cinza-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.case-card .case-ex {
  font-size: 0.82rem;
  background: var(--drm-cinza-100);
  border-left: 3px solid var(--drm-roxo);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  color: var(--drm-cinza-800);
  font-style: italic;
}

/* ---------- BENEFÍCIOS / RESULTADOS ---------- */
.results {
  background:
    radial-gradient(
      800px 500px at 20% 100%,
      rgba(160, 4, 212, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 100% 0%,
      rgba(0, 204, 255, 0.15) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #002345 0%, #03386b 100%);
  color: #fff;
}
.results h2 {
  color: #fff;
}
.results .section-head p {
  color: rgba(255, 255, 255, 0.78);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px 18px;
  backdrop-filter: blur(10px);
}
.metric .num {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 900;
  background: var(--vibes-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.metric .lbl {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ---------- INTEGRAÇÃO / ECOSSISTEMA ---------- */
.eco {
  background: #fff;
}
.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eco-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-center,
.eco-node {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  color: var(--drm-azul);
  border: 2px solid var(--drm-cinza-200);
}
.eco-center {
  width: 130px;
  height: 130px;
  color: #fff;
  font-size: 1rem;
  border: 0;
  z-index: 2;
  background: var(--vibes-gradient);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow: 0 10px 24px rgba(160, 4, 212, 0.28);
}
.eco-node {
  width: 92px;
  height: 92px;
}
.eco-node.n1 {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}
.eco-node.n2 {
  top: 30%;
  right: 6%;
}
.eco-node.n3 {
  bottom: 6%;
  right: 22%;
}
.eco-node.n4 {
  bottom: 6%;
  left: 22%;
}
.eco-node.n5 {
  top: 30%;
  left: 6%;
}
.eco-orbit {
  position: absolute;
  border: 1.5px dashed var(--drm-cinza-200);
  border-radius: 50%;
  animation: orbit 30s linear infinite;
}
.eco-orbit.o1 {
  width: 320px;
  height: 320px;
}
.eco-orbit.o2 {
  width: 420px;
  height: 420px;
  animation-duration: 50s;
  animation-direction: reverse;
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--drm-cinza-100);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--drm-cinza-200);
  overflow: hidden;
  transition:
    box-shadow var(--transition),
    border-color var(--transition);
}
.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--drm-azul);
  text-align: left;
}
.faq-q .ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--drm-cinza-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q .ico {
  background: #fff;
  color: var(--drm-cinza-800);
  transform: rotate(45deg);
  position: relative;
  z-index: 0;
}
.faq-item.open .faq-q .ico::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 50%;
  background: var(--vibes-gradient);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition),
    padding var(--transition);
  padding: 0 26px;
  color: var(--drm-cinza-600);
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 26px 22px;
}

/* ---------- CTA / FORMULÁRIO ---------- */
.contact {
  background:
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(160, 4, 212, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 0% 100%,
      rgba(0, 204, 255, 0.22) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #002345 0%, #050a1f 100%);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact h2 {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 18px;
}
.contact p.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-item .ci-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
  line-height: 1;
}

.contact-info-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 38px;
}
#warningLabelContainer {
  color: red;
  font-size: 13px;
  margin-top: 10px;
  font-family: "Montserrat";
}
#warningLabelContainer p {
  margin: 0 !important;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--drm-ciano);
  background: rgba(255, 255, 255, 0.12);
}
.form-group select {
  color: rgba(255, 255, 255, 0.85);
}
.form-group select option {
  color: #000;
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px 24px;
  font-size: 1rem;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-check input {
  margin-top: 3px;
}
.form-check a {
  color: var(--drm-ciano);
  text-decoration: underline;
}
.field-error {
  opacity: 0;
  color: red;
  font-size: 12px;
  margin-top: 4px;
}
/* ---------- FOOTER ---------- */
footer {
  background: #000d17;
  color: #9fbccb;
  padding: 48px 0 30px;
  font-size: 14px;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
footer a {
  color: #9fbccb;
  transition: color 0.15s;
}
footer a:hover {
  color: var(--brand);
}
.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.foot-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #6b8a99;
}
.foot-logo img {
  height: 46px;
  width: auto;
}
/* ---------- ANIMAÇÕES DE ENTRADA ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1030px) {
  .primary-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--drm-cinza-100);
  }
  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--drm-azul);
    position: relative;
  }
  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--drm-azul);
  }
  .menu-toggle span::before {
    top: -6px;
  }
  .menu-toggle span::after {
    top: 6px;
  }
  .primary-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--drm-cinza-200);
  }
  .primary-nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--drm-cinza-200);
    width: 100%;
  }
  .primary-nav.open .btn {
    margin-top: 12px;
  }
  .hero {
    padding: 130px 0 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .value-grid,
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
  .spotlight-grid,
  .eco-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .eco-visual {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p.lead {
    font-size: 1rem;
  }
  /*  */
  .value-grid,
  .cases-grid,
  .steps,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 26px 22px;
  }
  .float-badge.fb-1 {
    left: -10px;
    top: -12px;
    font-size: 0.72rem;
    padding: 8px 12px;
  }
  .float-badge.fb-2 {
    right: -10px;
    bottom: -12px;
    font-size: 0.72rem;
    padding: 8px 12px;
  }
  .brand-lockup img.logo-drm {
    height: 26px;
  }
  .brand-lockup img.logo-vibes {
    height: 26px;
  }
  .brand-lockup .divider {
    height: 22px;
  }
}
