/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Cabeçalho */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
}

header .logo img {
  height: 50px;
}

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

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.btn-login {
  background-color: #ff6600;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Seção Hero */
.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-cta {
  background-color: #ff6600;
  padding: 15px 30px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Seção de Benefícios */
.beneficios {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.beneficios h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.beneficios-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.beneficio {
  max-width: 300px;
  text-align: center;
}

.beneficio img {
  height: 50px;
  margin-bottom: 15px;
}

.beneficio h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Seção de Jogos */
.jogos {
  padding: 50px 20px;
  text-align: center;
}

.jogos h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.jogos-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.jogo {
  max-width: 300px;
  text-align: center;
}

.jogo img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.jogo h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Seção de Depoimentos */
.depoimentos {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.depoimentos h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.depoimentos-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.depoimento {
  max-width: 300px;
  text-align: center;
}

.depoimento img {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.depoimento p {
  font-style: italic;
  margin-bottom: 10px;
}

.depoimento span {
  font-weight: bold;
}

/* Seção de Chamada Final */
.cta-final {
  padding: 50px 20px;
  text-align: center;
  background-color: #333;
  color: #fff;
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Rodapé */
footer {
  padding: 20px;
  text-align: center;
  background-color: #222;
  color: #fff;
}

footer .footer-links {
  margin-bottom: 10px;
}

footer .footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

footer .redes-sociais img {
  height: 30px;
  margin: 0 10px;
}

footer p {
  margin-top: 10px;
  font-size: 0.9rem;
}