/* Reset e estrutura geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Liberation Sans', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #202122;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Cabeçalho */
header {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

nav ul li {
  margin: 5px 15px;
}

nav ul li a {
  color: #0645ad;
  text-decoration: none;
  font-size: 1rem;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Seção introdutória */
.intro {
  text-align: center;
  margin-bottom: 30px;
}

/* Estatísticas */
.statistics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.stat-box {
  background-color: #fff;
  border: 1px solid #c8ccd1;
  padding: 20px;
  margin: 10px;
  text-align: center;
  border-radius: 8px;
  width: 300px;
}

.counter {
  font-size: 2.5rem;
  margin: 15px 0;
  color: #36c;
}

.counter-secondary {
  font-size: 2rem;
  margin: 15px 0;
  color: #36c;
}

.update-info {
  font-size: 0.9rem;
  color: #72777d;
  margin-top: 5px;
}

/* Call to action */
.cta-box {
  text-align: center;
  margin-top: 40px;
}

.cta-box a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #36c;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
}

.cta-box a:hover {
  background-color: #447ff5;
}

/* Rodapé */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8rem;
  color: #72777d;
}
