@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500;700&display=swap');

:root {
  --bg: #0d0d0d;
  --text: #f2f2f2;
  --red: #a10000;
  --hover-red: #e60000;
  --dark: #1a1a1a;
  --shadow: 0 0 12px rgba(255, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Unbounded', sans-serif;
  line-height: 1.8;
}

/* Espaçamento geral */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--dark);
  z-index: 1000;
  box-shadow: var(--shadow);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

header h1 {
  color: var(--red);
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--hover-red);
}

/* Hero */
.hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #111;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border: 2px solid var(--red);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.text-box h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--red);
}

.text-box p {
  max-width: 700px;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.btn {
  padding: 12px 25px;
  background-color: var(--red);
  color: white;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
  box-shadow: var(--shadow);
}

.btn:hover {
  background-color: var(--hover-red);
}

/* Seções */
.section {
  padding: 80px 20px 80px;
  background-color: var(--bg);
}

.section.dark {
  background-color: #141414;
}

.section h2 {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 30px;
  text-align: center;
}

.section p {
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

/* Lista de Regras */
.rules-list {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto;
}

.rules-list li {
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--red);
  font-size: 1rem;
}

/* Rodapé */
footer {
  background-color: var(--dark);
  text-align: center;
  padding: 30px 20px;
  border-top: 2px solid var(--red);
  font-size: 0.95rem;
  margin-top: 60px;
}
