/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background: linear-gradient(to bottom, #f7f3ff, #ede7f9);
  color: #2d1b47;
  line-height: 1.8;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  background-color: #dcd0f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo a {
  font-size: 1.6em;
  color: #3b1e66;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* MENU PRINCIPAL */
.menu-principal ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.menu-item {
  position: relative;
}

/* Input checkbox escondido */
.menu-item input[type="checkbox"] {
  display: none;
}

/* Label como botão */
.menu-item > label {
  cursor: pointer;
  color: #4a2a78;
  font-size: 1em;
  padding: 8px 10px;
  border-radius: 6px;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.menu-item > label:hover {
  background-color: #c4b1e8;
  color: #fff;
}

/* Submenu escondido */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f5efff;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 99;
  flex-direction: column;
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  color: #4a2a78;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.submenu li a:hover {
  background-color: #e3d6ff;
}

/* Mostrar submenu quando checkbox está marcado */
.menu-item input[type="checkbox"]:checked + label + .submenu {
  display: none;
}

/* ÍCONES TOPO */
.icones-topo {
  display: flex;
  gap: 15px;
}

.icones-topo a {
  color: #4a2a78;
  font-size: 1.3em;
  transition: color 0.3s ease;
}

.icones-topo a:hover {
  color: #9b64d8;
}

/* CONTEÚDO */
.conteudo {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.introducao {
  text-align: center;
  margin-bottom: 50px;
}

.introducao h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #3b1e66;
}

.introducao p {
  font-size: 1.1em;
  color: #6b4a92;
  max-width: 700px;
  margin: 0 auto;
}

.introducao img {
  margin-top: 30px;
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* BENEFÍCIOS */
.beneficios {
  background-color: #ffffff;
  border-left: 5px solid #b599e8;
  border-radius: 8px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.beneficios h2 {
  font-size: 1.8em;
  color: #3b1e66;
  margin-bottom: 15px;
}

.beneficios ul {
  list-style: none;
  padding-left: 0;
}

.beneficios li {
  font-size: 1.05em;
  color: #4a2d78;
  margin-bottom: 10px;
}

.beneficios i {
  color: #9b64d8;
  margin-right: 10px;
}

/* RODAPÉ */
.rodape {
  background-color: #dcd0f5;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #c9b7ef;
  margin-top: 60px;
  font-size: 0.95em;
}

.rodape p {
  color: #5f4a89;
  margin-bottom: 10px;
}

.links-rodape {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}

.links-rodape li a {
  text-decoration: none;
  color: #6f54a6;
  transition: color 0.3s ease;
}

.links-rodape li a:hover {
  color: #9f76dd;
  text-decoration: underline;
}
