/* 🌌 Fundo geral do hero */
.hero-bg {
  padding-top: 140px;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 📦 Espaçamento da seção hero */
.padding-hero {
  padding-top: 0;
  padding-bottom: 80px;
}

/* 🖼 Imagem principal do hero */
.hero-book {
  width: 500px;
  max-width: 100%;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
  margin-bottom: 1rem;
}

/* 📄 Caixa de texto do hero */
.hero-text-box-light {
  margin-top: 3rem;
  text-align: center;
}

.titulo-grande {
  font-size: 3rem;
}

.hero-text-box-light h2 {
  font-size: 1.5rem;
}

.hero-text-box-light p.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* 🎯 Botões */
.botao-animado,
.botao-secundario {
  display: inline-block;
  margin-right: 12px;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.botao-animado {
  background-color: #bf01c9;
  color: white;
}

.botao-animado:hover {
  background-color: #bf01c9;
}

.botao-secundario {
  background-color: transparent;
  border: 1px solid #bf01c9;
  color: white;
}

.botao-secundario:hover {
  background-color: rgba(255, 122, 0, 0.1);
}

/* 📱 Responsividade */
@media (max-width: 1200px) {
  .quero-comecar-agora {
    margin-bottom: 15px;
  }
}

@media (max-width: 993px) {
  .titulo-grande {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-book {
    margin-bottom: 2rem;
  }

  .hero-text-box-light {
    margin-top: 0 !important;
  }

  .hero-text-box-light h2 {
    font-size: 1.25rem;
  }

  .hero-text-box-light p.lead {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .padding-hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}