/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#222;
overflow-x:hidden;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
background:#ffffff;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 8%;
box-shadow:0 2px 15px rgba(0,0,0,.08);
z-index:999;
}

.logo img{
height:70px;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav a{
text-decoration:none;
color:#222;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#2f7dff;
}

/* BANNER */

.banner{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:140px 8% 80px;
background:#f7faff;
gap:60px;
}

.banner-content{
flex:1;
}

.banner-content h1{
font-size:72px;
line-height:1.1;
font-weight:800;
margin-bottom:25px;
color:#111;
}

.banner-content span{
color:#2f7dff;
display:block;
}

.banner-content p{
font-size:24px;
line-height:1.7;
color:#555;
margin-bottom:35px;
}

.banner-image{
flex:1;
display:flex;
justify-content:center;
}

.banner-image img{
width:100%;
max-width:700px;
}

/* BOTÃO */

.btn{
display:inline-block;
padding:18px 40px;
background:#2f7dff;
color:#fff;
text-decoration:none;
font-weight:700;
border-radius:12px;
transition:.3s;
box-shadow:0 10px 25px rgba(47,125,255,.25);
}

.btn:hover{
transform:translateY(-3px);
}

/* REDES */

.social-icons{
display:flex;
gap:15px;
margin-top:35px;
}

.social-icons a{
width:55px;
height:55px;
background:#2f7dff;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:22px;
transition:.3s;
}

.social-icons a:hover{
transform:translateY(-3px);
}

/* SERVIÇOS */

.servicos{
padding:100px 8%;
background:#fff;
}

.servicos h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:#fff;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:50px;
color:#2f7dff;
margin-bottom:20px;
}

.card h3{
margin-bottom:15px;
}

.card p{
line-height:1.7;
}

/* SOBRE */

.sobre{
padding:100px 8%;
background:#f7faff;
}

.sobre-container{
display:flex;
align-items:center;
gap:60px;
}

.sobre-texto{
flex:1;
}

.sobre-texto h2{
font-size:42px;
margin-bottom:25px;
}

.sobre-texto p{
font-size:18px;
line-height:1.8;
margin-bottom:20px;
}

.sobre-img{
flex:1;
}

.sobre-img img{
width:100%;
border-radius:20px;
}

/* CONTATO */

.contato{
padding:100px 8%;
}

.contato h2{
font-size:42px;
text-align:center;
margin-bottom:15px;
}

.contato > p{
text-align:center;
margin-bottom:40px;
}

.contato-box{
max-width:700px;
margin:auto;
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.contato-box p{
margin-bottom:15px;
font-size:18px;
}

.contato-box i{
color:#2f7dff;
margin-right:10px;
}

/* FOOTER */

footer{
background:#071428;
color:#fff;
padding-top:60px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding:0 8%;
}

.footer-container h3{
margin-bottom:15px;
}

.footer-container a{
color:#fff;
text-decoration:none;
line-height:2;
}

.copyright{
text-align:center;
padding:25px;
margin-top:40px;
border-top:1px solid rgba(255,255,255,.1);
}

/* RESPONSIVO */

@media(max-width:1024px){

.banner{
flex-direction:column;
text-align:center;
}

.banner-content h1{
font-size:52px;
}

.cards{
grid-template-columns:repeat(2,1fr);
}

.sobre-container{
flex-direction:column;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

}

@media(max-width:768px){

header{
padding:0 20px;
}

nav{
display:none;
}

.banner-content h1{
font-size:42px;
}

.banner-content p{
font-size:18px;
}

.cards{
grid-template-columns:1fr;
}

.social-icons{
justify-content:center;
}

}