body{
margin:0;
font-family:Arial, sans-serif;
background:#0b0b0b;
color:white;
text-align:center;
}

/* HERO */

.hero{
height:100vh;
background:url(hero.jpg) center/cover no-repeat;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
position:relative;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

/* NAVBAR */

.navbar{
position:absolute;
top:20px;
left:20px;
right:20px;
display:flex;
align-items:center;
justify-content:space-between;
z-index:3;
}

/* TITULO CENTRAL */

.logo{
font-size:22px;
font-weight:bold;
position:absolute;
left:50%;
transform:translateX(-50%);
}

/* MENU ICON */

.menu-icon{
font-size:30px;
cursor:pointer;
z-index:5;
}

/* MENU LATERAL */

.menu{
position:fixed;
top:0;
left:-250px;
width:220px;
height:100%;
background:#111;
padding-top:80px;
transition:0.3s;
box-shadow:5px 0 20px rgba(0,0,0,0.6);
z-index:4;
}

.menu a{
display:block;
color:white;
text-decoration:none;
padding:15px 25px;
font-size:18px;
border-bottom:1px solid #222;
}

.menu a:hover{
background:#1c1c1c;
}

/* HERO CONTENT */

.hero-content{
z-index:2;
max-width:600px;
padding:20px;
}

.hero h1{
font-size:40px;
margin-bottom:20px;
}

.hero p{
color:#ddd;
font-size:18px;
}

/* BOTÃO */

.btn{
display:inline-block;
margin-top:25px;
background:#39ff14;
padding:16px 45px;
border-radius:40px;
font-size:20px;
color:black;
text-decoration:none;
font-weight:bold;
}

/* SEÇÕES */

.image-section img{
width:100%;
}

.content{
padding:80px 25px;
max-width:700px;
margin:auto;
}

.content h2{
font-size:32px;
margin-bottom:30px;
}

.content p{
color:#ccc;
line-height:1.8;
font-size:18px;
}

/* CONTATO */

.contact{
padding:80px 20px;
}

.instagram{
font-size:40px;
margin-top:20px;
}

/* FOOTER */

footer{
padding:40px 20px;
color:#999;
font-size:14px;
}

/* BOTÃO CHAT */

.chat-button{
position:fixed;
bottom:25px;
right:25px;
background:#39ff14;
color:black;
width:65px;
height:65px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
}

/* CHAT */

.chat-box{
position:fixed;
bottom:100px;
right:25px;
width:320px;
background:white;
color:black;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
overflow:hidden;
display:none;
z-index:1000;
}

.chat-header{
background:#39ff14;
padding:15px;
font-weight:bold;
display:flex;
justify-content:space-between;
align-items:center;
}

.chat-header button{
background:none;
border:none;
font-size:18px;
cursor:pointer;
}

.chat-message{
background:#c8f7c5;
padding:15px;
margin:15px;
border-radius:10px;
font-size:14px;
}

.chat-form{
padding:15px;
display:flex;
flex-direction:column;
gap:12px;
}

.chat-form input,
.chat-form textarea{
padding:10px;
border-radius:8px;
border:1px solid #ccc;
font-size:14px;
}

.chat-form textarea{
height:80px;
resize:none;
}

.newsletter{
font-size:12px;
color:#555;
display:flex;
gap:8px;
align-items:flex-start;
}

.send-btn{
background:#39ff14;
border:none;
padding:12px;
border-radius:25px;
font-weight:bold;
cursor:pointer;
}

.contact-box{
display:flex;
flex-direction:column;
gap:30px;
margin-top:30px;
}

.contact-item{
text-align:center;
}

.contact-title{
font-size:20px;
margin-bottom:10px;
}

.contact-link{
text-decoration:none;
color:white;
display:flex;
flex-direction:column;
align-items:center;
gap:10px;
}

.contact-icon{
width:40px;
height:40px;
}
