* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Arial', sans-serif;
  height: 100%;
}

.hero {
  background-image: url('fogao.png'); /* Altere para sua imagem real */
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
  color: white;
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.55); /* Fundo preto com transparência */
  border-radius: 20px;                   /* Cantos arredondados */
  max-width: 400px;
  margin: 0 auto;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
  margin-left: 10px;
}

h1 {
  font-size: 32px;
  letter-spacing: 2px;
  color: rgba(202, 199, 199, 0.726);
}

h1 span {
  font-weight: 300;
  color: rgba(202, 199, 199, 0.726);
}

p {
  margin: 20px 0;
  font-weight: bold;
  color: rgb(255, 254, 254);
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
}

.btn {
  text-decoration: none;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.btn i {
  margin-right: 30px;
  font-size: 20px;
}

.btn.whatsapp {
  background-color: rgba(60, 173, 101, 0.5); /* verde com 80% de opacidade */
}

.btn.instagram {
  background-color: rgba(187, 50, 96, 0.5); /* rosa com 80% de opacidade */
}
.btn:hover {
  opacity: 0.85;
}
  