/* HERO */

.skills-hero{
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;

    padding:0 30px;

    background:
    radial-gradient(
        circle at center,
        rgba(255,107,0,.25),
        #050505 60%
    );

    overflow:hidden;
}

.hero-glow{
    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(255,107,0,.12);

    filter:blur(120px);

    animation:floatGlow 8s ease-in-out infinite;
}

.hero-tag{
    color:#ff6b00;
    letter-spacing:4px;
    z-index:2;
}

.skills-hero h1{
    max-width:1000px;

    font-size:clamp(3rem,8vw,7rem);

    line-height:1;

    margin:20px 0;

    z-index:2;
}

.skills-hero p{
    max-width:700px;

    color:#bcbcbc;

    z-index:2;
}

/* SKILLS */

.skills-grid{

    max-width:1300px;

    margin:auto;

    padding:120px 40px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.skill-card{

    backdrop-filter:blur(20px);

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:30px;

    transition:.4s;
}

.skill-card:hover{

    transform:translateY(-10px);

    border-color:
    rgba(255,107,0,.4);
}

.skill-card h3{
    margin-bottom:20px;
}
.progress-bar{
    width:100%;
    height:8px;

    background:
    rgba(255,255,255,.08);

    border-radius:999px;

    overflow:hidden;
}

.progress-fill{
    width:0;
    height:100%;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #ff6b00,
        #ff8f3d
    );

    transition:2s ease;
}

/* ANIMAÇÃO */

@keyframes floatGlow{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-40px);
    }
}

/* RESPONSIVO */

@media(max-width:768px){

    .skills-grid{
        padding:80px 20px;
    }

    .skills-hero h1{
        font-size:3rem;
    }
}