/* ===========================
   PROCESSO
=========================== */

.process{
    position:relative;
}

.timeline{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:35px;
    width:100%;
}

.step{
    position:relative;
    width:100%;
    min-width:0;
    padding:35px 30px;
    border-radius:25px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
    backdrop-filter:blur(15px);
}

.step:hover{
    transform:translateY(-12px);
    border-color:rgba(32,196,255,.35);
    box-shadow:0 20px 50px rgba(32,196,255,.15);
}

.number{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:1.2rem;
    color:#fff;
    background:var(--gradient);
    margin-bottom:25px;
    flex-shrink:0;
}

.step h3{
    margin-bottom:15px;
    font-family:"Space Grotesk",sans-serif;
    font-size:1.35rem;
}

.step p{
    color:var(--gray);
    line-height:1.8;
}

/* ===========================
   TABLETS
=========================== */

@media (max-width:960px){

    .timeline{
        grid-template-columns:1fr;
        gap:25px;
        margin-top:50px;
    }

    .step{
        padding:30px;
    }

    .number{
        width:60px;
        height:60px;
        font-size:1.1rem;
    }

    .step h3{
        font-size:1.25rem;
    }

}

/* ===========================
   CELULARES
=========================== */

@media (max-width:650px){

    .timeline{
        grid-template-columns:1fr;
        gap:20px;
    }

    .step{
        padding:25px 20px;
        border-radius:18px;
    }

    .number{
        width:52px;
        height:52px;
        font-size:1rem;
        margin-bottom:18px;
    }

    .step h3{
        font-size:1.1rem;
    }

    .step p{
        font-size:.95rem;
        line-height:1.7;
    }

}

/* ===========================
   CELULARES PEQUENOS
=========================== */

@media (max-width:420px){

    .step{
        padding:20px 16px;
    }

    .number{
        width:48px;
        height:48px;
        font-size:.9rem;
    }

    .step h3{
        font-size:1rem;
    }

    .step p{
        font-size:.9rem;
    }

}