/* ===========================
   TECNOLOGIAS
=========================== */

.technologies{
    position:relative;
}

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

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

.tech-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        transparent,
        rgba(32,196,255,.06)
    );
    opacity:0;
    transition:.35s;
}

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

.tech-card:hover::after{
    opacity:1;
}

.tech-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin:0 auto 25px;
    display:block;
    transition:.4s;
}

.tech-card:hover img{
    transform:scale(1.15) rotate(6deg);
}

.tech-card h3{
    font-family:"Space Grotesk",sans-serif;
    font-size:1.2rem;
    margin-top:10px;
}

.tech-card p{
    color:var(--gray);
    line-height:1.7;
    margin-top:12px;
}

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

@media (max-width:960px){

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

    .tech-card{
        padding:32px 20px;
    }

    .tech-card img{
        width:60px;
        height:60px;
    }

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

}

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

@media (max-width:650px){

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

    .tech-card{
        padding:28px 20px;
        border-radius:18px;
    }

    .tech-card img{
        width:55px;
        height:55px;
        margin-bottom:18px;
    }

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

    .tech-card p{
        font-size:.95rem;
    }

}

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

@media (max-width:420px){

    .tech-card{
        padding:22px 16px;
    }

    .tech-card img{
        width:48px;
        height:48px;
    }

    .tech-card h3{
        font-size:.95rem;
    }

}