*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#f8f8f8;
color:#222;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:white;
box-shadow:0 5px 15px rgba(0,0,0,.05);
position:sticky;
top:0;
z-index:999;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo img{
height:70px;
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
font-weight:500;
color:#444;
transition:.3s;
}

nav a:hover{
color:#e63946;
}

.hero{
height:600px;
background:url("https://images.unsplash.com/photo-1561758033-d89a9ad46330?w=1600") center/cover;
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
}

.hero-content{
position:relative;
text-align:center;
color:white;
max-width:800px;
}

.hero h1{
font-size:52px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:40px;
}

.search-box{
display:flex;
justify-content:center;
gap:10px;
}

.search-box input{
width:500px;
padding:18px;
border:none;
border-radius:10px;
font-size:16px;
}

.search-box button{
padding:18px 35px;
border:none;
background:#ffb703;
font-weight:bold;
cursor:pointer;
border-radius:10px;
}

section{
padding:80px 0;
}

h2{
text-align:center;
margin-bottom:45px;
font-size:36px;
}

.grid-categorias{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:25px;
}

.categoria{
background:white;
padding:40px;
border-radius:15px;
text-align:center;
font-size:45px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
transition:.3s;
}

.categoria:hover{
transform:translateY(-8px);
}

.categoria span{
display:block;
font-size:18px;
margin-top:15px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 15px 25px rgba(0,0,0,.08);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-body{
padding:25px;
}

.card-body h3{
margin-bottom:10px;
}

.card-body p{
margin-bottom:10px;
}

.card button{
margin-top:20px;
width:100%;
padding:15px;
background:#e63946;
color:white;
border:none;
cursor:pointer;
border-radius:8px;
}

.lista-estados{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.lista-estados button{
padding:15px 25px;
border:none;
background:#fff;
cursor:pointer;
border-radius:8px;
font-size:16px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.cadastro{
background:#ffb703;
text-align:center;
}

.cadastro p{
margin:25px auto;
max-width:700px;
font-size:18px;
}

.cadastro button{
padding:18px 40px;
border:none;
background:#222;
color:white;
border-radius:10px;
cursor:pointer;
font-size:17px;
}

footer{
background:#222;
color:white;
padding:30px;
text-align:center;
}

@media(max-width:768px){

header .container{
flex-direction:column;
}

nav{
margin-top:20px;
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:34px;
}

.search-box{
flex-direction:column;
padding:20px;
}

.search-box input{
width:100%;
}

}