.home {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(120deg, #b71c1c, #d50000);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  font-family: "Poppins", sans-serif;
}

.home h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #fff;
  opacity: 0.95;
}

/* === Botão de destaque (vermelho invertido) === */
.home button {
  background: #fff;
  color: #b71c1c;
  border: none;
  padding: 12px 30px;
  font-size: 1.1em;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.home button:hover {
  background: #f5f5f5;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* === Responsividade === */
@media (max-width: 768px) {
  .home {
    padding: 60px 15px;
  }

  .home h1 {
    font-size: 1.8rem;
  }

  .home p {
    font-size: 1rem;
  }

  .home button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}
