body {
  font-family: Arial, sans-serif;
  background-color: #f6f6f6;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.author-photo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.author-info h2 {
  font-size: 28px;
  color: #005B74;
  margin-bottom: 20px;
}

.author-info p {
  text-align: justify;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}


.services {
  background-color: #1e1e1e;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.services-title {
  font-family: 'Courier New', monospace;
  font-size: 30px;
  margin-bottom: 40px;
  color: #fff;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.service-card {
  background-color: #2a2a2a;
  padding: 25px 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.service-card h3 {
  color: #005B74; 
  font-size: 18px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ccc;
}

.service-card a {
  display: inline-block;
  background-color: #005B74;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.service-card a:hover {
  background-color: #00b0d0;
}

.book {
  padding: 60px 20px;
  background-color: #f6f6f6;
  color: #333;
}

.book-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.book-cover img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.book-description {
  max-width: 600px;
  text-align: justify;
}

.book-description h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #005B74;
}

.book-description p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.interviews {
  background-color: #1e1e1e;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.interviews-title {
  font-family: 'Courier New', monospace;
  font-size: 30px;
  margin-bottom: 40px;
  color: #fff;
}

.interviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.interview-card {
  background-color: #2a2a2a;
  padding: 25px 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.interview-cover {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.interview-card p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #fff;
}

.interview-card a {
  display: inline-block;
  background-color: #c4302b; /* Cor vermelha do YouTube */
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.interview-card a:hover {
  background-color: #a72821;
}


@media (min-width: 768px) {
  .book-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .book-description {
    text-align: left;
  }
}
