/*==================================================
    PLUS SOLUÇÕES
    TEMPLATE PREMIUM
    DL SOLUTION TI
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#00A8FF;
    --secondary:#55D6FF;

    --dark:#040B18;
    --dark2:#08172F;
    --dark3:#0D223F;

    --glass:rgba(255,255,255,.07);

    --border:rgba(255,255,255,.10);

    --white:#ffffff;

    --text:#BFD8F3;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:linear-gradient(
        135deg,
        var(--dark),
        var(--dark2),
        var(--dark3));

    color:var(--white);

    min-height:100vh;

    overflow-x:hidden;
    overflow-y:auto;

    position:relative;

}

/*==================================
            GRID
===================================*/

.grid{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(
    rgba(255,255,255,.035) 1px,
    transparent 1px),

    linear-gradient(
    90deg,
    rgba(255,255,255,.035) 1px,
    transparent 1px);

    background-size:45px 45px;

    animation:gridMove 15s linear infinite;

    opacity:.55;

}

@keyframes gridMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(45px);

    }

}

/*==================================
            GLOW
===================================*/

.glow{

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    opacity:.45;

}

.glow1{

    width:420px;

    height:420px;

    top:-150px;

    left:-150px;

    background:#0099ff;

}

.glow2{

    width:380px;

    height:380px;

    bottom:-120px;

    right:-120px;

    background:#00d4ff;

}

/*==================================
            CONTAINER
===================================*/

.container{

    width:100%;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    position:relative;

    z-index:10;

    padding:60px 20px;

}

/*==================================
            CARD
===================================*/

.card{

    width:min(760px,95%);

    padding:50px;

    text-align:center;

    background:var(--glass);

    backdrop-filter:blur(18px);

    border:1px solid var(--border);

    border-radius:28px;

    position:relative;

    overflow:hidden;

    box-shadow:

    0 0 40px rgba(0,168,255,.15);

    transition:.4s;

}

.card:hover{

    transform:translateY(-5px);

    box-shadow:

    0 20px 60px rgba(0,168,255,.25);

}

/*==================================
      EFEITO DE LUZ
===================================*/

.card::before{

    content:"";

    position:absolute;

    left:-45%;

    top:-30%;

    width:180px;

    height:220%;

    background:

    linear-gradient(

        transparent,

        rgba(255,255,255,.25),

        transparent

    );

    transform:rotate(25deg);

    animation:shine 8s linear infinite;

}

@keyframes shine{

    from{

        left:-50%;

    }

    to{

        left:180%;

    }

}

/*==================================
            ÍCONE
===================================*/

.logo-circle{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:

    linear-gradient(

    135deg,

    #00A8FF,

    #58D5FF

    );

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:

    0 0 40px rgba(0,168,255,.45);

    animation:pulse 2.8s infinite;

}

.logo-circle i{

    font-size:45px;

    color:white;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

/*==================================
            TAG
===================================*/

.tag{

display:inline-block;

margin-top:28px;

padding:10px 18px;

border-radius:30px;

font-size:13px;

font-weight:600;

letter-spacing:1px;

text-transform:uppercase;

background:rgba(0,168,255,.12);

border:1px solid rgba(0,168,255,.3);

color:#8ad7ff;

}

/*==================================================
                TÍTULOS
==================================================*/

h1{

    margin-top:25px;

    font-size:52px;

    font-weight:800;

    letter-spacing:2px;

    line-height:1.1;

    background:linear-gradient(
        90deg,
        #FFFFFF,
        #8FDBFF,
        #00A8FF,
        #FFFFFF
    );

    background-size:300%;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:titleGradient 8s linear infinite;

}

@keyframes titleGradient{

    0%{

        background-position:0%;

    }

    100%{

        background-position:300%;

    }

}

.line{

    width:90px;

    height:4px;

    margin:28px auto;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        #00A8FF,
        transparent
    );

    animation:lineGlow 3s ease-in-out infinite;

}

@keyframes lineGlow{

    0%{

        width:70px;

        opacity:.7;

    }

    50%{

        width:170px;

        opacity:1;

    }

    100%{

        width:70px;

        opacity:.7;

    }

}

h2{

    font-size:24px;

    font-weight:500;

    color:#82D8FF;

    margin-bottom:25px;

}

p{

    max-width:620px;

    margin:auto;

    color:var(--text);

    line-height:1.9;

    font-size:17px;

}

/*==================================================
            LOADING BAR
==================================================*/

.loading{

    width:240px;

    height:6px;

    margin:40px auto;

    background:rgba(255,255,255,.08);

    border-radius:50px;

    overflow:hidden;

}

.bar{

    width:35%;

    height:100%;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        #00A8FF,
        #67DDFF
    );

    animation:loadingMove 2.4s infinite;

}

@keyframes loadingMove{

    0%{

        margin-left:-35%;

    }

    100%{

        margin-left:100%;

    }

}

/*==================================================
                STATUS
==================================================*/

.status{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.status div{

    padding:14px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    font-size:14px;

    transition:.35s;

}

.status div:hover{

    background:rgba(0,168,255,.12);

    transform:translateY(-3px);

}

.status i{

    margin-right:8px;

    color:#54F0A8;

}

/*==================================================
            SOCIAL
==================================================*/

.social{

    display:flex;

    justify-content:center;

    gap:16px;

    margin-top:45px;

}

.social a{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#FFF;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.05);

    transition:.35s;

}

.social a:hover{

    transform:translateY(-5px);

    background:#00A8FF;

    box-shadow:0 0 25px rgba(0,168,255,.5);

}

/*==================================================
                FOOTER
==================================================*/

footer{

    margin-top:40px;

    text-align:center;

    color:#AECBE6;

    font-size:14px;

    line-height:2;

}

.credits{

    margin-top:5px;

}

.credits strong{

    color:#7AD8FF;

}

.credits i{

    color:#00A8FF;

    margin:0 4px;

    animation:heartBeat 2s infinite;

}

@keyframes heartBeat{

    50%{

        transform:scale(1.3);

    }

}

/*==================================================
            RESPONSIVO
==================================================*/

@media(max-width:768px){

.card{

    padding:40px 25px;

}

.logo-circle{

    width:90px;

    height:90px;

}

.logo-circle i{

    font-size:36px;

}

h1{

    font-size:36px;

}

h2{

    font-size:20px;

}

p{

    font-size:15px;

}

.status{

    flex-direction:column;

}

.social{

    gap:12px;

}

.social a{

    width:46px;

    height:46px;

}

.loading{

    width:180px;

}

}