body {
  background: linear-gradient(135deg, #F4EDE4 0%, #FFF8F3 100%);
  color: #2F3C4D;
  font-family: 'Lato', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  background: #FFF;
  border-bottom: 1px solid #F4EDE4;
  margin-bottom: 2.5rem;
}

.logo {
  max-width: 180px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.3em;
  margin-bottom: 0.2em;
}

h2 {
  font-size: 1.35em;
  margin-top: 0.5em;
  margin-bottom: 0.7em;
}

h3 {
  font-family: 'Playfair Display', serif;
  color: #D88C64;
  margin: 0.5em 0;
}

.language-switcher {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}
.language-switcher button {
  background: #D88C64;
  color: #FFF;
  border: none;
  margin-left: 0.5rem;
  padding: 0.5em 1.1em;
  border-radius: 7px;
  font-family: 'Lato', Arial, sans-serif;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px #E0DAD1;
}
.language-switcher button:hover {
  background: #8A8F69;
  box-shadow: 0 2px 8px #8A8F69;
}

section {
  max-width: 700px;
  margin: 3.5rem auto;
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0 4px 24px #E0DAD1;
  padding: 2.5rem 2rem;
  position: relative;
  animation: fadeIn 1.2s;
}

section:not(:last-child)::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #D88C64 0%, #8A8F69 100%);
  margin: 2.5rem auto 0 auto;
  border-radius: 2px;
  opacity: 0.18;
}

footer {
  text-align: center;
  padding: 2.2rem 1rem 1.2rem 1rem;
  background: #2F3C4D;
  color: #F4EDE4;
  font-size: 0.9em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -2px 16px #E0DAD1;
}
footer p.copyright {
  color: #C1A35E;
  margin-top: 1.2rem;
  font-size: 0.85em;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.03em;
  text-align: center;
}

/* Destaques e elementos visuais */
#quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #2F3C4D;
  text-align: center;
  margin: 2.5rem auto 2.5rem auto;
  max-width: 600px;
  padding: 1.5rem 2rem;
  background: #FFF;
  border-left: 6px solid #D88C64;
  border-radius: 12px;
  box-shadow: 0 2px 8px #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
}

#values ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#values li {
  background: #D88C64;
  color: #FFF;
  margin: 0.5rem;
  padding: 0.7em 1.2em;
  border-radius: 20px;
  font-weight: bold;
}

#contact {
  text-align: center;
}
#contact a {
  color: #C1A35E;
  text-decoration: none;
  font-weight: bold;
}
#contact a:hover {
  text-decoration: underline;
}

.author-photo {
  display: block;
  margin: 0 auto 2.2rem auto;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #D88C64;
  box-shadow: 0 4px 24px #E0DAD1;
  animation: fadeIn 1.2s;
}

#bio {
  text-align: center;
  font-size: 1.18em;
  margin-bottom: 2.2rem;
}

#books {
  margin-top: 2rem;
}
#books-title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.books-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.book {
  background: #FFF;
  border-radius: 7px;
  box-shadow: 0 2px 12px #E0DAD1;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s;
}
.book:hover {
  box-shadow: 0 8px 32px #E0DAD1;
}
.book-cover {
  width: 130px;
  height: 195px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.1rem;
  box-shadow: 8px 4px 16px #E0DAD1, 0 0 0 4px #FFF;
  background: #FFF;
  transition: transform 0.18s, box-shadow 0.18s;
  animation: fadeIn 1.2s;
}
.book-cover:hover {
  transform: scale(1.03) rotateY(-1deg);
  box-shadow: 12px 6px 24px #E0DAD1, 0 0 0 4px #FFF;
}
.book-cover-placeholder {
  width: 120px;
  height: 180px;
  background: #D9D9D9;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A8F69;
  font-size: 2em;
  font-family: 'Playfair Display', serif;
}
.book-info {
  text-align: center;
  margin-bottom: 0.7rem;
}
.book-info strong {
  display: block;
  font-size: 1.13em;
  color: #2F3C4D;
  margin-bottom: 0.3em;
  font-family: 'Playfair Display', serif;
}
.book-links {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 0.3rem;
}
.book-links a {
  background: #8A8F69;
  color: #FFF;
  padding: 0.38em 1.1em;
  border-radius: 7px;
  text-decoration: none;
  font-size: 1em;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  box-shadow: 0 1px 4px #E0DAD1;
}
.book-links a:hover {
  background: #D88C64;
  color: #FFF;
  box-shadow: 0 2px 8px #D88C64;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.social-links a {
  background: #D88C64;
  color: #FFF;
  padding: 0.5em 1em;
  border-radius: 7px;
  text-decoration: none;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-size: 1em;
  box-shadow: 0 1px 4px #E0DAD1;
}
.social-links a:hover {
  background: #8A8F69;
  color: #FFF;
  box-shadow: 0 2px 8px #8A8F69;
}
#contact .social-links a {
  color: #FFF !important;
}

.logo-footer {
  display: block;
  margin: 0 auto 0.7rem auto;
  max-width: 200px;
  height: auto;
  border-radius: 6px;
  animation: fadeIn 1.2s;
}

.slogan {
  display: inline-block;
  font-size: 1.18em;
  font-family: 'Playfair Display', serif;
  color: #D88C64;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}

#main-tagline {
  margin-bottom: 1.2em;
}

#bio p {
  margin: 1.1em 0;
  line-height: 1.7;
}

.bio-books {
  margin: 1.2em 0 1.2em 0;
  padding-left: 1.2em;
  text-align: left;
}
.bio-books li {
  margin-bottom: 0.7em;
  font-size: 1em;
  line-height: 1.5;
}

@media (max-width: 800px) {
  section {
    padding: 1.5rem 0.7rem;
    margin: 2.2rem 0.5rem;
  }
  .books-list {
    gap: 1.2rem;
  }
  .book {
    width: 95vw;
    max-width: 320px;
  }
  .author-photo {
    width: 110px;
    height: 110px;
  }
  .logo-footer {
    max-width: 120px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
} 