body {
  font-family: 'Fredoka One', cursive;
  background: #fefcf9;
  margin: 0;
  color: #333;
}

/* Navbar */
nav {
  background: linear-gradient(90deg, #ff9a9e, #fad0c4);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  color: white;
  font-size: 22px;
}

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

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

/* Header */
header {
  text-align: center;
  padding: 40px 20px;
  background: #fff4e6;
}

header h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #ff6f61;
}

/* Cards */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.2);
}

.card h2 {
  margin-bottom: 10px;
  color: #ff6f61;
}

/* Conteúdo */
#conteudo {
  text-align: center;
  padding: 20px;
}

#conteudo .box {
  background: #fffbe6;
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Sobre */
#sobre {
  background: #f0f8ff;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

#sobre h3 {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #ff9a9e;
  text-align: center;
  color: white;
  padding: 15px;
  margin-top: 20px;
}
