/* Estilos gerais */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('red-velvet-background-designify.png') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #FFD700; /* Dourado */
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #e6c200;
}

/* Seções de Conteúdo */
section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}

.about-ebook, .benefits, .about-author, .cta-final {
  background-color: white;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ebook-cover {
  max-width: 300px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.benefits ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.benefits li {
  background-color: #f9f9f9;
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1rem;
}

.about-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.author-photo {
  width: 250px;
  border-radius: 50%;
  border: 5px solid #FFD700;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.about-author div {
  max-width: 600px;
  text-align: left;
}

.about-author h2 {
  text-align: left;
}

/* CTA Final */
.cta-final {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('fairy-lights-background-designify.png') no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
}

.cta-final h2 {
  color: white;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .about-author {
    flex-direction: column;
  }

  .about-author div {
    text-align: center;
  }

  .about-author h2 {
    text-align: center;
  }
}


