*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

background:#050505;

color:white;

font-family:Poppins,sans-serif;

}

header{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 8%;

background:#000;

position:sticky;

top:0;

z-index:999;

border-bottom:1px solid #b68a2f;

}

.logo h1{

font-family:Cinzel;

font-size:38px;

color:#d4af37;

}

.logo p{

color:#d4af37;

}

nav a{

text-decoration:none;

color:white;

margin-left:25px;

transition:.4s;

}

nav a:hover{

color:#d4af37;

}

section{

padding:70px 8%;

}

.banner img{

width:100%;

border-radius:12px;

box-shadow:0 0 25px rgba(212,175,55,.4);

}

h2{

font-family:Cinzel;

font-size:42px;

color:#d4af37;

text-align:center;

margin-bottom:35px;

}

.texto{

max-width:900px;

margin:auto;

text-align:center;

font-size:20px;

line-height:1.9;

}

#narguile img,
#cardapio img{

width:100%;

max-width:900px;

display:block;

margin:auto;

border-radius:15px;

box-shadow:0 0 30px rgba(212,175,55,.35);

}

.horario{

text-align:center;

}

.horario h3{

font-size:30px;

margin-bottom:15px;

color:#fff;

}

.horario p{

font-size:28px;

color:#d4af37;

font-weight:bold;

}

.instagram{

text-align:center;

}

.botao{

display:inline-block;

margin-top:30px;

padding:18px 45px;

background:#d4af37;

color:#000;

font-weight:bold;

font-size:18px;

border-radius:40px;

text-decoration:none;

transition:.4s;

}

.botao:hover{

background:white;

transform:scale(1.05);

}

footer{

padding:30px;

background:#000;

text-align:center;

border-top:1px solid #b68a2f;

color:#999;

}

@media(max-width:768px){

header{

flex-direction:column;

}

nav{

margin-top:15px;

}

nav a{

display:inline-block;

margin:10px;

}

.logo h1{

font-size:30px;

}

h2{

font-size:30px;

}

}