@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
list-style:none;
text-decoration:none;
font-family:'Roboto',sans-serif;
}

body{
background:#000;
color:white;
overflow-x:hidden;
}

body::before{
content:"";
position:fixed;
width:100%;
height:100%;
background-image:
radial-gradient(white 1px, transparent 1px),
radial-gradient(white 1px, transparent 1px),
radial-gradient(white 2px, transparent 2px);
background-size:80px 80px,120px 120px,200px 200px;
background-position:0 0,40px 60px,130px 270px;
opacity:0.2;
z-index:-1;
}

header{
width:100%;
height:120px;
background:#000;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 0 10px #fff,0 0 30px rgba(255,255,255,0.4);
}

.navbar{
width:90%;
display:flex;
align-items:center;
justify-content:space-between;
}

.navbar img{
width:70px;
height:70px;
border-radius:20px;
box-shadow:0 0 10px #fff,0 0 25px #fff;
transition:0.3s;
}

.navbar img:hover{
transform:scale(1.1);
box-shadow:0 0 20px #fff,0 0 50px #fff;
}

.linklists{
display:flex;
gap:35px;
}
.avaliacao-card img{
width:100%;
height:auto;
border-radius:10px;
display:block;
}
.linkbase a{
color:white;
font-size:18px;
padding:8px 18px;
border-radius:8px;
text-shadow:0 0 5px #fff,0 0 10px #fff;
transition:0.3s;
}

.linkbase a:hover{
background:white;
color:black;
box-shadow:0 0 20px #fff,0 0 40px #fff;
}

.hero{
height:70vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
gap:25px;
padding:20px;
}

.hero h1{
font-size:48px;
text-shadow:0 0 10px white;
}

.hero p{
max-width:700px;
font-size:18px;
opacity:0.8;
}

.cta{
margin-top:10px;
padding:12px 30px;
border-radius:10px;
background:white;
color:black;
font-weight:600;
transition:0.3s;
}

.cta:hover{
box-shadow:0 0 20px white,0 0 40px white;
transform:translateY(-3px);
}

.avaliacoes{
padding:100px 10%;
text-align:center;
}

.avaliacoes h2{
font-size:36px;
margin-bottom:50px;
text-shadow:0 0 10px white;
}

.avaliacoes-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.avaliacao-card{
background:#050505;
padding:30px;
border-radius:15px;
box-shadow:0 0 10px rgba(255,255,255,0.2);
}

.migrar{
padding:120px 10%;
text-align:center;
}

.migrar h2{
font-size:36px;
margin-bottom:20px;
text-shadow:0 0 10px white;
}

.migrar p{
margin-bottom:30px;
opacity:0.8;
}

@media (max-width: 1024px){

.hero h1{
font-size:36px;
}

.hero p{
font-size:16px;
}

}

@media (max-width: 768px){

header{
height:auto;
padding:20px 0;
}

.navbar{
flex-direction:column;
gap:15px;
}

.linklists{
gap:20px;
}

.hero{
height:auto;
padding:80px 20px;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:15px;
}

.avaliacoes{
padding:80px 5%;
}

.migrar{
padding:80px 5%;
}

}

@media (max-width: 480px){

.hero h1{
font-size:24px;
}

.hero p{
font-size:14px;
}

.linkbase a{
font-size:16px;
padding:6px 14px;
}

.cta{
padding:10px 22px;
font-size:14px;
}

.avaliacoes-grid{
grid-template-columns:1fr;
}

}