:root {
  --bg: #07111f;
  --bg-secondary: #0c1728;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --text-soft: #a8b3c7;
  --primary: #e64b39;
  --primary-strong: #ff624f;
  --success: #22c55e;
  --warning: #f59e0b;
  --info: #3b82f6;
  --danger: #ef4444;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --sidebar-width: 280px;
  --topbar-height: 88px;
  --container-gap: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(230, 75, 57, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.12), transparent 26%),
    linear-gradient(135deg, #040b16 0%, #081220 45%, #0a1627 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.glassCard {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 6px;
}
/* =========================
   BACKGROUND CINEMATOGRÁFICO
========================= */

body.appBody {
  position: relative;
  min-height: 100vh;
  background: #0b0b0b;
  overflow-x: hidden;
}

/* IMAGEM DE FUNDO */
body.appBody::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("../assets/bg.jpg") center/cover no-repeat;

  z-index: -2;

  /* efeito premium */
  transform: scale(1.05);
  filter: blur(2px) brightness(0.6);
}

/* OVERLAY ESCURO (melhora leitura) */
body.appBody::after {
  content: "";
  position: fixed;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.9) 100%
  );

  z-index: -1;
}
body.appBody::before {
  animation: bgZoom 20s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}