*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#0f1c2e;
color:#d6e2f1;
padding-top:90px;
line-height:1.6;
}

/* HEADER */

header{
position:fixed;
top:0;
width:100%;
background:#0b1626;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
box-shadow:0 2px 10px rgba(0,0,0,0.5);
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-family:'Playfair Display', serif;
font-size:22px;
color:white;
}

.logo img{
width:42px;
}

/* MENU */

nav a{
margin-left:30px;
text-decoration:none;
color:#c8d6ea;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#4fa3ff;
}

/* HERO */

.hero{
min-height:80vh;
display:flex;
align-items:center;
justify-content:center;
padding:60px 8%;
}

.hero-container{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.hero-image img{
width:320px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.hero-content h1{
font-family:'Playfair Display', serif;
font-size:46px;
margin-bottom:5px;
}

.hero-content h3{
color:#4fa3ff;
font-weight:400;
}

.hero-content p{
margin-top:20px;
max-width:500px;
}

/* BOTÃO */

.btn{
display:inline-block;
margin-top:25px;
padding:14px 28px;
background:#2d6cdf;
color:white;
text-decoration:none;
border-radius:6px;
transition:0.3s;
}

.btn:hover{
background:#4fa3ff;
}

/* SEÇÕES */

.section{
padding:80px 8%;
max-width:1100px;
margin:auto;
text-align:center;
}

.section h2{
font-family:'Playfair Display', serif;
font-size:34px;
margin-bottom:20px;
}

/* SEÇÃO ALTERNADA */

.alt{
background:#16263d;
}

/* CARDS */

.cards{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.card{
background:#1c2f4a;
padding:25px;
border-radius:10px;
max-width:280px;
box-shadow:0 6px 20px rgba(0,0,0,0.4);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
background:#223a5a;
}

.card h3{
margin-bottom:10px;
}

/* CONTATO */

.contato{
display:flex;
gap:60px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.info{
max-width:350px;
text-align:left;
}

form{
display:flex;
flex-direction:column;
gap:12px;
}

input, textarea{
padding:12px;
border-radius:6px;
border:1px solid #2d4364;
background:#0b1626;
color:white;
width:260px;
font-family:'Poppins';
}

textarea{
resize:none;
height:100px;
}

button{
padding:12px;
border:none;
background:#2d6cdf;
color:white;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

button:hover{
background:#4fa3ff;
}

/* LOGO NO CONTATO */

.logo-contato{
margin-top:20px;
width:120px;
opacity:0.9;
}

/* FOOTER */

footer{
text-align:center;
padding:30px;
background:#081220;
color:#9fb3d1;
margin-top:60px;
}

/* BOTÃO WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
box-shadow:0 5px 20px rgba(0,0,0,0.5);
z-index:999;
transition:0.3s;
}

.whatsapp:hover{
transform:scale(1.1);
background:#1ebe5d;
}

/* RESPONSIVO */

@media (max-width:900px){

.hero-container{
flex-direction:column;
text-align:center;
}

.hero-image img{
width:260px;
}

nav{
display:none;
}

}

@media (max-width:600px){

.section{
padding:60px 6%;
}

.hero-content h1{
font-size:36px;
}

}