/* =============================
   RESET
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
}

/* =============================
   INTERFACE PRINCIPAL
============================= */
.interface {
  max-width: 1280px;
  margin: 0 auto;
}

/* =============================
   HEADER
============================= */
header {
  background: #111;
  padding: 15px 4%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header > .interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-width: 100px;
  height: auto;
  border-radius: 50%;
}

.menu-desktop ul {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.menu-desktop a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, border-bottom 0.3s;
}

.menu-desktop a:hover {
  color: rgb(0, 47, 255);
  border-bottom: 2px solid rgb(0, 47, 255);
}

header .botao-contato button {
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 600;
  background-color: rgb(61, 166, 236);
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

header .botao-contato button:hover {
  box-shadow: 0px 0px 8px rgb(104, 205, 218);
  background-color: rgb(30, 140, 200);
}

/* =============================
   PÁGINA INICIAL
============================= */
.inicio {
  text-align: center;
  padding: 100px 20px;
}

.inicio h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.inicio p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.inicio button {
  padding: 15px 30px;
  border-radius: 30px;
  border: none;
  background: #399ebd;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.inicio button:hover {
  background: #006685;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

/* =============================
   ÁREA DE JOGOS
============================= */
.area-jogos {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

.area-jogos .jogo1,
.area-jogos .jogo3 {
  background: #111;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.area-jogos .jogo1:hover,
.area-jogos .jogo3:hover:{
 transform: scale(1.05);
}

.area-jogos img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.area-jogos h2 {
  margin-bottom: 10px;
  font-size: 1.5em;
}

.area-jogos p {
  margin-bottom: 15px;
  font-size: 1em;
}

.area-jogos button {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  background: #399ebd;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.area-jogos button:hover {
  background: #006685;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

/* =============================
   PÁGINA SOBRE NÓS
============================= */
.sobre {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.sobre h1, .sobre h2 {
  margin-bottom: 15px;
}

.sobre p {
  margin-bottom: 20px;
  line-height: 1.5em;
}

/* =============================
   FORMULÁRIO DE CONTATO
============================= */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  background: #111;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(68, 189, 211, 0.979);
}

form label {
  color: #fff;
  font-weight: bold;
  text-align: left;
}

form input, 
form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #5552f5;
  background: #222;
  color: #fff;
  font-size: 16px;
}

form input:focus, 
form textarea:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 5px #006685;
}

form button {
  background: #055ec4;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: .3s;
}

form button:hover {
  background: #0a1b6d;
}

/* =============================
   FOOTER
============================= */
main, .sobre {
  flex: 1;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #0f0ca3;
  color: white;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
}

/* =============================
   DESTAQUE
============================= */
.em-destaque {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.destaque-card {
  position: relative;
  background: #111;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 280px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.destaque-card:hover {
  transform: scale(1.05);
}

.destaque-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.destaque-card h2 {
  margin-bottom: 10px;
  font-size: 1.8em;
}

.destaque-card p {
  margin-bottom: 15px;
  font-size: 1.2em;
}

.destaque-card button {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  background: #399ebd;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.destaque-card button:hover {
  background: #006685;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.tag-destaque {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f7b731;
  color: #000;
  padding: 5px 15px;
  font-size: 0.9em;
  font-weight: bold;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* =============================
   QUEM SOMOS
============================= */
.quem-somos {
  text-align: center;
  padding: 60px 20px;
}

.quem-somos h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.quem-somos p {
  margin-bottom: 40px;
  font-size: 1.1em;
}

.time-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.membro {
  background: #111;
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.membro:hover {
  transform: scale(1.05);
}

.membro img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.membro h3 {
  font-size: 1.3em;
  color: #fff;
}
