*,
*::before,
*::after {

box-sizing: border-box;

margin:0;
padding:0;

}

html{

scroll-behavior:smooth;

}

body{

font-family: 'Montserrat', sans-serif;
background:#000;
color:#fff;
margin:0;
overflow-x:hidden;

}
#inicio{

position:relative;
top:-80px;

}

/* garante que nada ultrapasse a tela */
*{
box-sizing:border-box;
}

header{

background:#000;
border-bottom:2px solid #ff7b00;
position:fixed;
top:0;
left:0;
width:100%;
padding:10px 10px;

z-index:100;

}

nav{

max-width:1200px;
margin:0 auto;

display:flex;
align-items:center;
justify-content:space-between;

min-height:60px;

}

nav ul{

list-style:none;
display:flex;
gap:20px;

}


nav a{

color:#fff;
text-decoration:none;
font-weight:600;

}

.logo img{

max-width:100px;
max-height:100px;

width:auto;
height:auto;

display:block;

object-fit:contain;

}

.hero{

height:100vh;

background:url('img/kombi.jpg') center/cover;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

}


.hero-content{

background:rgba(0,0,0,0.6);
padding:40px;
border-radius:10px;

}


.hero h1{

font-size:50px;

}


.btn{

background:#ff7b00;
padding:15px 30px;
color:#fff;
text-decoration:none;
border-radius:5px;
display:inline-block;
margin-top:20px;

}


.historia{

padding:80px 20px;
text-align:center;
background:#111;

}


.galeria{

padding:80px 20px;
text-align:center;

}


.grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:20px;

margin-top:30px;

}


.grid img{

width:100%;
border-radius:10px;
transition:0.3s;

}


.grid img:hover{

transform:scale(1.05);

}


.contato{

padding:80px;
text-align:center;
background:#111;

}


footer{

text-align:center;
padding:20px;
background:#000;

}


@media(max-width:768px){

.hero h1{

font-size:30px;

}

}