/* Reset */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom right, #ffe6f0, #ffd1e8);
  color: #5a2a4f;
}

/* Cabeçalho */
header {
  position: relative;
  background: #fcb6d4;
  padding: 10px;
  border-bottom: 4px solid #e98ab3;
  text-align: center;
}

.banner {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(200, 80, 140, 0.3);
}

/* Botão hamburguer */
.hamburguer {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffe6f0;
  border: 2px solid #e98ab3;
  border-radius: 8px;
  font-size: 1.5em;
  padding: 5px 10px;
  cursor: pointer;
  color: #a63d85;
}

/* Menu lateral */
.menu {
  position: fixed;
  left: -250px;
  top: 0;
  width: 220px;
  height: 100%;
  background: #fff0f6;
  border-right: 4px solid #e98ab3;
  box-shadow: 2px 0px 15px rgba(180, 60, 110, 0.3);
  padding-top: 20px;
  transition: 0.3s;
  z-index: 1000;
}

.menu nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.menu nav a {
  margin: 10px 0;
  text-decoration: none;
  font-weight: bold;
  color: #7b3069;
  background: #ffe6f0;
  border: 2px solid #e98ab3;
  border-radius: 12px;
  padding: 8px 12px;
  transition: 0.3s;
}

.menu nav a:hover {
  background: #fcb6d4;
  color: #fff;
}

.menu .fechar {
  background: none;
  border: none;
  font-size: 1.4em;
  color: #a63d85;
  cursor: pointer;
  margin-left: 15px;
}

/* Conteúdo */
main {
  padding: 25px;
  background: #fff0f6;
  margin: 25px auto;
  border-radius: 20px;
  max-width: 900px;
  box-shadow: 0px 6px 15px rgba(150, 50, 100, 0.2);
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5em;
  color: #b84d9b;
  margin-bottom: 10px;
}

h2 {
  font-family: 'Pacifico', cursive;
  color: #a63d85;
  margin-top: 30px;
}

.intro {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Quadros */
.quadro {
  background: #ffeaf4;
  border: 3px dashed #e98ab3;
  border-radius: 15px;
  padding: 15px;
  margin: 15px auto;
  max-width: 700px;
  font-style: italic;
  box-shadow: inset 0px 0px 10px rgba(200, 80, 140, 0.15);
}

/* Rodapé */
footer {
  background: #fcb6d4;
  padding: 15px;
  text-align: center;
  border-top: 4px solid #e98ab3;
  margin-top: 20px;
  color: #5a2a4f;
}

/* Posts */
.post {
  background: #ffeaf4;
  border: 2px solid #e98ab3;
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
  max-width: 750px;
  text-align: left;
  box-shadow: 0px 4px 10px rgba(180, 60, 110, 0.15);
}

.post h2 {
  font-family: 'Pacifico', cursive;
  color: #b84d9b;
  margin-bottom: 5px;
}

.post .data {
  font-size: 0.9em;
  color: #7b3069;
  display: block;
  margin-bottom: 10px;
  font-style: italic;
}
