

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#081421;
color:#fff;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

.header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 0;
background:rgba(0,0,0,.75);
backdrop-filter:blur(8px);
z-index:999;
transition:.3s;
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-box img{
height:90px;
transition:.3s;
}

/* MENU */

.menu{
display:flex;
gap:25px;
}

.menu a{
color:#fff;
text-decoration:none;
font-weight:500;
transition:.3s;
position:relative;
}

.menu a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#4e8cff;
transition:.3s;
}

.menu a:hover::after{
width:100%;
}

.menu a:hover{
color:#4e8cff;
}

/* HERO */

.hero,
.hero-servicos{
height:100vh;
background:url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
display:flex;
align-items:center;
position:relative;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.72);
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
}

.hero-tag{
background:#1E4F9A;
padding:8px 16px;
border-radius:30px;
font-size:13px;
display:inline-block;
margin-bottom:20px;
letter-spacing:1px;
}

.hero-content h1{
font-size:64px;
line-height:1.1;
margin-bottom:25px;
}

.hero-content p{
font-size:18px;
line-height:1.9;
color:#d8d8d8;
margin-bottom:35px;
}

/* BOTÕES */

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
background:#1E4F9A;
color:#fff;
padding:15px 30px;
border-radius:8px;
text-decoration:none;
font-weight:600;
border:none;
cursor:pointer;
transition:.3s;
display:inline-block;
}

.btn:hover{
transform:translateY(-4px);
background:#2763be;
}

.btn-outline{
background:transparent;
border:2px solid #fff;
}

.btn-outline:hover{
background:#fff;
color:#081421;
}

/* SOBRE */

.sobre-premium{
padding:120px 0;
background:#0b1724;
}

.sobre-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.sobre-imagem img{
width:100%;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.sobre-texto span{
color:#4e8cff;
letter-spacing:2px;
font-size:14px;
}

.sobre-texto h2{
font-size:44px;
line-height:1.2;
margin:20px 0;
}

.sobre-texto p{
color:#cfcfcf;
line-height:1.9;
margin-bottom:30px;
}

/* DESTAQUE SERVIÇOS */

.servicos-destaque{
padding:120px 0;
background:#081421;
}

.servicos-destaque-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

.servicos-destaque-texto span{
color:#4e8cff;
letter-spacing:2px;
font-size:14px;
}

.servicos-destaque-texto h2{
font-size:52px;
line-height:1.2;
margin:20px 0;
}

.servicos-destaque-texto p{
color:#cfcfcf;
line-height:1.9;
margin-bottom:35px;
font-size:17px;
}

.btn-servicos-grande{
display:inline-block;
background:#1E4F9A;
color:#fff;
padding:18px 35px;
border-radius:10px;
text-decoration:none;
font-weight:700;
font-size:16px;
transition:.3s;
box-shadow:0 10px 30px rgba(30,79,154,.35);
}

.btn-servicos-grande:hover{
transform:translateY(-5px);
background:#2763be;
}

.servicos-destaque-img img{
width:100%;
border-radius:24px;
box-shadow:0 20px 50px rgba(0,0,0,.35);
}

/* SECTION */

.section{
padding:100px 0;
}

.section-title{
margin-bottom:60px;
}

.section-title span{
color:#4e8cff;
font-size:14px;
letter-spacing:2px;
}

.section-title h2{
font-size:42px;
margin:15px 0;
}

.section-title p{
color:#c7c7c7;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

/* CARDS */

.card{
background:#102131;
padding:35px;
border-radius:18px;
transition:.4s;
border:1px solid rgba(255,255,255,.05);
}

.card:hover{
transform:translateY(-12px);
border-color:#1E4F9A;
box-shadow:0 20px 40px rgba(0,0,0,.30);
}

.card-icon{
width:55px;
height:55px;
background:#1E4F9A;
border-radius:12px;
display:flex;
justify-content:center;
align-items:center;
margin-bottom:20px;
font-weight:700;
}

.card h3{
margin-bottom:15px;
font-size:24px;
}

.card p{
color:#cfcfcf;
line-height:1.7;
}

/* BOTÃO SERVIÇO */

.btn-servico{
display:inline-block;
margin-top:20px;
background:#1E4F9A;
color:#fff;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-servico:hover{
transform:translateY(-3px);
background:#2763be;
}

/* CTA */

.cta{
background:#10263d;
padding:80px 0;
}

.cta-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
}

.cta span{
color:#4e8cff;
font-size:14px;
}

.cta h2{
margin-top:10px;
font-size:42px;
}

/* FORM */

.contato{
background:#0d1b29;
}

.form-contato{
max-width:700px;
display:flex;
flex-direction:column;
gap:15px;
}

.form-contato input,
.form-contato select{
padding:18px;
background:#102131;
border:1px solid rgba(255,255,255,.08);
border-radius:10px;
color:#fff;
outline:none;
}

/* MAPA */

.mapa{
padding:100px 0;
background:#081421;
}

.mapa-box{
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,.35);
}

/* FOOTER */

footer{
background:#050b11;
padding:70px 0 30px;
font-family:'Times New Roman',serif;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.footer-logo{
width:220px;
margin-bottom:20px;
}

.footer-col h3{
margin-bottom:20px;
}

.footer-col p,
.footer-col a{
color:#c7c7c7;
line-height:1.9;
text-decoration:none;
display:block;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.08);
margin-top:50px;
padding-top:25px;
text-align:center;
color:#b7b7b7;
}

.footer-bottom a{
color:#4e8cff;
}

/* BOTÕES FLUTUANTES */

.whatsapp,
.instagram{
position:fixed;
right:20px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
z-index:999;
transition:.3s;
}

.whatsapp:hover,
.instagram:hover{
transform:scale(1.08);
}

.whatsapp{
bottom:20px;
background:#25d366;
}

.instagram{
bottom:95px;
background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.whatsapp img,
.instagram img{
width:30px;
}

/* RESPONSIVO */

@media(max-width:900px){

.header{
padding:10px 0;
}

.header-container{
flex-direction:column;
gap:10px;
}

.logo-box img{
height:55px;
}

.menu{
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
}

.btn{
width:100%;
text-align:center;
}

.sobre-grid,
.servicos-destaque-grid{
grid-template-columns:1fr;
}

.sobre-texto h2,
.servicos-destaque-texto h2{
font-size:36px;
}

.section{
padding:70px 0;
}

.section-title h2{
font-size:32px;
}

.cta-content{
flex-direction:column;
align-items:flex-start;
}

.cta h2{
font-size:32px;
}

.footer-logo{
width:180px;
}

.whatsapp,
.instagram{
width:55px;
height:55px;
}

.btn-servicos-grande{
width:100%;
text-align:center;
}

}