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

body {
  font-family: 'Cinzel', serif;
  background-color: #0e0e0e;
  color: #f5f5f5;
  scroll-behavior: smooth;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
              url('img/logoc.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* NAVBAR */

nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #d4af37;
  font-size: 28px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #ffffff;
}

/* HERO CONTENT */

.hero-content h2 {
  font-size: 70px;
  margin-bottom: 10px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero-content p {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 30px;
  animation: fadeIn 2s ease-in-out;
}

.btn {
  padding: 14px 35px;
  background-color: #8b0000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #b22222;
  transform: scale(1.05);
}

/* SECTIONS */

.section {
  padding: 100px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 40px;
  margin-bottom: 30px;
  color: #d4af37;
}

.section p {
  font-size: 18px;
  line-height: 1.6;
}

.dark {
  background-color: #141414;
}

/* CARDS */

.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #1c1c1c;
  padding: 25px;
  width: 260px;
  border: 1px solid #8b0000;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

/* REGRAS */

.regras {
  list-style: none;
}

.regras li {
  margin: 12px 0;
  font-size: 18px;
}

/* FOOTER */

footer {
  background: #000;
  padding: 25px;
  text-align: center;
  color: #777;
}

/* ANIMAÇÃO */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO */
/* RESPONSIVO REAL */

@media (max-width: 768px) {

  /* NAV */
  nav {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .logo {
    font-size: 22px;
  }

  /* HERO */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 20px 60px 20px;
  }

  .hero-content h2 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  /* HISTÓRIA */
  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 28px;
  }

  .section p {
    font-size: 16px;
    text-align: justify;
  }

  /* CARDS */
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

}