* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  background-color: #fff;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
  color: #003366;
}
.logo span {
  color: #009999;
}
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
.hero {
  background: url('img/bg-hero.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 20px;
  text-align: left;
  position: relative;
}

.hero .container {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  color: white;
}

.hero h1 span {
  color: #00a3a0; /* azul-esverdeado do "360" */
}

.hero h2 {
  font-size: 20px;
  margin: 20px 0 40px;
  color: #f0f0f0;
  font-weight: normal;
}

.btn {
  background-color: #00a3a0;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #008b88;
}

.cards {
  padding: 40px 20px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}
.card {
  background-color: #EAEBED;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.card img {
  width: 40px;
  margin-bottom: 10px;
}

.conteudo {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.grid-3cols {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  gap: 40px;
}

/* Indicadores */
.indicadores {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.indicador {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}
.indicador h3 {
  font-size: 32px;
  color: #003366;
}

/* Cursos e eventos */
.eventos h2 {
  margin-bottom: 20px;
}
.card-evento {
  background: white;
  padding: 16px;
  border-left: 4px solid #003366;
  margin-bottom: 20px;
}
.btn-inscrever {
  display: inline-block;
  background-color: #003366;
  color: white;
  padding: 6px 12px;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 4px;
}
.card-imagem {
  background: white;
  text-align: center;
  padding: 10px;
}
.card-imagem img {
  max-width: 100%;
  border-radius: 8px;
}

/* Notícias */
.noticias h2, .noticias h3 {
  margin-bottom: 10px;
}
.noticias ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.noticias li {
  margin-bottom: 15px;
}
.noticias a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}
