* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #fff;
}

.hero {
  background-image: url('/img/pexels-andrea-prochilo-3062027-23897249.jpg'); /* ou substitua pelo caminho da imagem original */
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 2rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content h1 span {
  color: #e63946;
  font-weight: 700;
}

.content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.content p a {
  color: #ff0404;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.whatsapp-button img {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.whatsapp-button:hover {
  background-color: #1ebc57;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 2.2rem;
  }

  .content p {
    font-size: 1.2rem;
  }
}