body {
  font-family: "Poppins", sans-serif;
  background-color: #faf6fb;
  color: #333;
  margin: 0;
  line-height: 1.7;
}

header {
  background-color: #b39ddb;
  color: white;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

nav ul li {
  display: inline-block;
  margin: 0 8px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

section {
  padding: 25px;
  margin: 15px;
  background-color: #f3e5f5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h2 {
  color: #6a1b9a;
  border-bottom: 2px solid #ce93d8;
  display: inline-block;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
}

.intro img {
  width: 250px;
  border-radius: 50%;
  border: 4px solid #d1c4e9;
  margin-bottom: 10px;
}

blockquote {
  background-color: #ede7f6;
  border-left: 5px solid #7e57c2;
  padding: 15px;
  font-style: italic;
  border-radius: 6px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid #d1c4e9;
  padding: 8px;
}

th {
  background-color: #d1c4e9;
}

ul {
  list-style: square;
  margin-left: 20px;
}

.galeria {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.galeria img {
  width: 200px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.05);
}

.frase {
  text-align: center;
  margin-top: 15px;
  background-color: #e1bee7;
  padding: 10px;
  border-radius: 10px;
  color: #4a148c;
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
}

button {
  background-color: #9575cd;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #7e57c2;
}

footer {
  text-align: center;
  background-color: #b39ddb;
  color: white;
  padding: 15px;
  margin-top: 20px;
  font-size: 0.9em;
}
