*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins;
}

body{
  background:#0b0b0b;
  color:white;
  text-align:center;
}

/* HERO COM IMAGEM DE FUNDO */
.hero{
  height: 400px;

  background: url("Imagens/original.jpg") no-repeat center;
  background-size: cover;

  position: relative;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

/* OVERLAY ESCURO */
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.6);
}

/* CONTEÚDO NA FRENTE DO OVERLAY */
.hero *{
  position: relative;
  z-index:1;
}

.logo{
  width:150px;
  display: block;
  margin:0 auto 15px;
}

.hero h1{
  font-size:40px;
  color:#d4af37;
}

.hero p{
  margin:10px 0 30px;
}

.btn-whatsapp{
  background:#d4af37;
  color:black;
  padding:15px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
}

/* MENU */
.menu{
  padding:40px 20px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

/* IMAGENS DOS CARDS */
.card-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* CARD */
.card{
  background:#141414;
  padding:15px;
  border-radius:15px;
  text-decoration:none;
  color:white;
  border:2px solid #d4af37;
  overflow:hidden;
}

.card h3{
  margin-top:10px;
}

/* HORÁRIOS */
.horarios{
  padding:50px 20px;
}

.horarios h2{
  color:#d4af37;
  margin-bottom:30px;
}

.horario{
  display:flex;
  justify-content:space-between;
  background:#111;
  padding:15px;
  margin-bottom:10px;
  border-radius:10px;
}

/* ENDEREÇO */
.endereco{
  padding:50px 20px;
}

.btn-mapa{
  display:inline-block;
  margin-top:20px;
  background:#d4af37;
  color:black;
  padding:12px 25px;
  border-radius:20px;
  text-decoration:none;
}

/* RODAPÉ */
footer{
  padding:20px;
  background:#000;
}

/* BOTÃO WHATS FIXO */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:white;
  padding:15px;
  border-radius:50%;
  font-size:20px;
  text-decoration:none;
}