@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #f5efff, #e7ddfb);
  color: #3e2a5c;
  line-height: 1.6;
  min-height: 100vh;
}

/* Submenu */
.submenu {
  display: none;
  position: absolute;
  top: 42px;
  left: 0;
  background: #f2e9ff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(60, 20, 100, 0.1);
  padding: 10px 0;
  min-width: 200px;
  z-index: 100;
}

.submenu li a {
  padding: 10px 20px;
  color: #5b4785;
  font-weight: 500;
}

.submenu li a:hover {
  background-color: #d4c3ff;
  color: #3a255a;
}

/* Mostrar submenu no hover */
.dropdown:hover .submenu {
  display: block;
}

.conteudo {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

.introducao h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #3a255a;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(90, 40, 140, 0.15);
}

.introducao p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  color: #6b56a1;
}

/* Benefícios */
.beneficios {
  background-color: #ffffff;
  border-left: 6px solid #b39ef0;
  padding: 30px 30px 30px 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 18px rgba(70, 30, 130, 0.1);
  border-radius: 10px;
}

.beneficios h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #4a3170;
  border-bottom: 2px solid #b39ef0;
  padding-bottom: 8px;
  font-weight: 700;
}

.beneficios ul {
  list-style: none;
}

.beneficios li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #58427d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.beneficios i.fa-check {
  color: #a98ae6;
  font-size: 1.2rem;
}

/* Trechos */
.trecho {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d7c9f3;
}

.trecho h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #5a4592;
  font-weight: 700;
}

.trecho p {
  font-size: 1.1rem;
  color: #463566;
  white-space: pre-line;
}

.trecho p strong {
  font-style: normal;
}

.autor {
  text-align: right;
  font-style: italic;
  color: #7b6aa8;
  margin-top: 8px;
  font-size: 1rem;
}

.rodape {
  background-color: #d8c9f0;
  padding: 25px 20px;
  text-align: center;
  border-top: 1px solid #b39ef0;
  font-size: 0.9rem;
  color: #3f2a5e;
  margin-top: 60px;
}

.links-rodape {
  list-style: none;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.links-rodape li a {
  text-decoration: none;
  color: #6a53a3;
  transition: color 0.3s ease;
  font-weight: 500;
}

.links-rodape li a:hover {
  color: #8c74cc;
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .menu-principal ul {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 15px;
  }

  .icones-topo {
    margin-top: 15px;
  }

  .introducao h1 {
    font-size: 2.2rem;
  }

  .beneficios h2 {
    font-size: 1.4rem;
  }
}

