/* ===========================
   SERVIÇOS
=========================== */

.services{
    position:relative;
}

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

.service-card{
    position:relative;
    width:100%;
    min-width:0;
    padding:40px;
    border-radius:24px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
    transition:.35s;
    backdrop-filter:blur(20px);
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--gradient);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(32,196,255,.25);
    box-shadow:0 25px 60px rgba(32,196,255,.15);
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(32,196,255,.08);
    font-size:2rem;
    margin-bottom:25px;
}

.service-card h3{
    font-family:"Space Grotesk";
    margin-bottom:15px;
    font-size:1.35rem;
}

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

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

@media (max-width:960px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .service-card{
        padding:32px;
    }

    .service-icon{
        width:60px;
        height:60px;
        font-size:1.7rem;
    }

}

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

@media (max-width:650px){

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:40px;
    }

    .service-card{
        padding:28px 22px;
        border-radius:18px;
    }

    .service-icon{
        width:55px;
        height:55px;
        font-size:1.5rem;
        margin-bottom:18px;
    }

    .service-card h3{
        font-size:1.2rem;
    }

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

}

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

@media (max-width:420px){

    .service-card{
        padding:22px 18px;
    }

    .service-icon{
        width:48px;
        height:48px;
        font-size:1.3rem;
    }

    .service-card h3{
        font-size:1.1rem;
    }

    .service-card p{
        font-size:.9rem;
    }

}