/* Fonte personalizada */
@font-face {
  font-family: 'Supercell';
  src: url('../fonts/supercellheadline-heavy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: 'Supercell', sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* HEADER */
header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 40px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 20;
}

/* LOGO */
.logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.logo img {
  height: auto;
  width: auto;
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
}

/* MENU (DESKTOP) */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #757575;
}

/* BOTÃO HAMBÚRGUER (MOBILE) */
.menu-toggle {
  display: none;
  position: absolute;
  right: 30px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #222;
  user-select: none;
  z-index: 30;
}

/* MENU MOBILE FULLSCREEN */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 25;
}

.mobile-menu.active {
  transform: translateY(0);
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  user-select: none;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  background: url('../img/arenacrheader.png') no-repeat center;
  background-size: contain;
  width: 120px;
  height: 50px;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  text-decoration: none;
  color: #111;
  font-size: 1.8rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  user-select: none;
}

.mobile-menu a:hover {
  color: #0075e2;
}

/* CONTEÚDO PRINCIPAL */
main {
  text-align: center;
  padding: 100px 20px;
}

main h1 {
  font-size: 3rem;
  color: #0075e2;
  margin-bottom: 20px;
}

main p {
  font-size: 1.1rem;
  color: #0075e2;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* HERO SECTION */
.hero{
  position: relative;
  width: 100%;
  height: 500px;
  background: url('/img/clanwarsleve.webp') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero2 {
  position: relative;
  width: 100%;
  height: 500px;
  background: url('/img/torcida.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::before, .hero2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content, .hero2 .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1, .hero2 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p, .hero2 p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn, .hero2 .btn {
  display: inline-block;
  background: #0075e2;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hero .btn:hover, .hero2 .btn:hover {
  background: #005bb5;
}

/* SEÇÃO BRANCA */
.white-section {
  background: #fff;
  padding: 120px 20px 80px; /* espaçamento interno */
  overflow: hidden;         /* garante que nada “vaze” para fora */
}

.white-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.white-content h2 {
  font-size: 2.5rem;
  color: #0075e2;
  margin-bottom: 20px;
}

.white-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.white-content .btn {
  display: inline-block;
  background: #0075e2;
  color: #fff;
  padding: 12px 25px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.white-content .btn:hover {
  background: #005bb5;
}

/* SEÇÃO AZUL */
.blue-section {
  background: #0075e2;
  padding: 120px 20px; /* aumentada 1,5x */
  color: #fff;
  text-align: center;
}

.blue-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.blue-section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* RESPONSIVO - celular */
@media (max-width: 768px) {
  .hero h1, .hero2 h1 {
    font-size: 2rem;
  }

  .hero p, .hero2 p {
    font-size: 1rem;
  }

  .white-content h2, .blue-section h2 {
    font-size: 2rem;
  }

  .white-content p, .blue-section p {
    font-size: 1rem;
  }
  .white-section {
    padding: 140px 20px 60px; /* mais espaçamento no topo para celular */
  }
}
.arena-text, p {
  max-width: 800px;      /* limita a largura para leitura confortável */
  margin: 0 auto 40px;   /* centraliza horizontalmente e dá espaçamento abaixo */
  text-align: justify;    /* justifica o texto */
  line-height: 1.8;      /* aumenta o espaçamento entre linhas para facilitar leitura */
  font-size: 1.1rem;     /* tamanho de fonte agradável */
        /* cor do texto, pode ajustar */
  padding: 0 20px;       /* espaçamento interno nas laterais */
}
.hero-content .btn {
  display: inline-block;
  background: #f5ad05;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

#login-btn {
  background: #f5ad05;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

#login-btn:hover {
  background: #e09400;
}
.hero-content .btn:hover {
  background: rgb(170, 119, 1);
}
/* RESPONSIVIDADE MENU E LOGO */
@media (max-width: 900px) {
  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    max-height: 55px;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-height: 45px;
    max-width: 120px;
  }

  .mobile-menu a {
    font-size: 1.5rem;
  }
}