/* ===========================
   DIFERENCIAIS
=========================== */

.differentials{
    position:relative;
}

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

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

.diff-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(32,196,255,.08),
        transparent
    );
    opacity:0;
    transition:.4s;
}

.diff-card:hover{
    transform:translateY(-10px);
    border-color:#20C4FF55;
    box-shadow:0 20px 60px rgba(32,196,255,.18);
}

.diff-card:hover::before{
    opacity:1;
}

.diff-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    background:rgba(32,196,255,.08);
    color:var(--primary);
    margin-bottom:25px;
    flex-shrink:0;
}

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

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

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

@media (max-width:960px){

    .differentials-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
        margin-top:50px;
    }

    .diff-card{
        padding:32px 24px;
    }

    .diff-icon{
        width:60px;
        height:60px;
        font-size:28px;
    }

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

}

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

@media (max-width:650px){

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

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

    .diff-icon{
        width:55px;
        height:55px;
        font-size:24px;
        margin-bottom:18px;
    }

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

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

}

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

@media (max-width:420px){

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

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

    .diff-card h3{
        font-size:1rem;
    }

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

}