:root{
--primary-color:#0b2447;
--secondary-color:#19376d;
--accent-color:#576cbc;
--light-accent:#a5d7e8;
--pink-accent:#EF6A7B;

--text-main:#f8f9fa;
--text-muted:#cbd5e1;

--glass-bg:rgba(25,55,109,0.25);
--glass-border:rgba(165,215,232,0.15);
--card-hover:rgba(25,55,109,0.45);
}

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

body{
font-family:'Outfit',sans-serif;
background-color:var(--primary-color);
color:var(--text-main);
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

/* background */

.background-shapes{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
overflow:hidden;
}

.shape{
position:absolute;
filter:blur(80px);
border-radius:50%;
opacity:0.6;
animation:float 20s infinite alternate ease-in-out;
}

.shape-1{
width:400px;
height:400px;
background:var(--accent-color);
top:-10%;
left:-5%;
}

.shape-2{
width:500px;
height:500px;
background:var(--secondary-color);
bottom:-20%;
right:-10%;
animation-delay:-5s;
}

.shape-3{
width:300px;
height:300px;
background:var(--light-accent);
top:40%;
left:60%;
opacity:0.3;
animation-delay:-10s;
}

.shape-4{
width:250px;
height:250px;
background:var(--pink-accent);
bottom:15%;
left:15%;
opacity:0.15;
animation-delay:-3s;
}

@keyframes float{
0%{transform:translate(0,0) scale(1);}
50%{transform:translate(30px,-40px) scale(1.1);}
100%{transform:translate(-40px,20px) scale(0.9);}
}

/* container */

.dashboard-container{
position:relative;
z-index:10;
width:100%;
max-width:1200px;
padding:40px 20px;
display:flex;
flex-direction:column;
gap:40px;
}

/* header */

.dashboard-header{
text-align:center;
}

.logo-container{
display:flex;
justify-content:center;
margin-bottom:10px;
}

.site-logo{
max-width:220px;
height:auto;
}

/* grid */

.links-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
width:100%;
}

/* cards */

.card-link{
background:var(--glass-bg);
border:1px solid var(--glass-border);
border-radius:20px;
padding:24px;
display:flex;
align-items:center;
gap:18px;
text-decoration:none;
color:var(--text-main);
backdrop-filter:blur(12px);
transition:all .3s ease;
}

.card-link:hover{
background:var(--card-hover);
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.card-icon{
width:55px;
height:55px;
border-radius:14px;
background:rgba(255,255,255,0.05);
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:var(--light-accent);
}

.card-content{
flex:1;
}

.card-content h2{
font-size:18px;
margin-bottom:4px;
}

.card-content p{
font-size:14px;
color:var(--text-muted);
}

.card-action{
font-size:22px;
opacity:.6;
}

/* footer */

.dashboard-footer{
text-align:center;
font-size:13px;
color:var(--text-muted);
margin-top:10px;
}

.dashboard-footer p{
opacity:.3;
}

/* RESPONSIVO */

/* tablet */

@media(max-width:900px){

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

.site-logo{
max-width:190px;
}

}

/* celular */

@media(max-width:600px){

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

.dashboard-container{
padding:30px 15px;
gap:30px;
}

.site-logo{
max-width:160px;
}

.card-link{
padding:18px;
gap:15px;
}

.card-icon{
width:48px;
height:48px;
font-size:22px;
}

.card-content h2{
font-size:16px;
}

.card-content p{
font-size:13px;
}

}

/* celulares pequenos */

@media(max-width:400px){

.site-logo{
max-width:140px;
}

.card-link{
flex-direction:row;
}

}