@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {

  --dark-bg: #0F0F0F;
  --card-bg: #161616;
  --card-support: #212129;
  --primary-purple: #8a55ff;
  --primary-purple-light: rgba(138, 85, 255, 0.15);
  --yellow: #ffcd00;
  --text-white: #ffffff;
  --text-gray: #b5b5c3;

  --support-color: #ffcd00;
  --moderator-color: #2ecc71;
  --admin-color: #ff4d4d;
  --gerente-color: #e74c3c; 
  --diretor-color: #cc2ecc; 

  --border-radius: 12px;
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;

  --font-main: 'Montserrat', sans-serif;
  --font-size-title: 28px;
  --font-size-subtitle: 16px;
  --font-size-body: 14px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  scrollbar-width: thin;
  scrollbar-color: var(--primary-purple) var(--card-bg);
}

body {
  background-color: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(22, 22, 22, 0.8);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #8a55ff, #6f46db);
  border-radius: 10px;
  border: 2px solid var(--card-bg);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #9a65ff, #8056eb);
  box-shadow: 0 0 8px rgba(138, 85, 255, 0.4);
}

::-webkit-scrollbar-corner {
  background: var(--card-bg);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-weight: 700;
  color: var(--text-white);
}

p {
  margin-bottom: 1em;
  font-size: var(--font-size-body);
  color: var(--text-gray);
}

a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--text-white);
}

.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;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

@media (max-width: 768px) {
  :root {
    --font-size-title: 24px;
    --font-size-subtitle: 14px;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-title: 24px;
    --font-size-subtitle: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-title: 20px;
    --font-size-subtitle: 13px;
    --font-size-body: 13px;
  }
}