:root{
    --primary:#7c3aed;
    --primary-dark:#5b21b6;
    --dark:#0a0a0a;
    --dark2:#131313;
    --white:#ffffff;
    --gray:#bdbdbd;
    --radius:18px;
    --shadow:0 15px 35px rgba(0,0,0,.35);
}

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

body{
    font-family:'Poppins',sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1250px;
    margin:auto;
}

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(15px);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
}

.logo{
    color:var(--primary);
    font-size:38px;
    font-weight:800;
    text-decoration:none;
}

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

nav a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

nav a:hover{
    color:var(--primary);
}

.btnHeader{
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btnHeader:hover{
    background:var(--primary-dark);
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../img/capa.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
}

.heroContent{
    max-width:760px;
}

.hero h4{
    color:var(--primary);
    margin-bottom:15px;
    letter-spacing:2px;
}

.hero h1{
    font-size:72px;
    line-height:78px;
    margin-bottom:25px;
}

.hero span{
    color:var(--primary);
}

.hero p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:40px;
    font-size:18px;
}

.heroButtons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btnPrincipal{
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    padding:18px 36px;
    border-radius:50px;
    transition:.3s;
    font-weight:700;
}

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

.btnSecundario{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:18px 36px;
    border-radius:50px;
}

.servicos{
    padding:120px 0;
}

.servicos h2,
.sobre h2,
.galeria h2,
.avaliacoes h2,
.orcamento h2{
    text-align:center;
    font-size:46px;
    margin-bottom:60px;
}

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

.card{
    background:var(--dark2);
    padding:35px;
    border-radius:var(--radius);
    transition:.35s;
    box-shadow:var(--shadow);
    border:1px solid #222;
}

.card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.card i{
    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;
}.numeros{
    background:linear-gradient(90deg,var(--primary),var(--primary-dark));
    padding:70px 0;
}

.estatisticas{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:30px;
    text-align:center;
}

.estatisticas h2{
    font-size:58px;
    margin-bottom:10px;
}

.estatisticas p{
    font-size:18px;
}

.sobre{
    padding:120px 0;
}

.sobreGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.sobre p{
    color:var(--gray);
    line-height:1.9;
    margin:25px 0;
}

.sobre ul{
    list-style:none;
}

.sobre li{
    margin-bottom:18px;
}

.sobre img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.galeria{
    padding:120px 0;
    background:#0d0d0d;
}

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

.foto{
    overflow:hidden;
    border-radius:18px;
}

.foto img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.4s;
}

.foto:hover img{
    transform:scale(1.08);
}

.ctaFinal{
    padding:120px 0;
    text-align:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
}

.ctaFinal p{
    margin:20px 0 40px;
    font-size:20px;
}

.avaliacoes{
    padding:120px 0;
}

.estrelas{
    color:#FFD700;
    font-size:24px;
    margin-bottom:15px;
}

.avaliacoes h4{
    margin-top:20px;
    color:var(--primary);
}

.orcamento{
    padding:120px 0;
    background:#0d0d0d;
}

form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

form input,
form select,
form textarea{
    background:#171717;
    border:1px solid #292929;
    color:#fff;
    padding:18px;
    border-radius:14px;
    font-family:Poppins,sans-serif;
}

form textarea{
    height:180px;
    resize:none;
}

form button{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:18px;
    border-radius:50px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
    font-weight:700;
}

form button:hover{
    background:var(--primary-dark);
}.footerGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding:70px 0;
}

footer{
    background:#050505;
}

footer h3,
footer h4{
    margin-bottom:20px;
    color:var(--primary);
}

footer p{
    color:var(--gray);
    line-height:1.9;
}

.copyright{
    border-top:1px solid #222;
    text-align:center;
    padding:25px 15px;
    color:#777;
    font-size:14px;
}

html::-webkit-scrollbar{
    width:10px;
}

html::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:50px;
}

html::-webkit-scrollbar-track{
    background:#111;
}

::selection{
    background:var(--primary);
    color:#fff;
}

@media(max-width:992px){

.hero h1{
    font-size:50px;
    line-height:58px;
}

.sobreGrid{
    grid-template-columns:1fr;
}

nav{
    display:none;
}

.btnHeader{
    display:none;
}

}

@media(max-width:768px){

.hero{
    text-align:center;
}

.heroButtons{
    justify-content:center;
}

.hero h1{
    font-size:40px;
    line-height:48px;
}

.hero p{
    font-size:16px;
}

.servicos h2,
.sobre h2,
.galeria h2,
.avaliacoes h2,
.orcamento h2{
    font-size:34px;
}

.estatisticas{
    grid-template-columns:repeat(2,1fr);
}

.footerGrid{
    text-align:center;
}

}

@media(max-width:480px){

.container{
    width:92%;
}

.hero h1{
    font-size:34px;
    line-height:40px;
}

.btnPrincipal,
.btnSecundario{
    width:100%;
    text-align:center;
}

.estatisticas{
    grid-template-columns:1fr;
}

.card{
    padding:28px;
}

}.hidden{
opacity:0;
transform:translateY(60px);
transition:.8s;
}

.show{
opacity:1;
transform:translateY(0);
}

.topo{
position:fixed;
right:25px;
bottom:25px;
width:55px;
height:55px;
background:#7c3aed;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;
cursor:pointer;
opacity:0;
pointer-events:none;
transition:.3s;
box-shadow:0 0 25px rgba(124,58,237,.5);
z-index:999;
}

.topo.ativo{
opacity:1;
pointer-events:auto;
}

.topo:hover{
transform:scale(1.1);
}.cidades{
padding:120px 0;
background:#090909;
}

.cidades h2{
text-align:center;
font-size:46px;
margin-bottom:15px;
}

.subtitulo{
text-align:center;
color:#bbb;
margin-bottom:60px;
}

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

.cidadeGrid div{
background:#151515;
padding:18px 22px;
border-radius:12px;
border:1px solid #252525;
transition:.3s;
font-weight:500;
}

.cidadeGrid div:hover{
background:#7c3aed;
transform:translateY(-4px);
}

.cidadeGrid i{
margin-right:10px;
color:#fff;
}