
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
color:white;
background:#020617;
display:flex;
flex-direction:column;
min-height:100vh;
}

main{
flex:1;
}

/* MENU */

header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(6px);
z-index:1000;
}

header img{
height:45px;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:#38bdf8;
}

/* HERO */

.hero{
height:100vh;
background-image:url("../img/background.jpg");
background-size:cover;
background-position:center;
background-attachment:fixed;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero h1{
font-size:70px;
letter-spacing:2px;
margin-bottom:15px;
text-shadow:0 5px 20px rgba(0,0,0,0.8);
}

.hero p{
font-size:22px;
color:#e2e8f0;
text-shadow:0 3px 10px rgba(0,0,0,0.8);
}

/* SEÇÕES */

section{
padding:120px 40px;
max-width:1100px;
margin:auto;
}

section h2{
color:#38bdf8;
margin-bottom:20px;
}

/* PRODUTOS / CARDS */

.produtos{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:#1e293b;
padding:25px;
border-radius:10px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

/* GALERIA */

.galeria{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.galeria img{
width:100%;
border-radius:8px;
transition:0.3s;
cursor:pointer;
}

.galeria img:hover{
transform:scale(1.05);
}

/* MAPA */

iframe{
width:100%;
height:300px;
border-radius:10px;
border:0;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
}

/* FOOTER */

footer{
background:#020617;
text-align:center;
padding:30px;
font-size:14px;
color:#cbd5f5;
}

footer a{
color:#38bdf8;
text-decoration:none;
}


