*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#111;
color:#fff;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.header{
background:#000;
padding:15px 0;
position:sticky;
top:0;
z-index:1000;
}

.header .container{
display:flex;
flex-direction:column;
gap:10px;
align-items:center;
}

.logo{
height:60px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

nav a{
color:#fff;
text-decoration:none;
margin-left:0px;
font-weight:bold;
}

.hero{
min-height:65vh;
height:80vh;
background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url("img/lanche.png");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero img {
    max-width: 100%;
    height: auto;
    border: 3px solid #D4AF37;
    border-radius: 18px;
    padding: 8px;
    align-self: center;
    max-height: 240px; /* Define o tamanho padrão do logo */
    width: auto;
}


.hero h1{
font-size:3rem;
margin-bottom:20px;
}

.hero p{
margin-bottom:25px;
}

.btn{
background:#ffb703;
color:#000;
padding:14px 25px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
}

section{
padding:60px 0;
}

h2{
text-align:center;
margin-bottom:30px;
color:#ffb703;
}

.grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
}

.card{
display:flex;
flex-direction:column;
justify-content:space-between;

background:#1f1f1f;
border-radius:15px;
overflow:hidden;

height:100%;
}

.card img{
width:100%;
height:220px;

object-fit:contain;
object-position:center;

background:#111;
padding:10px;
}

.card h3{
padding:15px;
}

.card p{
padding:0 15px;
}

.card span{
display:block;
padding:15px;
font-size:1.2rem;
font-weight:bold;
color:#ffb703;
}

.card button{
margin-left:15px;
background:#ffb703;
border:none;
padding:10px 15px;
border-radius:8px;
cursor:pointer;
font-weight:bold;
}

.pequeno{
padding:20px;
}

#pedido{
background:#1f1f1f;
padding:20px;
border-radius:15px;
margin-bottom:20px;
min-height:180px;
font-size:.95rem;
}

.pedido-item{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px;
    margin-bottom:10px;

    background:#2a2a2a;

    border-radius:10px;
}

.remover-btn{

    border:none;

    background:#dc2626;

    color:#fff;

    width:35px;
    height:35px;

    border-radius:8px;

    cursor:pointer;

    font-weight:bold;

    transition:.3s;
}

.remover-btn:hover{

    transform:scale(1.05);

    background:#b91c1c;
}

.whatsapp-btn{
width:100%;
padding:16px;
border:none;
background:#25d366;
color:#fff;
font-size:1.1rem;
font-weight:bold;
border-radius:12px;
cursor:pointer;
}

@media(min-width:1200px){

.hero{
min-height:90vh;
}

.hero h1{
font-size:4rem;
}

.grid{
grid-template-columns:repeat(4,1fr);
}

.card img{
height:260px;
}

}