/* Estilos para Imagens */
.img-tech {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
    transition: transform 0.3s ease;
}

.img-tech:hover {
    transform: scale(1.02);
}

.img-logo {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--tech-blue));
    transition: all 0.3s ease;
}

.img-logo:hover {
    filter: drop-shadow(0 0 10px var(--tech-red));
    transform: scale(1.05);
} 